/* ============================================
   ADIL DIGITAL - Stylesheet
   ============================================ */

:root {
    --brand-blue: #4089b9;
    --brand-dark-blue: #2a658a;
    --brand-cream: #ffe3b3;
    --brand-navy: #1c4f73;
    --brand-deep: #153d5a;
    --white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.5);
    --nav-height: 70px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--brand-blue);
    color: var(--brand-cream);
    overflow-x: hidden;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    display: block;
}

/* --- Utilities --- */

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

.section-dark {
    background-color: var(--brand-navy);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-cream);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.section-tag::before {
    content: '[ ';
}

.section-tag::after {
    content: ' ]';
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--brand-cream);
    color: var(--brand-blue);
    border-color: var(--brand-cream);
}

.btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--brand-cream);
    border-color: var(--brand-cream);
}

.btn-outline:hover {
    background: var(--brand-cream);
    color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(21, 61, 90, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-cream);
    letter-spacing: -0.5px;
    text-transform: lowercase;
    z-index: 101;
    display: inline-block;
    transform-style: preserve-3d;
    cursor: pointer;
    transition: transform 0.1s ease-out;
}

.navbar.scrolled .nav-logo {
    font-size: 1.5rem;
}

.logo-bracket {
    color: var(--brand-cream);
    opacity: 0.5;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-light);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-cream);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-cream);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--brand-cream);
    color: var(--brand-blue) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brand-cream);
    transition: all var(--transition);
    transform-origin: center;
}

.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);
}

/* ============================================
   HERO
   ============================================ */

.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 120px 2rem 80px;
    background-color: var(--brand-blue);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 227, 179, 0.3) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 1;
    pointer-events: none;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 227, 179, 0.08);
    pointer-events: none;
}

.hero-ring-1 {
    width: 600px;
    height: 600px;
    top: -150px;
    right: -200px;
    border-width: 2px;
    border-color: rgba(255, 227, 179, 0.07);
}

.hero-ring-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    border-color: rgba(255, 227, 179, 0.06);
}

.hero-ring-3 {
    width: 200px;
    height: 200px;
    top: 25%;
    right: 10%;
    border-color: rgba(255, 227, 179, 0.1);
}

.hero-cross {
    position: absolute;
    width: 20px;
    height: 20px;
    pointer-events: none;
    opacity: 0.15;
}

.hero-cross::before,
.hero-cross::after {
    content: '';
    position: absolute;
    background: var(--brand-cream);
}

.hero-cross::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.hero-cross::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-cross-1 {
    top: 20%;
    left: 12%;
    animation: drift3 18s infinite alternate ease-in-out;
}

.hero-cross-2 {
    top: 65%;
    right: 15%;
    width: 14px;
    height: 14px;
    opacity: 0.1;
    animation: drift1 22s infinite alternate ease-in-out;
}

.hero-cross-3 {
    bottom: 25%;
    left: 25%;
    width: 16px;
    height: 16px;
    opacity: 0.12;
    animation: drift2 20s infinite alternate ease-in-out;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--brand-cream);
    top: -100px;
    left: -100px;
    opacity: 0.15;
    animation: drift1 25s infinite alternate ease-in-out;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: var(--brand-cream);
    bottom: -150px;
    right: -100px;
    opacity: 0.15;
    animation: drift2 30s infinite alternate ease-in-out;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #6ebbf0;
    top: 40%;
    left: 30%;
    opacity: 0.2;
    animation: drift3 20s infinite alternate ease-in-out;
}

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

@keyframes drift2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, -40px) scale(1.2); }
}

@keyframes drift3 {
    0% { transform: translate(0, 0); }
    33% { transform: translate(100px, -50px); }
    66% { transform: translate(-50px, 50px); }
    100% { transform: translate(0, 0); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.highlight {
    color: var(--brand-cream);
}

.hero-content p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.15s forwards;
    opacity: 0;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ABOUT
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 4rem;
    align-items: center;
}

.about-greeting {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.02rem;
    color: var(--text-light);
    margin-bottom: 1.15rem;
    line-height: 1.85;
}

.about-text strong {
    color: var(--brand-cream);
    font-weight: 600;
}

.about-cta {
    margin-top: 2rem;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: center;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 227, 179, 0.1);
    border-radius: 12px;
    transition: all var(--transition);
    cursor: default;
}

.about-stat:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 227, 179, 0.3);
    transform: translateX(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.about-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 227, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--brand-cream);
    flex-shrink: 0;
    transition: all var(--transition);
}

.about-stat:hover .about-stat-icon {
    background: rgba(255, 227, 179, 0.2);
    transform: scale(1.08);
}

.about-stat-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.about-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ============================================
   SERVICES
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 227, 179, 0.1);
    border-radius: 12px;
    transition: all var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 227, 179, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card--secondary {
    border-style: dashed;
}

.service-badge {
    display: inline-block;
    background: rgba(255, 227, 179, 0.12);
    color: var(--brand-cream);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
}

.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(255, 227, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--brand-cream);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(255, 227, 179, 0.2);
    transform: scale(1.05);
}

.service-card .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.steps-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    position: relative;
    margin-bottom: 3rem;
}

.step-tab {
    flex: 1;
    max-width: 220px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.25rem 1rem;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    transition: all var(--transition);
    position: relative;
    z-index: 1;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 227, 179, 0.15);
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 auto 0.75rem;
    transition: all 0.4s ease;
}

.step-tab.active .step-number {
    background: var(--brand-cream);
    border-color: var(--brand-cream);
    color: var(--brand-blue);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 227, 179, 0.3);
}

