/* ============================================
   ADAURA - PREMIUM DIGITAL MARKETING AGENCY
   style.css
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --navy-deep: #0a192f;
    --navy-mid: #112240;
    --navy-light: #1d3557;
    --navy-card: rgba(17, 34, 64, 0.7);
    --gold: #fbbf24;
    --gold-light: #fcd34d;
    --gold-glow: rgba(251, 191, 36, 0.3);
    --white: #ffffff;
    --gray-light: #ccd6f6;
    --gray-mid: #8892b0;
    --gray-dark: #495670;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-gold: 0 8px 32px rgba(251, 191, 36, 0.15);
    --shadow-card: 0 10px 40px rgba(2, 12, 27, 0.5);
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--navy-deep);
    color: var(--gray-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- PARTICLES CANVAS ---------- */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 14px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 55px;
    /* size adjust kar lo */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-light);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-deep);
    background: var(--gold);
    padding: 12px 28px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 16px 36px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.25);
}

.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: rgba(251, 191, 36, 0.1);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

/* ---------- GLASS CARD ---------- */
.glass-card {
    background: var(--navy-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 15px 50px rgba(251, 191, 36, 0.1);
    transform: translateY(-5px);
}

/* ---------- SECTION LABELS & TITLES ---------- */
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--gold);
}

.section-text {
    font-size: 1.1rem;
    color: var(--gray-mid);
    max-width: 600px;
    margin-bottom: 40px;
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 0 60px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 47px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
    word-spacing: 10px;
}

.hero-title .highlight {
    color: var(--gold);
    font-size: 29px;
    word-spacing: 12px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-mid);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-glass {
    width: 100%;
    max-width: 400px;
}

.glass-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.glass-dots {
    display: flex;
    gap: 6px;
}

.glass-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-dark);
}

.glass-dots span:nth-child(1) {
    background: #ef4444;
}

.glass-dots span:nth-child(2) {
    background: #f59e0b;
}

.glass-dots span:nth-child(3) {
    background: #22c55e;
}

.glass-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-light);
}

.glass-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.glass-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--gray-light);
}

.check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-graph {
    width: 100%;
    max-width: 350px;
}

.graph-svg {
    width: 100%;
    height: auto;
}

.graph-line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawLine 2.5s ease-out forwards;
}

.graph-fill {
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.graph-dot {
    opacity: 0;
    animation: fadeIn 0.5s ease-out 2s forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ---------- HERO STATS ---------- */
.hero-stats {
    position: relative;
    z-index: 2;
    margin-top: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--navy-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(251, 191, 36, 0.25);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-mid);
    font-weight: 500;
}

/* ---------- QUALIFICATION SECTION ---------- */
.qualification {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.qual-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.qual-glass {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 220px;
    padding: 40px;
}

.qual-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.qual-glass h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.qual-mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mini-card {
    background: var(--navy-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.mini-card:hover {
    border-color: rgba(251, 191, 36, 0.25);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.mini-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.mini-card p {
    font-size: 0.95rem;
    color: var(--gray-light);
    font-weight: 500;
}

/* ---------- RESULTS SECTION ---------- */
.results {
    padding: 120px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(17, 34, 64, 0.3) 50%, transparent 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--navy-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(251, 191, 36, 0.25);
    transform: translateY(-5px);
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 30px;
}

.quote-text {
    font-size: 1.15rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin: 30px 0 30px 10px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.quote-author2 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy-deep);
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--gray-mid);
}

.dashboard-card {
    background: var(--navy-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
}

.dashboard-card:hover {
    border-color: rgba(251, 191, 36, 0.25);
    transform: translateY(-5px);
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.dash-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
}

.dash-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray-mid);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.dash-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.metric {
    text-align: center;
    padding: 16px;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 12px;
}

.metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--gray-mid);
    font-weight: 500;
}

.dash-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 80px;
    padding: 0 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--gold), rgba(251, 191, 36, 0.3));
    border-radius: 4px 4px 0 0;
    height: var(--h);
    animation: growBar 1.5s ease-out forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

.chart-bar:nth-child(1) {
    animation-delay: 0.1s;
}

