
        :root {
            --tomato: #DC2F02;
            --tomato-deep: #9D0208;
            --tomato-soft: #E85D04;
            --tomato-light: #FFBA08;
            --cream: #FFF8E7;
            --cream-soft: #FEF3E2;
            --cream-warm: #FAEBD7;
            --dark: #1C1917;
            --gray: #57534E;
            --muted: #A8A29E;
            --white: #FFFFFF;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Manrope', sans-serif;
            color: var(--dark);
            line-height: 1.65;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 { font-family: 'Instrument Serif', serif; font-weight: 600; }
        
        .container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

        /* ===== NAVBAR ===== */
        .navbar {
            position: relative;
            padding: 24px 0;
            z-index: 1000;
            transition: all 0.4s ease;
        }
        
        .navbar.fixed {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 248, 231, 0.92);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(220, 47, 2, 0.08);
            padding: 16px 0;
        }
        
        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            font-size: 26px;
            font-weight: 800;
            color: var(--tomato-deep);
            letter-spacing: -0.5px;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--tomato), var(--tomato-soft));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            position: relative;
            overflow: hidden;
        }
        
        .logo-icon::after {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
            animation: logoShine 3s infinite;
        }
        
        @keyframes logoShine {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--gray);
            font-weight: 600;
            font-size: 14.5px;
            position: relative;
            transition: color 0.3s;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2.5px;
            background: var(--tomato);
            transition: width 0.35s ease;
            border-radius: 2px;
        }
        
        .nav-links a:hover { color: var(--tomato-deep); }
        .nav-links a:hover::after { width: 100%; }
        
        .nav-cta {
            background: var(--tomato) !important;
            color: white !important;
            padding: 13px 26px !important;
            border-radius: 12px !important;
            font-weight: 700 !important;
            transition: all 0.35s ease !important;
            box-shadow: 0 4px 18px rgba(220, 47, 2, 0.3) !important;
        }
        
        .nav-cta::after { display: none !important; }
        
        .nav-cta:hover {
            transform: translateY(-3px) scale(1.03) !important;
            box-shadow: 0 8px 28px rgba(220, 47, 2, 0.4) !important;
        }
        
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
        }
        
        .menu-toggle span {
            width: 26px;
            height: 2.5px;
            background: var(--tomato-deep);
            border-radius: 2px;
            transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            display: grid;
            place-items: center;
            position: relative;
            overflow: hidden;
            padding: 120px 0 80px;
            background: linear-gradient(165deg, var(--cream) 0%, var(--cream-soft) 50%, var(--cream-warm) 100%);
        }
        
        .hero-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }
        
        .hero-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 15% 85%, rgba(220, 47, 2, 0.07) 0%, transparent 45%),
                radial-gradient(circle at 85% 15%, rgba(232, 93, 4, 0.06) 0%, transparent 45%),
                radial-gradient(circle at 50% 50%, rgba(255, 186, 8, 0.04) 0%, transparent 55%);
        }
        
        .hero-lines {
            position: absolute;
            inset: 0;
            opacity: 0.04;
            background-image:
                repeating-linear-gradient(90deg, var(--tomato) 0px, var(--tomato) 1px, transparent 1px, transparent 80px),
                repeating-linear-gradient(0deg, var(--tomato) 0px, var(--tomato) 1px, transparent 1px, transparent 80px);
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-left { max-width: 560px; }
        
        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(220, 47, 2, 0.06);
            border: 1px solid rgba(220, 47, 2, 0.12);
            padding: 10px 20px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            color: var(--tomato-deep);
            margin-bottom: 26px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }
        
        .hero-label i { color: var(--tomato); }
        
        .hero-title {
            font-size: clamp(44px, 5.5vw, 72px);
            color: var(--dark);
            line-height: 1.05;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }
        
        .hero-title em {
            font-style: italic;
            color: var(--tomato);
            position: relative;
        }
        
        .hero-title em::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: -4px;
            right: -4px;
            height: 10px;
            background: rgba(220, 47, 2, 0.15);
            z-index: -1;
            border-radius: 3px;
        }
        
        .hero-desc {
            font-size: 17px;
            color: var(--gray);
            line-height: 1.78;
            margin-bottom: 34px;
        }
        
        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        
        .btn-main {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--tomato);
            color: white;
            padding: 17px 34px;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 30px rgba(220, 47, 2, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn-main::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
            transition: left 0.55s ease;
        }
        
        .btn-main:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 16px 48px rgba(220, 47, 2, 0.38);
        }
        
        .btn-main:hover::before { left: 100%; }
        
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--tomato-deep);
            padding: 17px 34px;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            border: 2px solid var(--tomato);
            transition: all 0.4s ease;
        }
        
        .btn-ghost:hover {
            background: var(--tomato);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(220, 47, 2, 0.28);
        }
        
        .hero-right {
            position: relative;
        }
        
        .hero-img-wrap {
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(220, 47, 2, 0.15);
        }
        
        .hero-img-wrap img {
            width: 100%;
            height: 540px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }
        
        .hero-img-wrap:hover img { transform: scale(1.04); }
        
        .hero-img-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 140px;
            background: linear-gradient(to top, rgba(157, 2, 8, 0.82), transparent);
        }
        
        .hero-float-card {
            position: absolute;
            background: white;
            padding: 18px 24px;
            border-radius: 18px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.12);
            display: flex;
            align-items: center;
            gap: 14px;
            animation: floatCard 5s ease-in-out infinite;
        }
        
        .hero-float-card.fc-1 {
            top: 25px;
            left: -30px;
        }
        
        .hero-float-card.fc-2 {
            bottom: 60px;
            right: -25px;
            animation-delay: -2s;
        }
        
        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        .fc-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--tomato), var(--tomato-soft));
            border-radius: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            flex-shrink: 0;
        }
        
        .fc-text h4 {
            font-family: 'Manrope', sans-serif;
            font-size: 11px;
            color: var(--muted);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .fc-text p {
            font-size: 20px;
            font-weight: 800;
            color: var(--tomato-deep);
            font-family: 'Manrope', sans-serif;
        }

        /* ===== ABOUT SECTION ===== */
        .about-section {
            padding: 130px 0;
        }
        
        .section-head {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 75px;
        }
        
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(220, 47, 2, 0.05);
            padding: 8px 18px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            color: var(--tomato-deep);
            margin-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        
        .section-head h2 {
            font-size: clamp(32px, 4vw, 48px);
            color: var(--dark);
            margin-bottom: 18px;
            letter-spacing: -0.5px;
        }
        
        .section-head p {
            font-size: 16.5px;
            color: var(--gray);
            line-height: 1.78;
        }
        
        .about-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        
        .about-card {
            background: white;
            padding: 42px 32px;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(220, 47, 2, 0.06);
        }
        
        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--tomato), var(--tomato-light));
            transform: scaleX(0);
            transition: transform 0.5s ease;
            transform-origin: left;
        }
        
        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(220, 47, 2, 0.12);
        }
        
        .about-card:hover::before { transform: scaleX(1); }
        
        .ac-icon {
            width: 76px;
            height: 76px;
            background: linear-gradient(135deg, rgba(220, 47, 2, 0.08), rgba(232, 93, 4, 0.06));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 33px;
            color: var(--tomato);
            margin-bottom: 22px;
            transition: all 0.5s ease;
        }
        
        .about-card:hover .ac-icon {
            background: linear-gradient(135deg, var(--tomato), var(--tomato-soft));
            color: white;
            transform: scale(1.08) rotate(-6deg);
        }
        
        .about-card h3 {
            font-size: 22px;
            color: var(--dark);
            margin-bottom: 13px;
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
        }
        
        .about-card p {
            color: var(--gray);
            font-size: 14.5px;
            line-height: 1.78;
        }

        /* ===== METRICS ===== */
        .metrics-section {
            padding: 95px 0;
            background: linear-gradient(135deg, var(--tomato-deep) 0%, var(--tomato) 50%, var(--tomato-soft) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .metrics-pattern {
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M35 0c19.33 0 35 15.67 35 35S54.33 70 35 70 0 54.33 0 35 15.67 0 35zm0 10c13.807 0 25 11.193 25 25S48.807 60 35 60 10 48.807 10 35 21.193 10 35 10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .metrics-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 45px;
            position: relative;
            z-index: 2;
        }
        
        .metric {
            text-align: center;
            color: white;
        }
        
        .metric-val {
            font-size: clamp(46px, 6vw, 70px);
            font-weight: 800;
            font-family: 'Manrope', sans-serif;
            line-height: 1;
            margin-bottom: 8px;
        }
        
        .metric-val span { display: inline-block; }
        
        .metric-suffix {
            color: var(--tomato-light);
            font-size: 0.55em;
        }
        
        .metric-lbl {
            font-size: 15px;
            opacity: 0.9;
            font-weight: 500;
        }

        /* ===== VISION MISSION ===== */
        .vm-section {
            padding: 130px 0;
        }
        
        .vm-flex {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 42px;
        }
        
        .vm-box {
            background: white;
            padding: 48px 40px;
            border-radius: 28px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(220, 47, 2, 0.06);
            transition: all 0.5s ease;
        }
        
        .vm-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 70px rgba(220, 47, 2, 0.12);
        }
        
        .vm-accent {
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, var(--tomato), var(--tomato-light));
        }
        
        .vm-icon-circle {
            width: 68px;
            height: 68px;
            background: linear-gradient(135deg, rgba(220, 47, 2, 0.08), rgba(255, 186, 8, 0.06));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 29px;
            color: var(--tomato);
            margin-bottom: 22px;
        }
        
        .vm-box h3 {
            font-size: 28px;
            color: var(--dark);
            margin-bottom: 16px;
        }
        
        .vm-box p {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.82;
        }

        /* ===== FEATURES ===== */
        .features-section {
            padding: 130px 0;
            background: var(--cream);
        }
        
        .feat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        
        .feat-card {
            background: white;
            padding: 38px 28px;
            border-radius: 24px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            position: relative;
        }
        
        .feat-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--tomato), var(--tomato-light));
            border-radius: 4px 4px 0 0;
            transition: width 0.5s ease;
        }
        
        .feat-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 70px rgba(220, 47, 2, 0.12);
            border-color: rgba(220, 47, 2, 0.08);
        }
        
        .feat-card:hover::after { width: 65%; }
        
        .feat-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(220, 47, 2, 0.07), rgba(255, 186, 8, 0.05));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px;
            font-size: 34px;
            color: var(--tomato);
            transition: all 0.5s ease;
        }
        
        .feat-card:hover .feat-icon {
            background: linear-gradient(135deg, var(--tomato), var(--tomato-soft));
            color: white;
            transform: scale(1.1) rotate(-8deg);
        }
        
        .feat-card h3 {
            font-size: 20px;
            color: var(--dark);
            margin-bottom: 13px;
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
        }
        
        .feat-card p {
            color: var(--gray);
            font-size: 14px;
            line-height: 1.78;
        }

        /* ===== PROCESS ===== */
        .process-section {
            padding: 130px 0;
        }
        
        .process-flow {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 75px;
        }
        
        .process-line {
            position: absolute;
            top: 48px;
            left: 8%;
            right: 8%;
            height: 3px;
            background: linear-gradient(90deg, var(--tomato), var(--tomato-light));
            border-radius: 3px;
        }
        
        .proc-step {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 0 14px;
        }
        
        .proc-num {
            width: 96px;
            height: 96px;
            background: white;
            border: 3px solid var(--tomato-soft);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 32px;
            font-weight: 800;
            color: var(--tomato-deep);
            font-family: 'Manrope', sans-serif;
            position: relative;
            z-index: 2;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .proc-step:hover .proc-num {
            background: linear-gradient(135deg, var(--tomato), var(--tomato-soft));
            color: white;
            border-color: transparent;
            transform: scale(1.12);
            box-shadow: 0 12px 40px rgba(220, 47, 2, 0.3);
        }
        
        .proc-icn {
            font-size: 34px;
            color: var(--tomato);
            margin-bottom: 14px;
            transition: transform 0.4s ease;
        }
        
        .proc-step:hover .proc-icn { transform: scale(1.18); }
        
        .proc-step h3 {
            font-size: 18px;
            color: var(--dark);
            margin-bottom: 11px;
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
        }
        
        .proc-step p {
            color: var(--gray);
            font-size: 13.5px;
            line-height: 1.72;
        }

        /* ===== PLANS ===== */
        .plans-section {
            padding: 130px 0;
            background: var(--cream);
        }
        
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            align-items: stretch;
        }
        
        .plan-card {
            background: white;
            border-radius: 28px;
            padding: 42px 34px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid rgba(220, 47, 2, 0.06);
            display: flex;
            flex-direction: column;
        }
        
        .plan-popular {
            border-color: var(--tomato);
            transform: scale(1.04);
            box-shadow: 0 20px 60px rgba(220, 47, 2, 0.12);
        }
        
        .plan-badge {
            position: absolute;
            top: 22px;
            right: -30px;
            background: linear-gradient(90deg, var(--tomato), var(--tomato-light));
            color: white;
            padding: 7px 44px;
            font-size: 10px;
            font-weight: 800;
            transform: rotate(45deg);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .plan-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 70px rgba(220, 47, 2, 0.14);
        }
        
        .plan-popular:hover { transform: scale(1.04) translateY(-12px); }
        
        .plan-top {
            text-align: center;
            padding-bottom: 26px;
            border-bottom: 2px solid rgba(220, 47, 2, 0.06);
            margin-bottom: 26px;
        }
        
        .plan-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, rgba(220, 47, 2, 0.08), rgba(232, 93, 4, 0.06));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 32px;
            color: var(--tomato);
        }
        
        .plan-top h3 {
            font-size: 24px;
            color: var(--dark);
            margin-bottom: 10px;
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
        }
        
        .plan-price {
            font-size: 42px;
            font-weight: 800;
            color: var(--tomato-deep);
            font-family: 'Manrope', sans-serif;
        }
        
        .plan-price span {
            font-size: 15px;
            font-weight: 500;
            color: var(--muted);
        }
        
        .plan-list {
            list-style: none;
            flex-grow: 1;
            margin-bottom: 28px;
        }
        
        .plan-list li {
            display: flex;
            align-items: center;
            gap: 11px;
            padding: 11px 0;
            font-size: 14px;
            color: var(--dark);
            border-bottom: 1px solid rgba(220, 47, 2, 0.03);
        }
        
        .plan-list li:last-child { border-bottom: none; }
        .plan-list li i { color: var(--tomato); font-size: 15px; flex-shrink: 0; }
        
        .plan-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            width: 100%;
            padding: 16px 26px;
            background: linear-gradient(135deg, var(--tomato), var(--tomato-soft));
            color: white;
            text-decoration: none;
            border-radius: 13px;
            font-weight: 700;
            font-size: 14.5px;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
        }
        
        .plan-btn:hover {
            box-shadow: 0 10px 35px rgba(220, 47, 2, 0.35);
            transform: translateY(-4px);
        }

        /* ===== SERVICES ===== */
        .services-section {
            padding: 130px 0;
        }
        
        .svc-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }
        
        .svc-card {
            background: var(--cream-warm);
            border-radius: 26px;
            padding: 42px 36px;
            display: flex;
            gap: 28px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .svc-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(220, 47, 2, 0.02), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .svc-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(220, 47, 2, 0.1);
            border-color: rgba(220, 47, 2, 0.1);
        }
        
        .svc-card:hover::before { opacity: 1; }
        
        .svc-icon {
            flex-shrink: 0;
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--tomato), var(--tomato-soft));
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 39px;
            color: white;
            transition: all 0.5s ease;
        }
        
        .svc-card:hover .svc-icon {
            transform: rotate(-10deg) scale(1.08);
            box-shadow: 0 12px 35px rgba(220, 47, 2, 0.3);
        }
        
        .svc-body {
            flex: 1;
            position: relative;
            z-index: 2;
        }
        
        .svc-body h3 {
            font-size: 22px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 13px;
            font-family: 'Manrope', sans-serif;
        }
        
        .svc-body p {
            color: var(--gray);
            font-size: 14.2px;
            line-height: 1.86;
            margin-bottom: 18px;
            display: -webkit-box;
            -webkit-line-clamp: 7;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .svc-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--tomato-deep);
            text-decoration: none;
            font-weight: 700;
            font-size: 13.5px;
            transition: all 0.35s ease;
        }
        
        .svc-link:hover {
            color: var(--tomato);
            gap: 13px;
        }
        
        .svc-link i {
            transition: transform 0.35s ease;
            font-size: 12px;
        }
        
        .svc-link:hover i { transform: translateX(5px); }

        /* ===== BOOKING ===== */
        .booking-section {
            padding: 130px 0;
            background: var(--cream);
        }
        
        .booking-layout {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 58px;
            align-items: center;
        }
        
        .booking-info h3 {
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 18px;
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
        }
        
        .booking-info p {
            color: var(--gray);
            font-size: 15.5px;
            line-height: 1.78;
            margin-bottom: 32px;
        }
        
        .booking-list {
            list-style: none;
        }
        
        .booking-list li {
            display: flex;
            align-items: center;
            gap: 13px;
            padding: 12px 0;
            font-size: 14.5px;
            color: var(--dark);
        }
        
        .booking-list li i {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, rgba(220, 47, 2, 0.1), rgba(232, 93, 4, 0.08));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--tomato);
            font-size: 12px;
            flex-shrink: 0;
        }
        
        .form-container {
            background: white;
            padding: 44px 38px;
            border-radius: 28px;
            box-shadow: 0 15px 55px rgba(220, 47, 2, 0.08);
        }
        
        .form-container h3 {
            font-size: 25px;
            color: var(--dark);
            margin-bottom: 26px;
            text-align: center;
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
        }
        
        .field {
            margin-bottom: 18px;
        }
        
        .field label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            color: var(--tomato-deep);
            margin-bottom: 7px;
            text-transform: uppercase;
            letter-spacing: 0.6px;
        }
        
        .field input,
        .field select,
        .field textarea {
            width: 100%;
            padding: 14px 17px;
            border: 2px solid rgba(220, 47, 2, 0.08);
            border-radius: 12px;
            font-size: 14px;
            font-family: 'Manrope', sans-serif;
            color: var(--dark);
            transition: all 0.35s ease;
            background: var(--cream);
        }
        
        .field input:focus,
        .field select:focus,
        .field textarea:focus {
            outline: none;
            border-color: var(--tomato);
            box-shadow: 0 0 0 4px rgba(220, 47, 2, 0.08);
        }
        
        .field textarea {
            resize: vertical;
            min-height: 110px;
        }
        
        .fields-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 16px 26px;
            background: linear-gradient(135deg, var(--tomato), var(--tomato-soft));
            color: white;
            border: none;
            border-radius: 13px;
            font-size: 15px;
            font-weight: 700;
            font-family: 'Manrope', sans-serif;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 6px;
        }
        
        .submit-btn:hover {
            box-shadow: 0 10px 35px rgba(220, 47, 2, 0.35);
            transform: translateY(-4px);
        }

        /* ===== REVIEWS ===== */
        .reviews-section {
            padding: 130px 0;
        }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        
        .review-card {
            background: white;
            padding: 36px 28px;
            border-radius: 24px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            position: relative;
        }
        
        .review-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 70px rgba(220, 47, 2, 0.1);
            border-color: rgba(220, 47, 2, 0.06);
        }
        
        .review-quote {
            font-size: 48px;
            color: var(--tomato-soft);
            opacity: 0.2;
            line-height: 1;
            margin-bottom: 12px;
            font-family: Georgia, serif;
        }
        
        .review-text {
            color: var(--dark);
            font-size: 14px;
            line-height: 1.82;
            margin-bottom: 22px;
            font-style: italic;
        }
        
        .reviewer {
            display: flex;
            align-items: center;
            gap: 13px;
        }
        
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--tomato), var(--tomato-soft));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            font-weight: 700;
        }
        
        .reviewer-name {
            font-size: 15px;
            color: var(--dark);
            font-weight: 700;
            font-family: 'Manrope', sans-serif;
        }
        
        .reviewer-loc {
            font-size: 12px;
            color: var(--muted);
        }
        
        .review-stars {
            color: var(--tomato-light);
            font-size: 12px;
            margin-top: 3px;
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding: 130px 0;
            background: var(--cream);
        }
        
        .faq-wrapper {
            max-width: 840px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 18px;
            margin-bottom: 14px;
            overflow: hidden;
            border: 2px solid rgba(220, 47, 2, 0.05);
            transition: all 0.4s ease;
        }
        
        .faq-item:hover { border-color: rgba(220, 47, 2, 0.12); }
        
        .faq-item.open {
            border-color: var(--tomato);
            box-shadow: 0 10px 40px rgba(220, 47, 2, 0.1);
        }
        
        .faq-q {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 26px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 700;
            color: var(--dark);
            transition: color 0.35s ease;
        }
        
        .faq-q:hover { color: var(--tomato); }
        
        .faq-toggle {
            width: 34px;
            height: 34px;
            background: linear-gradient(135deg, rgba(220, 47, 2, 0.06), rgba(232, 93, 4, 0.04));
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--tomato);
            transition: all 0.4s ease;
            flex-shrink: 0;
        }
        
        .faq-item.open .faq-toggle {
            background: linear-gradient(135deg, var(--tomato), var(--tomato-soft));
            color: white;
            transform: rotate(180deg);
        }
        
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s ease;
        }
        
        .faq-a-inner {
            padding: 0 26px 22px;
            color: var(--gray);
            font-size: 14px;
            line-height: 1.82;
        }
        
        .faq-item.open .faq-a { max-height: 380px; }

        /* ===== CTA ===== */
        .cta-section {
            padding: 105px 0;
            background: linear-gradient(135deg, var(--tomato-deep), var(--tomato), var(--tomato-soft));
            position: relative;
            overflow: hidden;
        }
        
        .cta-decor {
            position: absolute;
            inset: 0;
        }
        
        .cta-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.04);
        }
        
        .cta-circle:nth-child(1) {
            width: 420px;
            height: 420px;
            top: -140px;
            right: -90px;
        }
        
        .cta-circle:nth-child(2) {
            width: 320px;
            height: 320px;
            bottom: -90px;
            left: -70px;
        }
        
        .cta-inner {
            text-align: center;
            position: relative;
            z-index: 2;
            max-width: 720px;
            margin: 0 auto;
        }
        
        .cta-inner h2 {
            font-size: clamp(32px, 4.2vw, 48px);
            color: white;
            margin-bottom: 18px;
        }
        
        .cta-inner p {
            font-size: 16.5px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 34px;
            line-height: 1.78;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 11px;
            background: white;
            color: var(--tomato-deep);
            padding: 18px 42px;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 800;
            font-size: 16px;
            transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 12px 40px rgba(0,0,0,0.18);
            font-family: 'Manrope', sans-serif;
        }
        
        .cta-button:hover {
            transform: translateY(-6px) scale(1.04);
            box-shadow: 0 22px 55px rgba(0,0,0,0.25);
        }

        /* ===== CONTACT ===== */
        .contact-section {
            padding: 130px 0;
        }
        
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 58px;
        }
        
        .contact-info h3 {
            font-size: 34px;
            color: var(--dark);
            margin-bottom: 18px;
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
        }
        
        .contact-info > p {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.78;
            margin-bottom: 35px;
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        
        .contact-ico {
            width: 54px;
            height: 54px;
            background: linear-gradient(135deg, var(--tomato), var(--tomato-soft));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            flex-shrink: 0;
            transition: all 0.4s ease;
        }
        
        .contact-item:hover .contact-ico {
            transform: scale(1.08) rotate(-5deg);
            box-shadow: 0 10px 30px rgba(220, 47, 2, 0.3);
        }
        
        .contact-txt h4 {
            font-size: 16px;
            color: var(--dark);
            margin-bottom: 4px;
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
        }
        
        .contact-txt p,
        .contact-txt a {
            color: var(--gray);
            font-size: 14px;
            text-decoration: none;
            transition: color 0.35s ease;
        }
        
        .contact-txt a:hover { color: var(--tomato); }
        
        .contact-form-box {
            background: white;
            padding: 44px 40px;
            border-radius: 28px;
            box-shadow: 0 15px 55px rgba(220, 47, 2, 0.08);
        }
        
        .contact-form-box h3 {
            font-size: 25px;
            color: var(--dark);
            margin-bottom: 26px;
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: white;
            padding: 82px 0 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 48px;
            padding-bottom: 62px;
        }
        
        .footer-brand .f-logo {
            display: flex;
            align-items: center;
            gap: 11px;
            font-size: 25px;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            font-family: 'Manrope', sans-serif;
        }
        
        .f-logo-icon {
            width: 46px;
            height: 46px;
            background: linear-gradient(90deg, var(--tomato), var(--tomato-light));
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 23px;
            color: white;
        }
        
        .footer-brand > p {
            color: rgba(255,255,255,0.62);
            font-size: 14px;
            line-height: 1.82;
            margin-bottom: 22px;
        }
        
        .footer-social {
            display: flex;
            gap: 10px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.08);
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 17px;
            transition: all 0.4s ease;
        }
        
        .footer-social a:hover {
            background: var(--tomato);
            color: white;
            transform: translateY(-5px);
        }
        
        .footer-col h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 24px;
            color: white;
            position: relative;
            padding-bottom: 11px;
            font-family: 'Manrope', sans-serif;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 36px;
            height: 3px;
            background: var(--tomato);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 11px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.62);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.35s ease;
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }
        
        .footer-links a:hover {
            color: var(--tomato-light);
            padding-left: 7px;
        }
        
        .nl-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .nl-form > p {
            color: rgba(255,255,255,0.62);
            font-size: 13.5px;
            line-height: 1.68;
            margin-bottom: 3px;
        }
        
        .nl-input {
            width: 100%;
            padding: 14px 17px;
            border: 2px solid rgba(255,255,255,0.12);
            border-radius: 11px;
            background: rgba(255,255,255,0.05);
            color: white;
            font-size: 14px;
            font-family: 'Manrope', sans-serif;
            transition: all 0.35s ease;
        }
        
        .nl-input::placeholder { color: rgba(255,255,255,0.38); }
        
        .nl-input:focus {
            outline: none;
            border-color: var(--tomato);
            background: rgba(255,255,255,0.08);
        }
        
        .nl-submit {
            padding: 14px 24px;
            background: linear-gradient(90deg, var(--tomato), var(--tomato-light));
            color: var(--tomato-deep);
            border: none;
            border-radius: 11px;
            font-size: 13.5px;
            font-weight: 700;
            font-family: 'Manrope', sans-serif;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
        }
        
        .nl-submit:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(220, 47, 2, 0.3);
        }
        
        .footer-btm {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 14px;
        }
        
        .copyright {
            color: rgba(255,255,255,0.5);
            font-size: 13px;
        }
        
        .legal-links {
            display: flex;
            gap: 24px;
        }
        
        .legal-links a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.35s ease;
        }
        
        .legal-links a:hover { color: var(--tomato-light); }

        /* ===== SCROLL TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--tomato), var(--tomato-soft));
            color: white;
            border: none;
            border-radius: 14px;
            font-size: 21px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.45s ease;
            z-index: 999;
            box-shadow: 0 8px 28px rgba(220, 47, 2, 0.3);
        }
        
        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 40px rgba(220, 47, 2, 0.4);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .hero-title { font-size: 52px; }
            .metrics-row { grid-template-columns: repeat(2, 1fr); gap: 48px; }
        }
        
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 310px;
                height: 100vh;
                background: var(--cream);
                flex-direction: column;
                padding: 98px 38px 38px;
                gap: 24px;
                transition: right 0.45s cubic-bezier(0.23, 1, 0.32, 1);
                box-shadow: -10px 0 45px rgba(0,0,0,0.12);
            }
            .nav-links.open { right: 0; }
            .menu-toggle { display: flex; }
            .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
            .menu-toggle.active span:nth-child(2) { opacity: 0; }
            .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
            
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-left { max-width: 100%; }
            .hero-btns { justify-content: center; }
            .hero-right { order: -1; max-width: 540px; margin: 0 auto; }
            
            .about-cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
            .vm-flex { grid-template-columns: 1fr; }
            .feat-grid { grid-template-columns: repeat(2, 1fr); }
            .plans-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
            .plan-popular { transform: none; }
            .plan-popular:hover { transform: translateY(-12px); }
            .svc-grid { grid-template-columns: 1fr; }
            .booking-layout { grid-template-columns: 1fr; }
            .reviews-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-layout { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .process-flow { flex-wrap: wrap; justify-content: center; gap: 38px; }
            .process-line { display: none; }
            .proc-step { flex: 0 0 calc(50% - 19px); }
        }
        
        @media (max-width: 768px) {
            .hero-title { font-size: 40px; }
            .hero-desc { font-size: 15px; }
            .hero-img-wrap img { height: 370px; }
            .hero-float-card { display: none; }
            .section-head h2 { font-size: 31px; }
            .feat-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
            .reviews-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
            .proc-step { flex: 0 0 100%; }
            .fields-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 38px; }
            .footer-btm { flex-direction: column; text-align: center; }
            .metrics-row { grid-template-columns: 1fr; gap: 38px; }
        }
        
        @media (max-width: 480px) {
            .container { padding: 0 18px; }
            .logo { font-size: 22px; }
            .logo-icon { width: 42px; height: 42px; font-size: 21px; }
            .hero-title { font-size: 34px; }
            .btn-main, .btn-ghost { padding: 15px 28px; font-size: 14px; }
            .svc-card { flex-direction: column; text-align: center; }
            .svc-icon { margin: 0 auto; }
        }