.step-tab:hover .step-number {
    border-color: var(--brand-cream);
    color: var(--brand-cream);
}

.step-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color var(--transition);
}

.step-tab.active .step-title {
    color: var(--brand-cream);
}

.step-tab:hover .step-title {
    color: var(--text-light);
}

.steps-progress {
    position: absolute;
    top: calc(1.25rem + 22px);
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: rgba(255, 227, 179, 0.1);
    z-index: 0;
    border-radius: 2px;
}

.steps-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--brand-cream);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.steps-content {
    position: relative;
    min-height: 280px;
    margin-bottom: 1rem;
}

.step-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
    pointer-events: none;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 227, 179, 0.08);
    border-radius: 16px;
}

.step-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.step-panel-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(255, 227, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--brand-cream);
}

.step-panel .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.step-panel p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
}

/* ============================================
   WHAT YOU GET
   ============================================ */

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.deliverable-card {
    perspective: 800px;
    height: 220px;
    cursor: pointer;
}

.deliverable-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.deliverable-card:hover .deliverable-inner {
    transform: rotateY(180deg);
}

.deliverable-front,
.deliverable-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 1px solid rgba(255, 227, 179, 0.1);
}

.deliverable-front {
    background: rgba(255, 255, 255, 0.05);
}

.deliverable-front i {
    font-size: 2.2rem;
    color: var(--brand-cream);
    margin-bottom: 1.25rem;
    transition: transform var(--transition);
}

.deliverable-front .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
}

.deliverable-front::after {
    content: 'Hover for details →';
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 1.25rem;
    transition: opacity var(--transition);
}

.deliverable-card:hover .deliverable-front::after {
    opacity: 0;
}

.deliverable-back {
    background: var(--brand-cream);
    transform: rotateY(180deg);
    padding: 2rem 1.75rem;
}

.deliverable-back p {
    font-size: 0.92rem;
    color: var(--brand-blue);
    line-height: 1.7;
    text-align: center;
    font-weight: 500;
}

/* ============================================
   CTA STRIP
   ============================================ */

.section-before-cta {
    padding-bottom: 0;
}

.cta-strip {
    padding: 70px 0 100px;
    background: var(--brand-blue);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--brand-cream);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.cta-strip .section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-strip p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 227, 179, 0.12);
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 227, 179, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    transition: color var(--transition);
}

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

.faq-question i {
    font-size: 0.85rem;
    color: var(--brand-cream);
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

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

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

.faq-answer p {
    padding-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-details {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light);
    transition: color var(--transition);
}

.contact-detail i {
    color: var(--brand-cream);
    font-size: 1.1rem;
}

a.contact-detail:hover {
    color: var(--brand-cream);
}

.contact-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 227, 179, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 227, 179, 0.15);
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--white);
    transition: all var(--transition);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form select {
    color: var(--text-muted);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form select.selected {
    color: var(--white);
}

.contact-form select option {
    background: var(--brand-navy);
    color: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--brand-cream);
    background: rgba(255, 255, 255, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form .btn {
    width: 100%;
    border: none;
    text-align: center;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.form-success.visible {
    display: block;
}

.form-success i {
    font-size: 3rem;
    color: var(--brand-cream);
    margin-bottom: 1rem;
}

.form-success .card-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.form-success p {
    color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--brand-deep);
    padding: 50px 0 0;
    text-align: center;
}

.footer-top {
    margin-bottom: 1.75rem;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-cream);
    text-transform: lowercase;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color var(--transition);
    padding: 0.25rem 0;
}

.footer-nav a:hover {
    color: var(--brand-cream);
}

.footer-nav a:not(:last-child)::after {
    content: '|';
    margin: 0 0.85rem;
    color: rgba(255, 227, 179, 0.15);
    pointer-events: none;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.footer-contact a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--brand-cream);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 227, 179, 0.08);
    text-align: center;
    padding: 1.25rem 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--brand-cream);
    color: var(--brand-blue);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 90;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE - TABLET (1024px)
   ============================================ */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

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

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

}

/* ============================================
   RESPONSIVE - MOBILE (768px)
   ============================================ */

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    /* Nav */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100svh;
        background: var(--brand-deep);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 100;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .nav-link::after {
        bottom: -6px;
    }

    .nav-cta {
        font-size: 1.1rem;
        padding: 14px 32px;
    }

    /* Hero */
    .hero {
        padding: 100px 1.5rem 60px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .blob-1 {
        width: 250px;
        height: 250px;
    }

    .blob-2 {
        width: 300px;
        height: 300px;
    }

    .blob-3 {
        display: none;
    }

    .hero-ring,
    .hero-cross {
        display: none;
    }

    /* About */
    .about-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* How It Works */
    .steps-nav {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .step-tab {
        flex: 0 0 calc(50% - 0.5rem);
        padding: 1rem 0.5rem;
    }

    .steps-progress {
        display: none;
    }

    /* What You Get */
    .deliverable-front::after {
        content: 'Tap for details →';
    }

    .deliverables-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .contact-form .btn {
        width: 100%;
        text-align: center;
    }

    .contact-card {
        padding: 1.75rem;
    }

    .contact-details {
        gap: 1.5rem;
    }

    /* Footer */
    .footer-bottom {
        font-size: 0.75rem;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (480px)
   ============================================ */

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

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

    .service-card {
        padding: 2rem 1.5rem;
    }

    .about-sidebar {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .contact-details {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-strip {
        padding: 50px 0;
    }
}
