/* Garcia's Tax Service - WordPress Plugin Styles */
/* Variables CSS */
:root {
    --gts-primary: #1B4D7A;
    --gts-primary-dark: #0D2E4A;
    --gts-secondary: #C9A227;
    --gts-accent: #E8B923;
    --gts-dark: #1A1A1A;
    --gts-light: #F8F9FA;
    --gts-gray: #6C757D;
    --gts-success: #28A745;
    --gts-white: #FFFFFF;
}

/* Reset para el contenedor del plugin */
.gts-wrapper {
    font-family: 'Open Sans', sans-serif;
    color: var(--gts-dark);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
}

.gts-wrapper * {
    box-sizing: border-box;
}

.gts-wrapper h1,
.gts-wrapper h2,
.gts-wrapper h3,
.gts-wrapper h4,
.gts-wrapper h5,
.gts-wrapper h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.gts-wrapper p {
    margin: 0;
    padding: 0;
}

.gts-wrapper a {
    text-decoration: none;
}

.gts-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.gts-top-bar {
    background: var(--gts-primary-dark);
    color: var(--gts-white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.gts-top-bar .gts-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.gts-top-bar a {
    color: var(--gts-white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.gts-top-bar a:hover {
    color: var(--gts-accent);
}

.gts-top-bar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.gts-top-bar-right {
    display: flex;
    gap: 15px;
}

.gts-social-icon {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.gts-social-icon:hover {
    background: var(--gts-secondary);
    transform: translateY(-2px);
}

/* Header */
.gts-header {
    background: var(--gts-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.gts-header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.gts-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.gts-logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gts-primary) 0%, var(--gts-primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(27, 77, 122, 0.3);
}

.gts-logo-text {
    display: flex;
    flex-direction: column;
}

.gts-logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--gts-primary-dark);
    letter-spacing: -0.5px;
}

.gts-logo-tagline {
    font-size: 0.7rem;
    color: var(--gts-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation */
.gts-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.gts-nav-item {
    position: relative;
}

.gts-nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 18px;
    color: var(--gts-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.gts-nav-link:hover {
    color: var(--gts-primary);
}

.gts-nav-link.has-dropdown::after {
    content: '';
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.3s;
    margin-top: -3px;
}

.gts-nav-item:hover .gts-nav-link.has-dropdown::after {
    transform: rotate(-135deg);
}

.gts-nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--gts-white);
    min-width: 280px;
    list-style: none;
    padding: 12px 0;
    margin: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.gts-nav-item:hover .gts-nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gts-nav-submenu li {
    margin: 0;
}

.gts-nav-submenu a {
    display: block;
    padding: 10px 20px;
    color: var(--gts-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.gts-nav-submenu a:hover {
    background: var(--gts-light);
    color: var(--gts-primary);
    padding-left: 25px;
}

.gts-btn-cta {
    background: linear-gradient(135deg, var(--gts-secondary) 0%, var(--gts-accent) 100%);
    color: var(--gts-dark);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.gts-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 162, 39, 0.4);
    color: var(--gts-dark);
}

/* Mobile Menu Toggle */
.gts-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10000;
}

.gts-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gts-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.gts-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.gts-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.gts-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.gts-hero {
    background-image: url('../images/background.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #1a1a2e;
    color: var(--gts-white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.gts-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
}

.gts-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.gts-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--gts-white);
}

.gts-hero h1 span {
    color: var(--gts-accent);
}

.gts-hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    color: rgba(255,255,255,0.9);
}

.gts-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.gts-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    color: var(--gts-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.gts-btn-primary {
    background: var(--gts-accent);
    color: var(--gts-dark);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gts-btn-primary:hover {
    background: var(--gts-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--gts-dark);
}

.gts-btn-secondary {
    background: transparent;
    color: var(--gts-white);
    padding: 15px 35px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gts-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gts-white);
    color: var(--gts-white);
}

.gts-hero-image {
    display: flex;
    justify-content: center;
}

.gts-hero-card {
    background: var(--gts-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    color: var(--gts-dark);
    max-width: 380px;
    transform: rotate(2deg);
}

.gts-hero-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gts-primary-dark);
}

.gts-hero-card-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gts-light);
}

.gts-hero-card-item:last-child {
    border-bottom: none;
}

.gts-hero-card-icon {
    width: 40px;
    height: 40px;
    background: var(--gts-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gts-primary);
}

.gts-hero-card-item span {
    font-weight: 600;
}

/* Stats Section */
.gts-stats {
    background: var(--gts-white);
    padding: 40px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.gts-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: var(--gts-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

.gts-stat-item {
    text-align: center;
}

.gts-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gts-primary);
    display: block;
}

.gts-stat-label {
    color: var(--gts-gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Services Section */
.gts-services {
    padding: 100px 0;
    background: var(--gts-light);
}

.gts-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.gts-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 77, 122, 0.1);
    color: var(--gts-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.gts-section-header h2 {
    font-size: 2.5rem;
    color: var(--gts-primary-dark);
    margin-bottom: 15px;
}

.gts-section-header p {
    color: var(--gts-gray);
    font-size: 1.1rem;
}

.gts-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gts-service-card {
    background: var(--gts-white);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.gts-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gts-primary), var(--gts-secondary));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.gts-service-card:hover::before {
    transform: scaleX(1);
}

.gts-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.gts-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gts-primary) 0%, var(--gts-primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s;
}

.gts-service-card:hover .gts-service-icon {
    transform: scale(1.1) rotate(5deg);
}

.gts-service-card h3 {
    font-size: 1.3rem;
    color: var(--gts-primary-dark);
    margin-bottom: 15px;
}

.gts-service-card > p {
    color: var(--gts-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.gts-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gts-service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gts-dark);
    font-size: 0.9rem;
}

.gts-service-list li svg {
    color: var(--gts-success);
    flex-shrink: 0;
}

.gts-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gts-primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: gap 0.3s;
}

.gts-service-link:hover {
    gap: 12px;
    color: var(--gts-primary);
}

/* Why Choose Us */
.gts-why-us {
    padding: 100px 0;
    background: var(--gts-white);
}

.gts-why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gts-why-us-image {
    position: relative;
}

.gts-why-us-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.gts-why-us-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gts-secondary);
    color: var(--gts-dark);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.gts-why-us-badge strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

.gts-why-us-text h2 {
    font-size: 2.5rem;
    color: var(--gts-primary-dark);
    margin-bottom: 20px;
}

.gts-why-us-text > p {
    color: var(--gts-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.gts-features-list {
    display: grid;
    gap: 20px;
}

.gts-feature-item {
    display: flex;
    gap: 15px;
}

.gts-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gts-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gts-primary);
    flex-shrink: 0;
}

.gts-feature-item h4 {
    font-size: 1.1rem;
    color: var(--gts-dark);
    margin-bottom: 5px;
}

.gts-feature-item p {
    color: var(--gts-gray);
    font-size: 0.9rem;
}

/* CTA Section */
.gts-cta {
    background: linear-gradient(135deg, var(--gts-primary-dark) 0%, var(--gts-primary) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--gts-white);
    position: relative;
    overflow: hidden;
}

.gts-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation: gtsPulse 4s ease-in-out infinite;
}

