:root {
    --raivon-blue: #001E94;
    --raivon-light-blue: #2442B7;
    --raivon-orange: #ff6600;
}

.section-bg-white {
    background-color: #fff;
}

.section-bg-light {
    background-color: #f8f9ff;
}
:root {
    --raivon-blue: #001E94;
    --raivon-gray: #555;
    --raivon-orange: #ff6600;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}


a {
    text-decoration: none;
    color: inherit;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 51, 204, 0.1);
}

.logo {
    width: 150px;
}

.logo img {
    width: 100%;
    height: auto;
}
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    color: var(--raivon-blue);
    
    cursor: pointer;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    position: relative;
}

.nav-item:hover,
.nav-item:focus {
    color: var(--raivon-orange);
}

.nav-item::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--raivon-orange);
    transition: width 0.2s ease;
    position: absolute;
    left: 0;
    bottom: -2px;
}

.nav-item:hover::after,
.nav-item:focus::after {
    width: 100%;
}

.contact-btn {
    background-color: var(--raivon-blue);
    color: #fff;
    border: none;
    border-radius: 5px;
    
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px 24px;
}

.contact-btn:hover {
    background-color: var(--raivon-orange);
    transform: translateY(-2px);
}

/* Hamburger Menu Styles */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--raivon-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .header {
        padding: 12px 20px;
        position: sticky;
        justify-content: space-between;
    }
    
    .menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 70vh;
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 0px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        margin: 15px 0;
        font-size: 1.2rem;
    }

    .contact-btn {
        margin-top: 20px;
    }

    /* Animation for hamburger to X */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }
}

.hero-section {
    padding: 30px 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


.hero-text-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--raivon-blue);
}


.hero-text-subtitle {
    font-size: 2rem;
    font-weight: 500;
    color: var(--raivon-blue);
}

.hero-text-description {
    font-size: 1.25rem;
    color: var(--raivon-gray);
    font-weight: 400;
}

.heading-text-title {
    font-size: 2rem;
    color: var(--raivon-blue);
    font-weight: 700;
    line-height: 1.5;
}

.heading-text-subtitle {
    font-size: 1.25rem;
    color: var(--raivon-blue);
    font-weight: 400;
}

.heading-text-description {
    font-size: 1.15rem;
    color: var(--raivon-gray);
    line-height: 1.65;
}


.heading-text-footer-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
}

.heading-text-footer-subtitle {
    font-size: 1.25rem;
    color: white;
    font-weight: 400;
}

.heading-text-footer-description {
    font-size: 1.15rem;
    color: white;
    line-height: 1.65;
}


.normal-text {
    font-size: 1rem;
    color: var(--raivon-gray);
    line-height: 1.6;
}

.normal-text-large {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.button-text {
    font-size: 1rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-text-title {
        font-size: 2rem;
    }

    .hero-text-subtitle {
        font-size: 1.5rem;
    }

    .hero-text-description {
        font-size: 1.1rem;
    }

    .heading-text-title {
        font-size: 1.5rem;
    }

    .heading-text-subtitle {
        font-size: 1.5rem;
    }

    .heading-text-description {
        font-size: 1.15rem;
    }

    .heading-text-footer-title {
        font-size: 1.5rem;
    }

    .heading-text-footer-subtitle {
        font-size: 1.1rem;
    }

    .heading-text-footer-description {
        font-size: 1.1rem;
    }

    .normal-text {
        font-size: 1rem;
    }

    .normal-text-large {
        font-size: 1.2rem;
    }

    .button-text {
        font-size: 1rem;
    }


    .heading-text-footer-title {
        font-size: 1.5rem;
    }

    .heading-text-footer-subtitle {
        font-size: 1.1rem;
    }

    .heading-text-footer-description {
        font-size: 1.1rem;
    }
}

.contact-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.contact-popup.active {
    display: flex;
}

.contact-popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 700px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.close-popup {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--raivon-gray);
    transition: color 0.2s ease;
}

.close-popup:hover {
    color: var(--raivon-orange);
}

.contact-popup h2 {
    color: var(--raivon-blue);
    margin-bottom: 24px;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--raivon-blue);
    outline: none;
}

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

#contactForm .contact-btn {
    width: 100%;
    margin-top: 10px;
}

.popup-field {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 18px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1.15rem;
    margin-bottom: 20px;
    background: #fff;
    color: #222;
    transition: border 0.2s;
}
.popup-field:focus {
    border: 2px solid #002d9c;
    outline: none;
}

.secondary-btn {
    background-color: transparent;
    color: var(--raivon-orange);
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid var(--raivon-orange);
    margin-left: 10px;
    display: inline-block;
}

.secondary-btn:hover,
.secondary-btn:focus {
    background-color: rgba(255, 107, 0, 0.08);
    color: var(--raivon-orange);
    border-color: var(--raivon-orange);
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.12);
    transform: translateY(-2px);
}

.cta-container .cta-button {
    margin-top: 40px;
}

.cta-container .heading-text-footer-title {
    margin-bottom: 24px;
}

.cta-container .heading-text-footer-description {
    margin-bottom: 0;
}

/* Contact popup method selection - Modern 2025 Design */
.contact-options {
    padding: 32px 24px;
}

.contact-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 28px;
    font-weight: 500;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}

.contact-method-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    width: 100%;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.contact-method-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 30, 148, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-method-btn:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.15);
}

.contact-method-btn:hover::before {
    opacity: 1;
}

.method-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.method-email .method-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.method-whatsapp .method-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.method-call .method-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.method-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.method-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.method-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.method-desc {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 400;
}

.contact-method-btn:hover .method-title {
    color: #0f172a;
}

.contact-method-btn:hover .method-icon {
    transform: scale(1.05);
}

.back-to-options {
    background: none;
    border: none;
    color: var(--raivon-blue);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.back-to-options:hover {
    opacity: 0.7;
}

/* Contact info screens */
.contact-info-content {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}

#phoneInfoWrapper, #whatsappInfoWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-info-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.contact-info-title-light {
    font-size: 1.3rem;
    font-weight: 400;
    color: #64748b;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.contact-info-desc {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.5;
}

.phone-number-display {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.phone-number-with-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}

.contact-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 2px;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    background: #f1f5f9;
    padding: 16px 24px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    text-align: center;
}

.copy-btn {
    background: var(--raivon-blue);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
}

.copy-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.contact-info-note {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin: 0;
}

@media (max-width: 480px) {
    .phone-number {
        font-size: 1.4rem;
        letter-spacing: 1px;
        padding: 10px 16px;
    }
    
    .phone-number-display {
        flex-direction: column;
        gap: 12px;
    }
    
    .copy-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Contact popup responsive breakpoints */
@media (min-width: 481px) and (max-width: 768px) {
    .contact-popup-content {
        max-width: 650px;
    }
}

@media (min-width: 769px) {
    .contact-popup-content {
        max-width: 800px;
    }
}