.chart-bar:nth-child(2) {
    animation-delay: 0.2s;
}

.chart-bar:nth-child(3) {
    animation-delay: 0.3s;
}

.chart-bar:nth-child(4) {
    animation-delay: 0.4s;
}

.chart-bar:nth-child(5) {
    animation-delay: 0.5s;
}

.chart-bar:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes growBar {
    to {
        transform: scaleY(1);
    }
}

.result-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.result-card {
    background: var(--navy-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.result-card:hover {
    border-color: rgba(251, 191, 36, 0.25);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.result-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.result-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.result-card p {
    font-size: 0.9rem;
    color: var(--gray-mid);
}

/* ---------- PROCESS / TIMELINE SECTION ---------- */
.process {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
    transform: translateX(-50%);
}

.timeline-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.timeline-step:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-step:nth-child(odd) .timeline-content {
    margin-right: 60px;
    margin-left: 0;
}

.timeline-step:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--gold-glow), 0 0 40px var(--gold-glow);
    z-index: 2;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 15px var(--gold-glow), 0 0 30px var(--gold-glow);
    }

    to {
        box-shadow: 0 0 25px var(--gold-glow), 0 0 50px var(--gold-glow);
    }
}

.timeline-content {
    flex: 1;
    max-width: 320px;
    background: var(--navy-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: rgba(251, 191, 36, 0.25);
    transform: translateY(-3px);
}

.step-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--gray-mid);
    line-height: 1.6;
}

.timeline-cta {
    text-align: center;
    margin-top: 40px;
}

/* ---------- SERVICES SECTION ---------- */
.services {
    padding: 120px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(17, 34, 64, 0.3) 50%, transparent 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--navy-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 20px;
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(251, 191, 36, 0.25);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-mid);
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

/* ---------- IDEAL CLIENT SECTION ---------- */
.ideal-client {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.ideal-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.ideal-glass {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 220px;
    padding: 40px;
}

.ideal-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.ideal-glass h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.ideal-mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---------- FINAL CTA SECTION ---------- */
.final-cta {
    padding: 140px 0;
    position: relative;
    z-index: 2;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(17, 34, 64, 0.5) 30%, rgba(17, 34, 64, 0.5) 70%, transparent 100%);
}

.final-cta .section-text {
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* ---------- FOOTER ---------- */
.footer {
    padding: 80px 0 30px;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(251, 191, 36, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    text-decoration: none;
}

.footer-logo img {
    height: 55px;
    /* size adjust kar sakte ho */
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--gray-mid);
    max-width: 280px;
    line-height: 1.7;
    margin-top: 10px;
}

.footer-links h4,
.footer-action h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--gray-mid);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-action .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
}

.footer-contact {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 30px 0;
    border-top: 1px solid rgba(251, 191, 36, 0.08);
    border-bottom: 1px solid rgba(251, 191, 36, 0.08);
    margin-bottom: 30px;
}

.footer-contact a {
    font-size: 0.95rem;
    color: var(--gray-mid);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-dark);
}

.footer-legal {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-legal a,
.footer-legal span {
    font-size: 0.85rem;
    color: var(--gray-dark);
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-right {
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .qual-grid,
    .ideal-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .qual-right,
    .ideal-right {
        display: flex;
        justify-content: center;
    }

    .qual-glass,
    .ideal-glass {
        max-width: 400px;
        width: 100%;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 25, 47, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .stats-grid,
    .qual-mini-cards,
    .ideal-mini-cards,
    .result-cards {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-step,
    .timeline-step:nth-child(odd) {
        flex-direction: column;
        text-align: left;
        padding-left: 50px;
    }

    .timeline-step:nth-child(odd) .timeline-content,
    .timeline-step:nth-child(even) .timeline-content {
        margin: 0;
        max-width: 100%;
    }

    .timeline-dot {
        left: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-contact {
        flex-direction: column;
        gap: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
/* WhatsApp Floating Button */

.whatsapp-float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.whatsapp-float:hover{
    transform: scale(1.1);
    background: #1ebe5d;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .dash-metrics {
        grid-template-columns: 1fr;
    }
}