@keyframes gtsPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.gts-cta-content {
    position: relative;
    z-index: 1;
}

.gts-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.gts-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gts-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gts-cta .gts-btn-primary {
    background: var(--gts-accent);
    padding: 18px 40px;
    font-size: 1.1rem;
}

.gts-cta .gts-btn-secondary {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Contact Section */
.gts-contact {
    padding: 100px 0;
    background: var(--gts-light);
}

.gts-contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.gts-contact-info h2 {
    font-size: 2.5rem;
    color: var(--gts-primary-dark);
    margin-bottom: 20px;
}

.gts-contact-info > p {
    color: var(--gts-gray);
    margin-bottom: 40px;
}

.gts-contact-details {
    display: grid;
    gap: 25px;
}

.gts-contact-item {
    display: flex;
    gap: 15px;
}

.gts-contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gts-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gts-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.gts-contact-item h4 {
    font-size: 0.85rem;
    color: var(--gts-gray);
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gts-contact-item p {
    font-size: 1rem;
    color: var(--gts-dark);
    font-weight: 600;
}

.gts-contact-form-wrapper {
    background: var(--gts-white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.gts-contact-form h3 {
    font-size: 1.5rem;
    color: var(--gts-primary-dark);
    margin-bottom: 30px;
}

.gts-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gts-form-group {
    margin-bottom: 20px;
}

.gts-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gts-dark);
    font-size: 0.9rem;
}

.gts-form-group input,
.gts-form-group select,
.gts-form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--gts-light);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px; /* 16px previene zoom en iOS */
    transition: all 0.3s;
    background: var(--gts-white);
    color: var(--gts-dark);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

.gts-form-group input:focus,
.gts-form-group select:focus,
.gts-form-group textarea:focus {
    outline: none;
    border-color: var(--gts-primary);
    box-shadow: 0 0 0 4px rgba(27, 77, 122, 0.1);
}

.gts-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.gts-btn-submit {
    background: linear-gradient(135deg, var(--gts-primary) 0%, var(--gts-primary-dark) 100%);
    color: var(--gts-white);
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.gts-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(27, 77, 122, 0.3);
}

.gts-btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(27, 77, 122, 0.2);
}

.gts-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.gts-footer {
    background: var(--gts-primary-dark);
    color: var(--gts-white);
    padding: 80px 0 30px;
}

