/* ===== VARIABLES ===== */
:root {
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --cream: #FFFDF7;
    --royal-blue: #0A2463;
    --royal-blue-light: #1B3A8C;
    --royal-blue-dark: #061740;
    --gold: #C9A84C;
    --gold-light: #D4B95E;
    --gold-dark: #B8943A;
    --gold-shimmer: linear-gradient(135deg, #D4AF37 0%, #F0D060 40%, #C9A84C 60%, #B8943A 100%);
    --black: #1A1A1A;
    --black-light: #333333;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(10, 36, 99, 0.06);
    --shadow-md: 0 8px 30px rgba(10, 36, 99, 0.1);
    --shadow-lg: 0 20px 60px rgba(10, 36, 99, 0.15);
    --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.text-gold { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-gold {
    background: var(--gold-shimmer);
    color: var(--royal-blue-dark);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--royal-blue);
    border: 2px solid var(--royal-blue);
}

.btn-outline-dark:hover {
    background: var(--royal-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--royal-blue);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.logo-brandname {
    font-family: var(--font-display);
    font-size: 0.99rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.navbar.scrolled .logo-img {
    height: 60px;
}

.footer-logo-img {
    height: 72px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--white);
    font-size: 1.02rem;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.nav-links a:hover { color: var(--gold); }

.nav-get-started {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, var(--royal-blue-dark) 0%, var(--royal-blue) 40%, var(--royal-blue-light) 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 600px 600px at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 80% 30%, rgba(201, 168, 76, 0.05) 0%, transparent 70%),
        radial-gradient(circle 2px at 10% 20%, rgba(255,255,255,0.15) 0%, transparent 100%),
        radial-gradient(circle 2px at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 100%),
        radial-gradient(circle 2px at 70% 40%, rgba(255,255,255,0.12) 0%, transparent 100%),
        radial-gradient(circle 2px at 90% 80%, rgba(255,255,255,0.08) 0%, transparent 100%),
        radial-gradient(circle 1px at 50% 10%, rgba(201,168,76,0.3) 0%, transparent 100%),
        radial-gradient(circle 1px at 85% 15%, rgba(201,168,76,0.2) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .text-gold {
    background: var(--gold-shimmer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.325rem);
    font-weight: 400;
    color: var(--white);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-tagline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    letter-spacing: 0.03em;
    animation: fadeInUp 1.2s ease-out 1s both;
    margin-top: -10px;
    margin-bottom: 20px;
}

.trust-marker {
    font-size: 1.02rem;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.trust-names {
    color: var(--gold);
    font-weight: 600;
}

.trust-divider {
    color: rgba(255, 255, 255, 0.25);
    margin: 0 6px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
    background: var(--gold-shimmer);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 12px;
}

.marquee-dot {
    font-size: 0.7rem !important;
    opacity: 0.6;
    display: flex;
    align-items: center;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTIONS COMMON ===== */
.section {
    padding: 68px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    font-size: 0.94rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-dark);
    background: rgba(201, 168, 76, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== SERVICES ===== */
.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--gold);
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover,
.services-grid .service-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card.featured {
    background: var(--royal-blue);
    border-color: var(--royal-blue);
    color: var(--white);
}

.service-card.featured .service-icon { color: var(--gold); }
.service-card.featured p { color: rgba(255, 255, 255, 0.7); }
.service-card.featured .service-features li { color: rgba(255, 255, 255, 0.85); }
.service-card.featured .service-features li::before { color: var(--gold); }

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--royal-blue);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
    white-space: nowrap;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--gray);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.7;
    text-align: left;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--black-light);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.service-features li::before {
    content: '✓';
    color: var(--gold-dark);
    font-weight: 700;
    flex-shrink: 0;
    min-width: 14px;
}

/* ===== PROCESS ===== */
.process {
    background: var(--white);
}

.process-timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gold);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step:last-child {
    margin-bottom: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gold);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: var(--royal-blue);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--gold);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.425rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.step-subtext {
    font-size: 0.92rem;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    text-align: justify;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--cream);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 10px 4px;
}

.testimonials-track {
    display: flex;
    gap: 14px;
    transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1.5px solid var(--gold);
    transition: var(--transition);
    width: calc((100% - 28px) / 3);
    min-width: calc((100% - 28px) / 3);
    max-width: calc((100% - 28px) / 3);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.testimonial-card:hover .testimonial-tag {
    font-size: calc(0.72rem * 1.05);
}

.testimonial-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--royal-blue);
    background: rgba(26, 54, 126, 0.08);
    border-radius: 20px;
    padding: 4px 10px;
    margin-bottom: 14px;
    transition: font-size 0.3s ease;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.star-half {
    display: inline-block;
    position: relative;
    color: rgba(0, 0, 0, 0.15);
}
.star-half::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    clip-path: inset(0 50% 0 0);
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--black-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
    text-align: justify;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--royal-blue);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.92rem;
    color: var(--black);
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--gray);
}

/* ===== PRICING ===== */
.pricing {
    background: var(--cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    text-align: center;
    position: relative;
    border: 1px solid var(--gold);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: var(--royal-blue);
    color: var(--white);
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-shimmer);
    color: var(--royal-blue-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-tier {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.pricing-price {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
}

.amount {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
}

.pricing-card.featured .amount { color: var(--gold); }
.pricing-card.featured .currency { color: var(--gold); }

.pricing-desc {
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 28px;
    text-align: justify;
}

.pricing-card.featured .pricing-desc {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.9rem;
    padding-left: 24px;
    position: relative;
    color: var(--black-light);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-weight: 700;
}

.pricing-features li.not-included {
    text-decoration: line-through;
    opacity: 0.35;
}

.pricing-features li.not-included::before {
    content: '✕';
    color: inherit;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    clip-path: inset(0);
}

.faq-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        url('assets/faq-bg.jpg') center/cover no-repeat;
    filter: blur(5px) brightness(0.3);
    z-index: 0;
    pointer-events: none;
}

.faq-container {
    position: relative;
    z-index: 1;
}

.faq-title {
    color: var(--white) !important;
}

.faq-section .section-tag {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--gold);
    border-radius: 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.faq-bullet-list {
    list-style: none;
    margin: 10px 0;
    padding-left: 8px;
}

.faq-bullet-list li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 2;
    padding-left: 20px;
    position: relative;
}

.faq-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(165deg, var(--royal-blue-dark) 0%, var(--royal-blue) 100%);
    padding: 100px 0;
}

.cta-wrapper {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content > p {
    color: var(--white);
    font-size: 1.26rem;
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cta-form select:invalid {
    color: rgba(255, 255, 255, 0.4);
}

.cta-form select {
    color: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.cta-form select option {
    background: var(--royal-blue-dark);
    color: var(--white);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
}

.cta-form .btn-gold {
    margin-top: 8px;
    padding: 18px 36px;
    font-size: 1rem;
    border: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--royal-blue-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-address {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--royal-blue-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 999;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        font-size: 1.2rem;
        color: var(--white);
    }

    .nav-get-started {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

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

    .mobile-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.open span:nth-child(2) { opacity: 0; }
    .mobile-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero { padding: 100px 0 60px; }

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

    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .testimonial-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .section { padding: 72px 0; }
    .hero-actions .btn { width: 100%; }
}