.gts-footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.gts-footer-brand p {
    opacity: 0.8;
    margin: 20px 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.gts-footer-social {
    display: flex;
    gap: 12px;
}

.gts-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gts-white);
    transition: all 0.3s;
}

.gts-footer-social a:hover {
    background: var(--gts-secondary);
    transform: translateY(-3px);
}

.gts-footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
}

.gts-footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gts-secondary);
    border-radius: 2px;
}

.gts-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gts-footer-links li {
    margin-bottom: 12px;
}

.gts-footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gts-footer-links a:hover {
    color: var(--gts-white);
    padding-left: 5px;
}

.gts-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.gts-footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.gts-footer-bottom-links {
    display: flex;
    gap: 25px;
}

.gts-footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.gts-footer-bottom-links a:hover {
    color: var(--gts-white);
}

/* Mobile Nav Header */
.gts-mobile-nav-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--gts-light);
    background: var(--gts-white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.gts-mobile-nav-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gts-primary-dark);
}

.gts-mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gts-gray);
    cursor: pointer;
    padding: 5px 10px;
    line-height: 1;
}

.gts-mobile-nav-close:hover {
    color: var(--gts-primary);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .gts-hero {
        min-height: 90vh;
    }
    
    .gts-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gts-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .gts-hero-buttons {
        justify-content: center;
    }

    .gts-hero-image {
        display: none;
    }

    .gts-hero h1 {
        font-size: 2.5rem;
    }

    .gts-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gts-why-us-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .gts-contact-content {
        grid-template-columns: 1fr;
    }

    .gts-footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mobile Navigation Styles for Tablet */
    .gts-nav {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gts-white);
        flex-direction: column;
        z-index: 9999;
        overflow-y: auto;
        padding: 0;
    }

    .gts-nav.active {
        display: flex !important;
    }

    .gts-mobile-nav-header {
        display: flex;
    }

    .gts-nav-item {
        width: 100%;
        border-bottom: 1px solid var(--gts-light);
    }

    .gts-nav-link {
        display: flex;
        justify-content: space-between;
        padding: 18px 20px;
        font-size: 1rem;
        width: 100%;
    }

    .gts-nav-link.has-dropdown::after {
        padding: 4px;
        transition: transform 0.3s;
    }

    .gts-nav-item.active .gts-nav-link.has-dropdown::after {
        transform: rotate(-135deg);
    }

    .gts-nav-submenu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 0;
        background: var(--gts-light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .gts-nav-item.active .gts-nav-submenu {
        max-height: 800px;
        padding: 10px 0;
    }

    .gts-nav-submenu li {
        margin: 0;
    }

    .gts-nav-submenu a {
        padding: 14px 30px;
        font-size: 0.95rem;
        display: block;
    }

    .gts-nav-submenu a:hover {
        padding-left: 35px;
        background: rgba(27, 77, 122, 0.1);
    }

    .gts-menu-toggle {
        display: flex !important;
        z-index: 10000;
    }

    .gts-btn-cta {
        display: none;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .gts-top-bar {
        padding: 8px 0;
    }

    .gts-top-bar .gts-container {
        flex-direction: column;
        gap: 8px;
    }

    .gts-top-bar-left {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .gts-top-bar-right {
        display: none;
    }

    .gts-header-main {
        padding: 12px 0;
    }

    .gts-logo-icon {
        width: 45px;
        height: 45px;
    }

    .gts-logo-icon svg {
        width: 24px;
        height: 24px;
    }

    .gts-logo-name {
        font-size: 1.1rem;
    }

    .gts-logo-tagline {
        font-size: 0.6rem;
    }

    .gts-hero {
        padding: 60px 0;
        min-height: 70vh;
    }

    .gts-hero h1 {
        font-size: 1.8rem;
    }

    .gts-hero-buttons {
        flex-direction: column;
    }

    .gts-btn-primary,
    .gts-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .gts-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gts-stat-number {
        font-size: 2rem;
    }

    .gts-services {
        padding: 60px 0;
    }

    .gts-services-grid {
        grid-template-columns: 1fr;
    }

    .gts-service-card {
        padding: 30px 25px;
    }

    .gts-section-header h2 {
        font-size: 1.8rem;
    }

    .gts-why-us {
        padding: 60px 0;
    }

    .gts-why-us-text h2 {
        font-size: 1.8rem;
    }

    .gts-cta {
        padding: 60px 0;
    }

    .gts-cta h2 {
        font-size: 1.8rem;
    }

    .gts-contact {
        padding: 60px 0;
    }

    .gts-contact-content {
        gap: 40px;
    }

    .gts-contact-info {
        text-align: center;
    }

    .gts-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .gts-contact-info h2 {
        font-size: 1.8rem;
    }

    .gts-form-row {
        grid-template-columns: 1fr;
    }

    .gts-contact-form-wrapper {
        padding: 30px;
    }

    .gts-footer {
        padding: 60px 0 30px;
    }

    .gts-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .gts-footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .gts-footer-social {
        justify-content: center;
    }

    .gts-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Extra Small Devices */
@media (max-width: 380px) {
    .gts-hero {
        min-height: 50vh;
        padding: 40px 0;
    }
    
    .gts-hero h1 {
        font-size: 1.5rem;
    }

    .gts-service-card h3 {
        font-size: 1rem;
    }

    .gts-stat-number {
        font-size: 1.6rem;
    }
}


/* Form Message Animation */
@keyframes gts-fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gts-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========== SECCIONES DETALLADAS DE SERVICIOS ========== */
.gts-service-detail {
    padding: 80px 0;
    background: var(--gts-white);
}

.gts-service-detail-alt {
    background: var(--gts-light);
}

.gts-service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gts-service-detail-alt .gts-service-detail-content {
    direction: rtl;
}

.gts-service-detail-alt .gts-service-detail-content > * {
    direction: ltr;
}

.gts-service-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.gts-service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gts-service-detail-image:hover img {
    transform: scale(1.05);
}

.gts-service-detail-text {
    padding: 20px 0;
}

.gts-service-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--gts-primary) 0%, var(--gts-primary-dark) 100%);
    color: var(--gts-white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gts-service-detail-text h2 {
    font-size: 2.2rem;
    color: var(--gts-primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.gts-service-detail-text > p {
    font-size: 1.1rem;
    color: var(--gts-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.gts-service-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.gts-service-benefits li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--gts-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.gts-service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gts-success);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive para secciones de servicios */
@media (max-width: 992px) {
    .gts-service-detail {
        padding: 60px 0;
    }
    
    .gts-service-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gts-service-detail-alt .gts-service-detail-content {
        direction: ltr;
    }
    
    .gts-service-detail-image img {
        height: 300px;
    }
    
    .gts-service-detail-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .gts-service-detail {
        padding: 50px 0;
    }
    
    .gts-service-detail-content {
        gap: 30px;
    }
    
    .gts-service-detail-image img {
        height: 250px;
    }
    
    .gts-service-detail-text h2 {
        font-size: 1.5rem;
    }
    
    .gts-service-detail-text > p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gts-service-detail {
        padding: 40px 0;
    }
    
    .gts-service-detail-image img {
        height: 200px;
    }
    
    .gts-service-detail-text h2 {
        font-size: 1.3rem;
    }
    
    .gts-service-benefits li {
        font-size: 0.95rem;
    }
}

/* Scroll suave para los enlaces del menú */
html {
    scroll-behavior: smooth;
}

/* Offset para los anchor links por el header fijo */
.gts-service-detail {
    scroll-margin-top: 100px;
}

/* Estilo para enlace de servicio activo */
.gts-nav-submenu a.active-service {
    color: var(--gts-accent) !important;
    font-weight: 600;
}

/* Overlay para pasaportes con banderas */
.gts-service-detail-image {
    position: relative;
}

.gts-passport-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 40px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.gts-passport-label {
    background: linear-gradient(135deg, var(--gts-primary) 0%, var(--gts-primary-dark) 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .gts-passport-label {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Diseño de tarjeta de pasaporte */
.gts-passport-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    border-radius: 20px;
    padding: 30px;
}

.gts-passport-image.gts-passport-mexico {
    background: linear-gradient(135deg, #006847 0%, #004d35 100%);
}

.gts-passport-image.gts-passport-honduras {
    background: linear-gradient(135deg, #0073CF 0%, #005299 100%);
}

.gts-passport-image.gts-passport-guatemala {
    background: linear-gradient(135deg, #4997D0 0%, #357ABD 100%);
}

.gts-passport-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.gts-passport-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.gts-passport-flag {
    font-size: 3rem;
}

.gts-passport-title {
    display: flex;
    flex-direction: column;
}

.gts-passport-country {
    color: #FFD700;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gts-passport-type {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.gts-passport-body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.gts-passport-icon {
    color: rgba(255,255,255,0.8);
}

.gts-passport-icon svg {
    width: 100px;
    height: 100px;
}

/* Responsive pasaportes */
@media (max-width: 768px) {
    .gts-passport-image {
        min-height: 280px;
        padding: 20px;
    }
    
    .gts-passport-card {
        padding: 20px;
    }
    
    .gts-passport-flag {
        font-size: 2.5rem;
    }
    
    .gts-passport-country {
        font-size: 0.7rem;
    }
    
    .gts-passport-type {
        font-size: 1.2rem;
    }
    
    .gts-passport-icon svg {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .gts-passport-image {
        min-height: 250px;
    }
    
    .gts-passport-flag {
        font-size: 2rem;
    }
    
    .gts-passport-type {
        font-size: 1rem;
        letter-spacing: 2px;
    }
}
