       @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600;700&display=swap');
 
       /* start */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: #FFFFFF;
            color: #2E2E2E;
        }

           
                /* Navbarr */
        nav {
            background: white;
            border-bottom: 1px solid #E8EEF5;
            position: sticky;
            top: 0;
            z-index: 50;
            box-shadow: 0 2px 8px rgba(10, 37, 64, 0.06);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav.scrolled {
            box-shadow: 0 4px 16px rgba(10, 37, 64, 0.1);
        }

        .navbar-container {
            max-width: 7xl;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90px;
        }

        @media (max-width: 768px) {
            .navbar-container {
                height: 75px;
                padding: 0 1.25rem;
            }
        }

        /* Logo */
        .navbar-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: #0A2540;
            letter-spacing: -0.02em;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .navbar-logo {
                font-size: 1.5rem;
            }
        }

        .navbar-logo:hover {
            color: #F97316;
        }

        .navbar-logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, #F97316, #EA580C);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .navbar-logo-icon svg {
            width: 24px;
            height: 24px;
            stroke: white;
            fill: none;
            stroke-width: 2.5;
        }

        /* Desktop Navigation */
        .navbar-links {
            display: none;
            gap: 2rem;
            align-items: center;
        }

        @media (min-width: 769px) {
            .navbar-links {
                display: flex;
            }
        }

        .nav-link {
            font-size: 0.9375rem;
            font-weight: 500;
            color: #2E2E2E;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            letter-spacing: -0.01em;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #F97316, #EA580C);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link:hover {
            color: #0A2540;
        }

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

        /* CTA Button */
        .nav-cta {
            display: none;
            padding: 1rem 1.75rem;
            background: linear-gradient(135deg, #F97316, #EA580C);
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 10px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            letter-spacing: 0.3px;
        }

        @media (min-width: 769px) {
            .nav-cta {
                display: flex;
            }
        }

        .nav-cta svg {
            width: 20px;
            height: 20px;
        }

        .nav-cta:hover {
            background: linear-gradient(135deg, #EA580C, #D94A07);
            box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
            transform: translateY(-2px);
        }

        .nav-cta:active {
            transform: translateY(0);
        }

        /* Quote Button */
        .nav-quote-btn {
            display: none;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #0A2540, #0D2F4C);
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.125rem;
            border-radius: 10px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 16px rgba(10, 37, 64, 0.3);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        @media (min-width: 769px) {
            .nav-quote-btn {
                display: block;
            }
        }

        .nav-quote-btn:hover {
            background: linear-gradient(135deg, #0D2F4C, #112D45);
            box-shadow: 0 6px 20px rgba(10, 37, 64, 0.4);
            transform: translateY(-2px);
        }

        .nav-quote-btn:active {
            transform: translateY(0);
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @media (min-width: 769px) {
            .mobile-toggle {
                display: none;
            }
        }

        .mobile-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: #0A2540;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 1px;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

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

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

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: absolute;
            top: 90px;
            left: 0;
            right: 0;
            background: white;
            border-bottom: 1px solid #E8EEF5;
            padding: 1.5rem;
            animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @media (max-width: 768px) {
            .mobile-menu {
                top: 75px;
            }
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .mobile-menu-link {
            font-size: 0.9375rem;
            font-weight: 500;
            color: #2E2E2E;
            text-decoration: none;
            padding: 0.5rem 0;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid #F0F4F8;
        }

        .mobile-menu-link:last-child {
            border-bottom: none;
        }

        .mobile-menu-link:hover {
            color: #F97316;
        }

        .mobile-menu-cta {
            display: block;
            padding: 1rem;
            background: linear-gradient(135deg, #F97316, #EA580C);
            color: white;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
        }

        .mobile-menu-cta:active {
            background: linear-gradient(135deg, #EA580C, #D94A07);
        }

        /* Desktop Dropdown Styles */
        .nav-dropdown {
            position: relative;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        .dropdown-arrow {
            transition: transform 0.3s ease;
        }

        .nav-dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            min-width: 220px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            padding: 0.75rem 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            margin-top: 0.75rem;
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            border: 8px solid transparent;
            border-bottom-color: white;
        }

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

        .dropdown-item {
            display: block;
            padding: 0.75rem 1.25rem;
            color: #2E2E2E;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .dropdown-item:hover {
            background: linear-gradient(90deg, rgba(249, 115, 22, 0.1), rgba(234, 88, 12, 0.05));
            color: #F97316;
            padding-left: 1.5rem;
        }

        /* Mobile Dropdown Styles */
        .mobile-dropdown {
            width: 100%;
        }

        .mobile-dropdown-toggle {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
        }

        .mobile-dropdown-toggle .dropdown-arrow {
            transition: transform 0.3s ease;
        }

        .mobile-dropdown-toggle.active .dropdown-arrow {
            transform: rotate(180deg);
        }

        .mobile-dropdown-menu {
            display: none;
            padding-left: 1rem;
            margin-top: 0.5rem;
            border-left: 2px solid rgba(249, 115, 22, 0.3);
        }

        .mobile-dropdown-menu.active {
            display: block;
        }

        .mobile-dropdown-item {
            display: block;
            padding: 0.75rem 1rem;
            color: #4B5563;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.2s ease;
        }

        .mobile-dropdown-item:hover {
            color: #F97316;
        }

        /* Animations */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Scrolled state changes */
        nav.scrolled {
            height: 65px;
        }

        nav.scrolled .navbar-container {
            height: 65px;
        }

        /* Top Bar */
        .navbar-topbar {
            background: linear-gradient(135deg, #0A2540 0%, #0D2F4C 100%);
            border-bottom: 1px solid rgba(249, 115, 22, 0.2);
            padding: 0.75rem 1.5rem;
        }

        @media (max-width: 768px) {
            .navbar-topbar {
                display: none;
            }
        }

        .topbar-container {
            max-width: 7xl;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .topbar-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: -0.01em;
        }

        .topbar-item:hover {
            color: #F97316;
        }

        .topbar-icon {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        .topbar-icon svg {
            width: 100%;
            height: 100%;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        .topbar-label {
            font-weight: 600;
            color: #F97316;
        }

        .topbar-value {
            font-weight: 400;
        }

        .hero-headline {
            font-family: 'Playfair Display', serif;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .hero-subheadline {
            font-weight: 400;
            letter-spacing: -0.01em;
            color: #4B5563;
        }

        .cta-primary {
            background-color: #F97316;
            color: white;
            font-weight: 600;
            letter-spacing: 0.3px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
        }

        .cta-primary:hover {
            background-color: #EA580C;
            box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
            transform: translateY(-2px);
        }

        .cta-primary:active {
            transform: translateY(0);
        }

        .cta-secondary {
            border: 2px solid #0A2540;
            color: #0A2540;
            font-weight: 600;
            letter-spacing: 0.3px;
            background-color: white;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .cta-secondary:hover {
            background-color: #0A2540;
            color: white;
            box-shadow: 0 4px 12px rgba(10, 37, 64, 0.2);
        }

        .cta-secondary:active {
            transform: translateY(0);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 500;
            color: #2E2E2E;
            font-size: 1.1rem;
        }

        .trust-checkmark {
            width: 20px;
            height: 20px;
            background-color: #F97316;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .trust-checkmark svg {
            width: 12px;
            height: 12px;
            stroke: white;
            stroke-width: 3;
        }

        .image-placeholder {
            background: linear-gradient(135deg, #F5F7FA 0%, #E8EEF5 100%);
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }

        .image-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23D0D8E0" stroke-width="0.5"/></pattern></defs><rect width="400" height="300" fill="%23F5F7FA"/><rect width="400" height="300" fill="url(%23grid)"/></svg>');
            background-size: 40px 40px;
            opacity: 0.5;
        }

        .image-placeholder-content {
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .roofing-icon {
            width: 80px;
            height: 80px;
            background-color: #0A2540;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.8;
        }

        .roofing-icon svg {
            width: 48px;
            height: 48px;
            stroke: white;
            fill: none;
            stroke-width: 1.5;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-fade-up {
            animation: fadeInUp 0.7s ease-out forwards;
        }

        .animate-slide-right {
            animation: slideInRight 0.7s ease-out forwards;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-headline {
                font-size: 2rem;
            }

            .hero-subheadline {
                font-size: 1rem;
            }
        }

        @media (min-width: 769px) {
            .hero-headline {
                font-size: 3.5rem;
            }

            .hero-subheadline {
                font-size: 1.125rem;
            }
        }


        .section-heading {
            font-family: 'Playfair Display', serif;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .section-intro {
            font-weight: 400;
            letter-spacing: -0.01em;
            color: #4B5563;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid #E8EEF5;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #F97316, transparent);
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover {
            box-shadow: 0 12px 32px rgba(10, 37, 64, 0.12);
            border-color: #D0D8E0;
            transform: translateY(-4px);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, #F97316, #EA580C);
            transform: scale(1.08) rotate(2deg);
        }

        .service-card:hover .service-title {
            color: #0A2540;
        }

        .service-icon {
            width: 56px;
            height: 56px;
            background-color: #F0F4F8;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
        }

        .service-icon svg {
            width: 28px;
            height: 28px;
            stroke: #0A2540;
            fill: none;
            stroke-width: 1.5;
            transition: stroke 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover .service-icon svg {
            stroke: white;
        }

        .service-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0A2540;
            margin-bottom: 0.75rem;
            transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            line-height: 1.2;
        }

        .service-description {
            font-size: 0.95rem;
            color: #4B5563;
            line-height: 1.6;
            font-weight: 400;
            flex-grow: 1;
        }

        .service-arrow {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.25rem;
            font-weight: 600;
            color: #0A2540;
            font-size: 0.9rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
        }

        .service-card:hover .service-arrow {
            opacity: 1;
            gap: 0.75rem;
        }

        .arrow-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover .arrow-icon {
            transform: translateX(2px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        .animate-fade-up {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .animate-slide-in {
            animation: slideIn 0.5s ease-out forwards;
            opacity: 0;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        .delay-6 { animation-delay: 0.6s; }

        /* Responsive typography */
        @media (max-width: 768px) {
            .section-heading {
                font-size: 2rem;
            }

            .section-intro {
                font-size: 1rem;
            }
        }

        @media (min-width: 769px) {
            .section-heading {
                font-size: 2.5rem;
            }

            .section-intro {
                font-size: 1.0625rem;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) {
            .service-arrow {
                opacity: 1;
                gap: 0.75rem;
            }

            .service-card:active {
                box-shadow: 0 12px 32px rgba(10, 37, 64, 0.12);
                transform: translateY(-2px);
            }
        }
 


        .section-subtext {
            font-weight: 400;
            letter-spacing: -0.01em;
            color: #4B5563;
        }

        .bg-gradient-subtle {
            background: linear-gradient(135deg, #FFFFFF 0%, #F5F7FA 100%);
        }

        .reason-item {
            display: flex;
            gap: 1.5rem;
            padding: 2rem;
            border-radius: 12px;
            background: white;
            border: 1px solid #E8EEF5;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .reason-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #F97316, #EA580C);
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reason-item:hover {
            box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1);
            border-color: #D0D8E0;
            transform: translateX(4px);
        }

        .reason-item:hover::before {
            opacity: 1;
        }

        .reason-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #F0F4F8, #E8EEF5);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reason-icon svg {
            width: 24px;
            height: 24px;
            stroke: #0A2540;
            fill: none;
            stroke-width: 1.75;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reason-item:hover .reason-icon {
            background: linear-gradient(135deg, #F97316, #EA580C);
            transform: scale(1.1) rotate(-4deg);
        }

        .reason-item:hover .reason-icon svg {
            stroke: white;
        }

        .reason-content {
            flex: 1;
        }

        .reason-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: #0A2540;
            margin-bottom: 0.5rem;
            line-height: 1.3;
            transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reason-item:hover .reason-title {
            color: #0A2540;
        }

        .reason-description {
            font-size: 0.9375rem;
            color: #4B5563;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-15px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-fade-up {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .animate-slide-left {
            animation: slideInLeft 0.6s ease-out forwards;
            opacity: 0;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        .delay-6 { animation-delay: 0.6s; }

        /* Responsive typography */
        @media (max-width: 768px) {
            .section-heading {
                font-size: 2rem;
            }

            .section-subtext {
                font-size: 1rem;
            }

            .reason-item {
                padding: 1.5rem;
                gap: 1.25rem;
            }

            .reason-title {
                font-size: 1.0625rem;
            }

            .reason-description {
                font-size: 0.875rem;
            }
        }

        @media (min-width: 769px) {
            .section-heading {
                font-size: 2.75rem;
            }

            .section-subtext {
                font-size: 1.0625rem;
            }

            .reason-item {
                padding: 2rem;
                gap: 1.5rem;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) {
            .reason-item {
                box-shadow: 0 4px 12px rgba(10, 37, 64, 0.08);
            }

            .reason-item:active {
                transform: translateX(2px);
            }
        }


                /* Timeline Container */
        .timeline-container {
            position: relative;
        }

        /* Desktop Timeline Line */
        @media (min-width: 1024px) {
            .timeline-container::before {
                content: '';
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                height: 2px;
                background: linear-gradient(90deg, #F97316 0%, #EA580C 50%, #F97316 100%);
                z-index: 0;
            }
        }

        /* Mobile Timeline Line */
        @media (max-width: 1023px) {
            .timeline-container::before {
                content: '';
                position: absolute;
                top: 0;
                left: 28px;
                bottom: 0;
                width: 2px;
                background: linear-gradient(180deg, #F97316 0%, #EA580C 50%, #F97316 100%);
                z-index: 0;
            }
        }

        .steps-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        @media (min-width: 1024px) {
            .steps-grid {
                grid-template-columns: repeat(5, 1fr);
                gap: 1.5rem;
            }
        }

        .step-item {
            display: flex;
            flex-direction: column;
            position: relative;
            padding-left: 80px;
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        @media (min-width: 1024px) {
            .step-item {
                padding-left: 0;
                padding-top: 100px;
                text-align: center;
            }
        }

        .step-number {
            position: absolute;
            top: 0;
            left: 0;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #F97316, #EA580C);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
        }

        @media (min-width: 1024px) {
            .step-number {
                position: relative;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 64px;
                height: 64px;
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }
        }

        .step-item:hover .step-number {
            box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
            transform: scale(1.1);
        }

        @media (min-width: 1024px) {
            .step-item:hover .step-number {
                transform: translateX(-50%) scale(1.1);
            }
        }

        .step-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .step-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: #0A2540;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        @media (min-width: 1024px) {
            .step-title {
                font-size: 1.0625rem;
            }
        }

        .step-description {
            font-size: 0.9375rem;
            color: #4B5563;
            line-height: 1.6;
            font-weight: 400;
        }

        @media (min-width: 1024px) {
            .step-description {
                font-size: 0.875rem;
            }
        }

        /* Step card styling for desktop */
        @media (min-width: 1024px) {
            .step-card {
                background: white;
                border: 1px solid #E8EEF5;
                border-radius: 10px;
                padding: 1.5rem 1.25rem;
                margin-top: 2rem;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;
                overflow: hidden;
            }

            .step-card::before {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 3px;
                background: linear-gradient(90deg, #F97316, #EA580C);
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .step-item:hover .step-card {
                box-shadow: 0 8px 24px rgba(10, 37, 64, 0.08);
                border-color: #D0D8E0;
            }

            .step-item:hover .step-card::before {
                transform: scaleX(1);
            }

            .step-content {
                padding: 0;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-up {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        .delay-6 { animation-delay: 0.6s; }
        .delay-7 { animation-delay: 0.7s; }

        .step-item:nth-child(1) {
            animation-delay: 0.15s;
        }

        .step-item:nth-child(2) {
            animation-delay: 0.25s;
        }

        .step-item:nth-child(3) {
            animation-delay: 0.35s;
        }

        .step-item:nth-child(4) {
            animation-delay: 0.45s;
        }

        .step-item:nth-child(5) {
            animation-delay: 0.55s;
        }

        /* Responsive typography */
        @media (max-width: 768px) {
            .section-heading {
                font-size: 2rem;
            }

            .section-subtext {
                font-size: 1rem;
            }
        }

        @media (min-width: 769px) {
            .section-heading {
                font-size: 2.75rem;
            }

            .section-subtext {
                font-size: 1.0625rem;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) {
            .step-number {
                box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
            }
        }


                .emergency-section {
            background: linear-gradient(135deg, #0A2540 0%, #0D2F4C 50%, #082035 100%);
            position: relative;
            overflow: hidden;
        }

        /* Decorative background pattern */
        .emergency-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        /* Accent line decoration */
        .emergency-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, #F97316, transparent);
            z-index: 2;
        }

        .emergency-content {
            position: relative;
            z-index: 2;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .emergency-heading {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin-bottom: 1rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .emergency-heading {
                font-size: 1.75rem;
                margin-bottom: 0.75rem;
            }
        }

        @media (min-width: 769px) and (max-width: 1023px) {
            .emergency-heading {
                font-size: 2.25rem;
                margin-bottom: 0.875rem;
            }
        }

        @media (min-width: 1024px) {
            .emergency-heading {
                font-size: 3rem;
                margin-bottom: 1.25rem;
            }
        }

        .emergency-subtext {
            font-size: 1rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: -0.01em;
            line-height: 1.5;
            margin-bottom: 2rem;
            max-width: 32rem;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            .emergency-subtext {
                font-size: 0.9375rem;
                margin-bottom: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .emergency-subtext {
                font-size: 1.125rem;
                margin-bottom: 2.5rem;
            }
        }

        .cta-button {
            background: linear-gradient(135deg, #F97316, #EA580C);
            color: white;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.3px;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #EA580C, #D94A07);
            box-shadow: 0 12px 32px rgba(249, 115, 22, 0.45);
            transform: translateY(-3px);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

        .cta-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .cta-button:hover .cta-icon {
            transform: scale(1.15);
        }

        /* Trust indicator */
        .trust-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 2rem;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
            flex-wrap: wrap;
        }

        .trust-dot {
            width: 4px;
            height: 4px;
            background: #F97316;
            border-radius: 50%;
        }

        @media (max-width: 768px) {
            .trust-indicator {
                margin-top: 1.5rem;
                font-size: 0.8125rem;
                gap: 0.5rem;
            }
        }

        /* Animations */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
            }
            50% {
                box-shadow: 0 8px 32px rgba(249, 115, 22, 0.5);
            }
        }

        .animate-slide-down {
            animation: slideInDown 0.6s ease-out;
        }

        .animate-slide-up {
            animation: slideInUp 0.6s ease-out 0.2s forwards;
            opacity: 0;
        }

        .emergency-section .cta-button {
            animation: slideInUp 0.6s ease-out 0.4s forwards;
            opacity: 0;
        }

        .trust-indicator {
            animation: slideInUp 0.6s ease-out 0.5s forwards;
            opacity: 0;
        }

        /* Responsive padding */
        @media (max-width: 768px) {
            .emergency-section {
                padding: 2.5rem 1.5rem;
            }
        }

        @media (min-width: 769px) and (max-width: 1023px) {
            .emergency-section {
                padding: 3.5rem 2rem;
            }
        }

        @media (min-width: 1024px) {
            .emergency-section {
                padding: 5rem 2rem;
            }
        }



                .section-description {
            font-weight: 400;
            letter-spacing: -0.01em;
            color: #4B5563;
        }

        .bg-subtle-gradient {
            background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
        }

        .area-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem 1.5rem;
            background: white;
            border-radius: 10px;
            border: 1px solid #E8EEF5;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .area-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, #F97316, #EA580C);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .area-item:hover {
            box-shadow: 0 6px 16px rgba(10, 37, 64, 0.1);
            border-color: #D0D8E0;
            transform: translateX(4px);
        }

        .area-item:hover::before {
            transform: scaleY(1);
        }

        .area-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #F0F4F8, #E8EEF5);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .area-icon svg {
            width: 20px;
            height: 20px;
            stroke: #0A2540;
            fill: none;
            stroke-width: 2;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .area-item:hover .area-icon {
            background: linear-gradient(135deg, #F97316, #EA580C);
            transform: scale(1.08);
        }

        .area-item:hover .area-icon svg {
            stroke: white;
        }

        .area-name {
            font-size: 1rem;
            font-weight: 600;
            color: #0A2540;
            transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: -0.01em;
        }

        .area-item:hover .area-name {
            color: #0A2540;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-15px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-fade-up {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .animate-slide-left {
            animation: slideInLeft 0.5s ease-out forwards;
            opacity: 0;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        .delay-6 { animation-delay: 0.6s; }

        .area-item:nth-child(1) {
            animation: slideInLeft 0.5s ease-out 0.15s forwards;
            opacity: 0;
        }

        .area-item:nth-child(2) {
            animation: slideInLeft 0.5s ease-out 0.25s forwards;
            opacity: 0;
        }

        .area-item:nth-child(3) {
            animation: slideInLeft 0.5s ease-out 0.35s forwards;
            opacity: 0;
        }

        .area-item:nth-child(4) {
            animation: slideInLeft 0.5s ease-out 0.45s forwards;
            opacity: 0;
        }

        .area-item:nth-child(5) {
            animation: slideInLeft 0.5s ease-out 0.55s forwards;
            opacity: 0;
        }

        .area-item:nth-child(6) {
            animation: slideInLeft 0.5s ease-out 0.65s forwards;
            opacity: 0;
        }

        /* Responsive typography */
        @media (max-width: 768px) {
            .section-heading {
                font-size: 2rem;
            }

            .section-subtext {
                font-size: 1rem;
            }

            .section-description {
                font-size: 0.9375rem;
            }

            .area-item {
                padding: 1.125rem 1.25rem;
            }

            .area-name {
                font-size: 0.9375rem;
            }
        }

        @media (min-width: 769px) {
            .section-heading {
                font-size: 2.75rem;
            }

            .section-subtext {
                font-size: 1.0625rem;
            }

            .section-description {
                font-size: 1rem;
            }

            .area-item {
                padding: 1.5rem;
            }

            .area-name {
                font-size: 1.0625rem;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) {
            .area-item {
                box-shadow: 0 3px 8px rgba(10, 37, 64, 0.06);
            }

            .area-item:active {
                transform: translateX(2px);
            }
        }

    .section-body {
            font-weight: 400;
            letter-spacing: -0.01em;
            color: #4B5563;
            line-height: 1.8;
        }

        .bg-subtle-accent {
            background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
        }

        /* About Card */
        .about-card {
            background: white;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #F97316, transparent);
            opacity: 0;
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-card:hover::before {
            opacity: 1;
        }

        /* Accent element */
        .accent-element {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #F0F4F8, #E8EEF5);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .accent-element svg {
            width: 40px;
            height: 40px;
            stroke: #0A2540;
            fill: none;
            stroke-width: 1.5;
        }

        .about-card:hover .accent-element {
            background: linear-gradient(135deg, #F97316, #EA580C);
            transform: scale(1.08) rotate(2deg);
        }

        .about-card:hover .accent-element svg {
            stroke: white;
        }

        /* Content section */
        .about-content {
            position: relative;
            z-index: 2;
            padding: 2rem;
        }

        @media (max-width: 768px) {
            .about-content {
                padding: 1.5rem;
            }
        }

        .about-text {
            font-size: 1.0625rem;
            color: #4B5563;
            line-height: 1.75;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        @media (max-width: 768px) {
            .about-text {
                font-size: 1rem;
                line-height: 1.7;
            }
        }

        /* Highlight text styling */
        .highlight {
            color: #0A2540;
            font-weight: 600;
        }

        /* Image Placeholder */
        .about-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #F5F7FA 0%, #E8EEF5 100%);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 8px 24px rgba(10, 37, 64, 0.12);
            animation: slideInUp 0.7s ease-out 0.15s forwards;
            opacity: 0;
        }

        @media (max-width: 768px) {
            .about-image {
                height: 300px;
            }
        }

        @media (min-width: 1024px) {
            .about-image {
                height: 450px;
            }
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23D0D8E0" stroke-width="0.5"/></pattern></defs><rect width="400" height="300" fill="%23F5F7FA"/><rect width="400" height="300" fill="url(%23grid)"/></svg>');
            background-size: 40px 40px;
            opacity: 0.5;
        }

        .about-image-content {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .roofing-image-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #0A2540, #0D2F4C);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(10, 37, 64, 0.2);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-image:hover .roofing-image-icon {
            background: linear-gradient(135deg, #F97316, #EA580C);
            transform: scale(1.1) rotate(-5deg);
        }

        .roofing-image-icon svg {
            width: 56px;
            height: 56px;
            stroke: white;
            fill: none;
            stroke-width: 1.5;
        }

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

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        .animate-fade-up {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .animate-slide-left {
            animation: slideInLeft 0.7s ease-out forwards;
            opacity: 0;
        }

        .animate-slide-right {
            animation: slideInRight 0.7s ease-out forwards;
            opacity: 0;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.25s; }
        .delay-3 { animation-delay: 0.4s; }

        /* Divider line */
        .divider-line {
            width: 4px;
            height: 60px;
            background: linear-gradient(180deg, #F97316, transparent);
            border-radius: 2px;
            margin: 0;
            animation: fadeInUp 0.8s ease-out 0.3s forwards;
            opacity: 0;
        }

        @media (max-width: 768px) {
            .divider-line {
                width: 60px;
                height: 4px;
                margin-top: 1rem;
            }
        }

        /* Values list styling */
        .values-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

        .value-item {
            display: flex;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            background: white;
            border-left: 3px solid #F97316;
            border-radius: 8px;
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .value-item:hover {
            box-shadow: 0 4px 12px rgba(10, 37, 64, 0.08);
            transform: translateX(4px);
        }

        .value-item:nth-child(1) { animation-delay: 0.5s; }
        .value-item:nth-child(2) { animation-delay: 0.6s; }
        .value-item:nth-child(3) { animation-delay: 0.7s; }
        .value-item:nth-child(4) { animation-delay: 0.8s; }

        .value-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 0.125rem;
        }

        .value-icon svg {
            width: 100%;
            height: 100%;
            stroke: #F97316;
            fill: none;
            stroke-width: 2.5;
        }

        .value-text {
            font-size: 0.9375rem;
            font-weight: 500;
            color: #0A2540;
            line-height: 1.5;
        }

        @media (min-width: 1024px) {
            .values-list {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
        }

        /* Responsive typography */
        @media (max-width: 768px) {
            .section-heading {
                font-size: 2rem;
            }

            .accent-element {
                margin-bottom: 1.25rem;
            }
        }

        @media (min-width: 769px) {
            .section-heading {
                font-size: 2.75rem;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) {
            .about-card::before {
                opacity: 1;
            }

            .about-card:active {
                transform: scale(0.98);
            }
        }

        /* Layout Grid */
        .about-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            align-items: center;
        }

        @media (min-width: 768px) {
            .about-layout {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
        }

        @media (min-width: 1024px) {
            .about-layout {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 3.5rem;
                align-items: flex-start;
            }
        }

        /* Accordion Container */
        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        /* Accordion Item */
        .faq-item {
            border: 1px solid #E8EEF5;
            border-radius: 10px;
            overflow: hidden;
            background: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        @media (max-width: 768px) {
            .faq-item {
                gap: 0.75rem;
            }
        }

        @media (min-width: 769px) {
            .faq-item {
                gap: 1rem;
            }
        }

        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(10, 37, 64, 0.08);
            border-color: #D0D8E0;
        }

        .faq-item.active {
            box-shadow: 0 8px 24px rgba(10, 37, 64, 0.12);
            border-color: #F97316;
        }

        /* Accordion Header (Button) */
        .faq-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 1.5rem;
            background: white;
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: left;
        }

        @media (max-width: 768px) {
            .faq-header {
                padding: 1.25rem;
            }
        }

        .faq-item.active .faq-header {
            background: white;
        }

        /* Question Text */
        .faq-question {
            font-size: 1.0625rem;
            font-weight: 700;
            color: #0A2540;
            line-height: 1.4;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: -0.01em;
            flex: 1;
        }

        @media (max-width: 768px) {
            .faq-question {
                font-size: 1rem;
            }
        }

        .faq-item:hover .faq-question {
            color: #0A2540;
        }

        /* Toggle Icon */
        .faq-toggle {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #F0F4F8, #E8EEF5);
            border-radius: 8px;
            flex-shrink: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-left: 1rem;
        }

        @media (max-width: 768px) {
            .faq-toggle {
                width: 28px;
                height: 28px;
                margin-left: 0.75rem;
            }
        }

        .faq-toggle svg {
            width: 16px;
            height: 16px;
            stroke: #0A2540;
            fill: none;
            stroke-width: 2.5;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.active .faq-toggle {
            background: linear-gradient(135deg, #F97316, #EA580C);
        }

        .faq-item.active .faq-toggle svg {
            stroke: white;
            transform: rotate(180deg);
        }

        /* Accordion Content */
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: #F8FAFC;
        }

        .faq-item.active .faq-content {
            max-height: 500px;
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem 1.5rem;
            font-size: 0.9375rem;
            color: #4B5563;
            line-height: 1.7;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        @media (max-width: 768px) {
            .faq-answer {
                padding: 0 1.25rem 1.25rem 1.25rem;
                font-size: 0.875rem;
                line-height: 1.65;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-up {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }

        .faq-item:nth-child(1) { animation-delay: 0.15s; }
        .faq-item:nth-child(2) { animation-delay: 0.25s; }
        .faq-item:nth-child(3) { animation-delay: 0.35s; }
        .faq-item:nth-child(4) { animation-delay: 0.45s; }
        .faq-item:nth-child(5) { animation-delay: 0.55s; }

        /* Responsive typography */
        @media (max-width: 768px) {
            .section-heading {
                font-size: 2rem;
            }

            .section-subtext {
                font-size: 1rem;
            }
        }

        @media (min-width: 769px) {
            .section-heading {
                font-size: 2.75rem;
            }

            .section-subtext {
                font-size: 1.0625rem;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) {
            .faq-item {
                box-shadow: 0 2px 4px rgba(10, 37, 64, 0.04);
            }

            .faq-item:active {
                box-shadow: 0 6px 16px rgba(10, 37, 64, 0.1);
            }
        }

        /* Help text */
        .faq-help-text {
            background: white;
            border: 1px solid #E8EEF5;
            border-radius: 10px;
            padding: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            animation: fadeInUp 0.6s ease-out 0.65s forwards;
            opacity: 0;
        }

        .faq-help-text p {
            font-size: 0.9375rem;
            color: #4B5563;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .faq-help-text a {
            color: #F97316;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-help-text a:hover {
            color: #EA580C;
        }


                .bg-subtle-gradient {
            background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
        }

        /* Form Container */
        .form-container {
            background: white;
            border-radius: 12px;
            border: 1px solid #E8EEF5;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(10, 37, 64, 0.08);
            animation: fadeInUp 0.7s ease-out;
        }

        @media (max-width: 768px) {
            .form-container {
                padding: 1.5rem;
                border-radius: 10px;
            }
        }

        @media (min-width: 1024px) {
            .form-container {
                padding: 2.5rem 3rem;
            }
        }

        /* Form Group */
        .form-group {
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.7s ease-out forwards;
            opacity: 0;
        }

        @media (max-width: 768px) {
            .form-group {
                margin-bottom: 1.25rem;
            }
        }

        .form-group:nth-child(1) { animation-delay: 0.15s; }
        .form-group:nth-child(2) { animation-delay: 0.25s; }
        .form-group:nth-child(3) { animation-delay: 0.35s; }
        .form-group:nth-child(4) { animation-delay: 0.45s; }
        .form-group:nth-child(5) { animation-delay: 0.55s; }
        .form-group:nth-child(6) { animation-delay: 0.65s; }
        .form-group:nth-child(7) { animation-delay: 0.75s; }

        /* Form Label */
        .form-label {
            display: block;
            font-size: 0.9375rem;
            font-weight: 600;
            color: #0A2540;
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @media (max-width: 768px) {
            .form-label {
                font-size: 0.875rem;
            }
        }

        /* Form Input/Textarea/Select */
        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 0.875rem 1rem;
            font-size: 1rem;
            font-family: inherit;
            border: 1px solid #D0D8E0;
            border-radius: 8px;
            background: white;
            color: #2E2E2E;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: -0.01em;
        }

        @media (max-width: 768px) {
            .form-input,
            .form-textarea,
            .form-select {
                padding: 0.75rem 0.875rem;
                font-size: 16px;
            }
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: #8B92A3;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: #F97316;
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
            background: #FFFBF8;
        }

        .form-input:hover,
        .form-textarea:hover,
        .form-select:hover {
            border-color: #BCC4D0;
        }

        /* Textarea */
        .form-textarea {
            resize: vertical;
            min-height: 120px;
            font-weight: 400;
        }

        @media (max-width: 768px) {
            .form-textarea {
                min-height: 100px;
            }
        }

        /* Two-column layout on desktop */
        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        .form-row .form-group {
            margin-bottom: 0;
        }

        /* Full-width fields */
        .form-full-width {
            grid-column: 1 / -1;
        }

        /* Form Button */
        .form-button {
            width: 100%;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.3px;
            background: linear-gradient(135deg, #F97316, #EA580C);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.7s ease-out 0.85s forwards;
            opacity: 0;
        }

        @media (max-width: 768px) {
            .form-button {
                padding: 0.875rem 1.5rem;
                font-size: 0.9375rem;
            }
        }

        .form-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .form-button:hover {
            background: linear-gradient(135deg, #EA580C, #D94A07);
            box-shadow: 0 10px 28px rgba(249, 115, 22, 0.4);
            transform: translateY(-2px);
        }

        .form-button:hover::before {
            left: 100%;
        }

        .form-button:active {
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
        }

        .form-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Form Messages */
        .form-message {
            padding: 14px 18px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 0.9375rem;
            font-weight: 500;
            text-align: center;
        }

        .form-message.success {
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #a7f3d0;
        }

        .form-message.error {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #fecaca;
        }

        /* Privacy text */
        .form-privacy {
            font-size: 0.8125rem;
            color: #8B92A3;
            text-align: center;
            margin-top: 1rem;
            line-height: 1.5;
            animation: fadeInUp 0.7s ease-out 0.95s forwards;
            opacity: 0;
        }

        @media (max-width: 768px) {
            .form-privacy {
                font-size: 0.75rem;
            }
        }

        .form-privacy a {
            color: #0A2540;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-privacy a:hover {
            color: #F97316;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-up {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }

        /* Responsive typography */
        @media (max-width: 768px) {
            .section-heading {
                font-size: 2rem;
            }

            .section-subtext {
                font-size: 1rem;
            }
        }

        @media (min-width: 769px) {
            .section-heading {
                font-size: 2.75rem;
            }

            .section-subtext {
                font-size: 1.0625rem;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) {
            .form-input:focus,
            .form-textarea:focus,
            .form-select:focus {
                box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.15);
            }
        }


                /* Footer Background */
        footer {
            background: linear-gradient(135deg, #0A2540 0%, #0D2F4C 100%);
            position: relative;
            overflow: hidden;
        }

        /* Decorative background pattern */
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        /* Top border accent */
        footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #F97316, transparent);
            z-index: 2;
        }

        .footer-content {
            position: relative;
            z-index: 2;
        }

        /* Main Footer Section */
        .footer-main {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            padding: 3rem 0;
        }

        @media (min-width: 768px) {
            .footer-main {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }
        }

        @media (min-width: 1024px) {
            .footer-main {
                grid-template-columns: repeat(3, 1fr);
                gap: 4rem;
            }
        }

        /* Footer Section */
        .footer-section {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .footer-section:nth-child(1) { animation-delay: 0.1s; }
        .footer-section:nth-child(2) { animation-delay: 0.2s; }
        .footer-section:nth-child(3) { animation-delay: 0.3s; }

        /* Section Title */
        .footer-title {
            font-size: 1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-family: 'Sohne', sans-serif;
        }

        .footer-title::after {
            content: '';
            display: block;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #F97316, transparent);
            margin-top: 0.75rem;
        }

        /* Business Name */
        .footer-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
        }

        @media (max-width: 768px) {
            .footer-brand {
                font-size: 1.375rem;
            }
        }

        /* Contact Info */
        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            margin-top: 0.125rem;
        }

        .contact-icon svg {
            width: 100%;
            height: 100%;
            stroke: #F97316;
            fill: none;
            stroke-width: 1.5;
        }

        .contact-text {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            letter-spacing: -0.01em;
        }

        .contact-label {
            font-weight: 600;
            color: white;
            display: block;
            margin-bottom: 0.25rem;
        }

        /* Footer Links */
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.875rem;
        }

        .footer-link {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: -0.01em;
            font-weight: 400;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-link:hover {
            color: #F97316;
        }

        /* Business Hours */
        .hours-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .hour-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: -0.01em;
        }

        .hour-day {
            font-weight: 500;
        }

        .hour-time {
            color: #F97316;
            font-weight: 600;
        }

        /* Licensed Badge */
        .licensed-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background: rgba(249, 115, 22, 0.15);
            border: 1px solid rgba(249, 115, 22, 0.3);
            border-radius: 8px;
            margin-top: 1rem;
            font-size: 0.875rem;
            color: #F97316;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        .licensed-badge svg {
            width: 18px;
            height: 18px;
            fill: #F97316;
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }

        .footer-copyright {
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: -0.01em;
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-legal-link {
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: -0.01em;
        }

        .footer-legal-link:hover {
            color: #F97316;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive padding */
        @media (max-width: 768px) {
            .footer-content {
                padding: 2.5rem 1.5rem;
            }
        }

        @media (min-width: 769px) and (max-width: 1023px) {
            .footer-content {
                padding: 3.5rem 2rem;
            }
        }

        @media (min-width: 1024px) {
            .footer-content {
                padding: 4rem 2rem;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) {
            .footer-link:active,
            .footer-legal-link:active {
                color: #F97316;
            }
        }


        
        .heading-xl {
            font-family: 'Playfair Display', serif;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .heading-lg {
            font-family: 'Playfair Display', serif;
            letter-spacing: -0.015em;
            line-height: 1.2;
        }

        .text-secondary {
            color: #4B5563;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #0A2540 0%, #0D2F4C 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #F97316, transparent);
        }

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

        .hero-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 1rem;
            animation: fadeInDown 0.7s ease-out;
        }

        @media (min-width: 768px) {
            .hero-title {
                font-size: 3.5rem;
            }
        }

        .hero-subtitle {
            font-size: 1.0625rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0;
            max-width: 36rem;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            animation: fadeInUp 0.7s ease-out 0.2s both;
        }

        @media (max-width: 768px) {
            .hero-subtitle {
                font-size: 1rem;
            }
        }

        /* Section Styles */
        .section {
            padding: 4rem 1.5rem;
        }

        @media (min-width: 768px) {
            .section {
                padding: 5rem 2rem;
            }
        }

        @media (min-width: 1024px) {
            .section {
                padding: 6rem 0;
            }
        }

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

        .bg-light {
            background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
        }

        /* Grid Layout */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }

        @media (min-width: 1024px) {
            .contact-grid {
                grid-template-columns: 3fr 2fr;
            }
        }

        /* Form Styles */
        .form-section {
            animation: fadeInUp 0.7s ease-out 0.2s both;
        }

        .form-container {
            background: white;
            border: 1px solid #E8EEF5;
            border-radius: 12px;
            padding: 2.5rem 2rem;
            box-shadow: 0 4px 12px rgba(10, 37, 64, 0.08);
        }

        @media (max-width: 768px) {
            .form-container {
                padding: 2rem 1.5rem;
            }
        }

        .form-group {
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .form-group:nth-child(1) { animation-delay: 0.2s; }
        .form-group:nth-child(2) { animation-delay: 0.3s; }
        .form-group:nth-child(3) { animation-delay: 0.4s; }
        .form-group:nth-child(4) { animation-delay: 0.5s; }
        .form-group:nth-child(5) { animation-delay: 0.6s; }

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

        @media (min-width: 768px) {
            .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        .form-row .form-group {
            margin-bottom: 0;
        }

        .form-label {
            display: block;
            font-size: 0.9375rem;
            font-weight: 600;
            color: #0A2540;
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            font-size: 1rem;
            font-family: inherit;
            border: 1px solid #D0D8E0;
            border-radius: 8px;
            background: white;
            color: #2E2E2E;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: -0.01em;
        }

        @media (max-width: 768px) {
            .form-input,
            .form-textarea {
                padding: 0.75rem 0.875rem;
                font-size: 16px;
            }
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: #8B92A3;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #F97316;
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
            background: #FFFBF8;
        }

        .form-input:hover,
        .form-textarea:hover {
            border-color: #BCC4D0;
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
            font-weight: 400;
        }

        @media (max-width: 768px) {
            .form-textarea {
                min-height: 100px;
            }
        }

        .form-button {
            width: 100%;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.3px;
            background: linear-gradient(135deg, #F97316, #EA580C);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.6s ease-out 0.7s forwards;
            opacity: 0;
            margin-top: 1rem;
        }

        @media (max-width: 768px) {
            .form-button {
                padding: 0.875rem 1.5rem;
                font-size: 0.9375rem;
            }
        }

        .form-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .form-button:hover {
            background: linear-gradient(135deg, #EA580C, #D94A07);
            box-shadow: 0 10px 28px rgba(249, 115, 22, 0.4);
            transform: translateY(-3px);
        }

        .form-button:hover::before {
            left: 100%;
        }

        .form-button:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
        }

        /* Contact Info Section */
        .contact-info-section {
            animation: fadeInUp 0.7s ease-out 0.3s both;
        }

        .info-card {
            background: white;
            border: 1px solid #E8EEF5;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .info-card:hover {
            box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1);
            border-color: #F97316;
        }

        .info-card:nth-child(1) { animation-delay: 0.3s; }
        .info-card:nth-child(2) { animation-delay: 0.4s; }
        .info-card:nth-child(3) { animation-delay: 0.5s; }

        .info-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #F0F4F8, #E8EEF5);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .info-card:hover .info-icon {
            background: linear-gradient(135deg, #F97316, #EA580C);
        }

        .info-icon svg {
            width: 24px;
            height: 24px;
            stroke: #0A2540;
            fill: none;
            stroke-width: 2;
        }

        .info-card:hover .info-icon svg {
            stroke: white;
        }

        .info-title {
            font-size: 1.0625rem;
            font-weight: 700;
            color: #0A2540;
            margin-bottom: 0.75rem;
        }

        .info-text {
            font-size: 0.9375rem;
            color: #4B5563;
            line-height: 1.6;
        }

        .info-link {
            color: #F97316;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .info-link:hover {
            color: #EA580C;
        }

        /* Hours List */
        .hours-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .hour-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9375rem;
            color: #4B5563;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid #E8EEF5;
        }

        .hour-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .hour-day {
            font-weight: 600;
            color: #0A2540;
        }

        .hour-time {
            font-weight: 600;
            color: #F97316;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        /* Privacy Text */
        .form-privacy {
            font-size: 0.8125rem;
            color: #8B92A3;
            text-align: center;
            margin-top: 1.5rem;
            line-height: 1.5;
            animation: fadeInUp 0.6s ease-out 0.8s forwards;
            opacity: 0;
        }

        .form-privacy a {
            color: #0A2540;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s;
        }

        .form-privacy a:hover {
            color: #F97316;
        }

        /* Touch device optimizations */
        @media (hover: none) {
            .form-input:focus,
            .form-textarea:focus {
                box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.15);
            }
        }

        /* Page Intro */
        .intro-section {
            text-align: center;
            margin-bottom: 3rem;
            animation: fadeInUp 0.7s ease-out;
        }

        .intro-title {
            font-size: 2.5rem;
            color: #0A2540;
            margin-bottom: 1rem;
        }

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

        .intro-text {
            font-size: 1.0625rem;
            color: #4B5563;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        @media (max-width: 768px) {
            .intro-text {
                font-size: 1rem;
            }
        }



    /* service details */
    /* Hero with Image */
    .hero-image-section {
        position: relative;
        min-height: 450px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    @media (min-width: 768px) {
        .hero-image-section {
            min-height: 500px;
        }
    }

    .hero-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .hero-bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(13, 47, 76, 0.85) 100%);
        z-index: 1;
    }

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

    .hero-title {
        font-size: 2.25rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
        .hero-title {
            font-size: 3rem;
        }
    }

    .hero-subtitle {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2rem;
        max-width: 32rem;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .hero-cta {
        display: inline-flex;
        gap: 1rem;
    }

    @media (max-width: 768px) {
        .hero-cta {
            flex-direction: column;
            width: 100%;
        }
    }

    .btn-primary {
        padding: 1rem 2.5rem;
        background: linear-gradient(135deg, #F97316, #EA580C);
        color: white;
        font-weight: 700;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
        border: none;
        cursor: pointer;
        font-size: 1rem;
    }

    .btn-primary:hover {
        background: linear-gradient(135deg, #EA580C, #D94A07);
        transform: translateY(-2px);
    }

    .btn-secondary {
        padding: 1rem 2.5rem;
        background: transparent;
        color: white;
        font-weight: 700;
        border: 2px solid white;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

    .btn-secondary:hover {
        background: white;
        color: #0A2540;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 1.5rem;
    }

    .breadcrumb a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
    }

    .breadcrumb a:hover {
        color: #F97316;
    }

    /* Section Styles */
    .section {
        padding: 4rem 1.5rem;
    }

    @media (min-width: 768px) {
        .section {
            padding: 5rem 2rem;
        }
    }

    .section-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
        color: #0A2540;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        color: #4B5563;
        margin-bottom: 2rem;
        max-width: 40rem;
        line-height: 1.7;
    }

    .accent-line {
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #F97316, #EA580C);
        border-radius: 2px;
        margin-bottom: 1.25rem;
    }

    /* Grid Layouts */
    .grid-2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    @media (min-width: 768px) {
        .grid-2 {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
    }

    .grid-3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    @media (min-width: 768px) {
        .grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    /* Card Styles */
    .feature-card {
        background: white;
        border: 1px solid #E8EEF5;
        border-radius: 10px;
        padding: 1.5rem;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1);
        border-color: #F97316;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
        stroke: #F97316;
        fill: none;
        stroke-width: 2;
    }

    .feature-title {
        font-size: 1.0625rem;
        font-weight: 700;
        color: #0A2540;
        margin-bottom: 0.5rem;
    }

    .feature-text {
        font-size: 0.9375rem;
        color: #4B5563;
        line-height: 1.6;
    }

    /* Light Background Section */
    .bg-light {
        background: #F8FAFC;
    }

    /* Service Image */
    .service-image {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(10, 37, 64, 0.12);
    }

    .service-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    @media (min-width: 768px) {
        .service-image img {
            height: 100%;
            min-height: 350px;
        }
    }

    /* Gallery */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    @media (min-width: 768px) {
        .gallery-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .gallery-item {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        aspect-ratio: 4/3;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #0A2540 0%, #0D2F4C 100%);
        color: white;
        text-align: center;
        border-radius: 12px;
        padding: 3rem 2rem;
    }

    .cta-title {
        font-size: 1.75rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .cta-text {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 1.5rem;
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
    }

        /* end service details */



        /* area details */
        .text-secondary {
            color: #4B5563;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        /* Hero Section with Image */
        .hero-section {
            position: relative;
            min-height: 450px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .hero-section {
                min-height: 500px;
            }
        }

        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(13, 47, 76, 0.85) 100%);
            z-index: 1;
        }

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

        .hero-title {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 1rem;
            animation: fadeInDown 0.7s ease-out;
        }

        @media (min-width: 768px) {
            .hero-title {
                font-size: 3.5rem;
            }
        }

        .hero-location {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.0625rem;
            color: #F97316;
            font-weight: 600;
            margin-bottom: 1rem;
            animation: fadeInUp 0.7s ease-out 0.1s both;
        }

        .hero-location svg {
            width: 24px;
            height: 24px;
        }

        .hero-subtitle {
            font-size: 1.0625rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 36rem;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            animation: fadeInUp 0.7s ease-out 0.2s both;
        }

        @media (max-width: 768px) {
            .hero-subtitle {
                font-size: 1rem;
            }
        }

        .hero-cta {
            display: inline-flex;
            gap: 1rem;
            animation: fadeInUp 0.7s ease-out 0.4s both;
        }

        @media (max-width: 768px) {
            .hero-cta {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }
        }

        .btn-primary {
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #F97316, #EA580C);
            color: white;
            font-weight: 700;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            letter-spacing: 0.3px;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #EA580C, #D94A07);
            box-shadow: 0 12px 32px rgba(249, 115, 22, 0.45);
            transform: translateY(-2px);
        }

        .btn-secondary {
            padding: 1rem 2.5rem;
            background: transparent;
            color: white;
            font-weight: 700;
            border: 2px solid white;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1rem;
            letter-spacing: 0.3px;
        }

        .btn-secondary:hover {
            background: white;
            color: #0A2540;
        }

        /* Section Styles */
        .section {
            padding: 4rem 1.5rem;
        }

        @media (min-width: 768px) {
            .section {
                padding: 5rem 2rem;
            }
        }

        @media (min-width: 1024px) {
            .section {
                padding: 6rem 0;
            }
        }

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

        .section-title {
            font-size: 2.5rem;
            color: #0A2540;
            margin-bottom: 1rem;
            animation: fadeInUp 0.6s ease-out;
        }

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

        .section-subtitle {
            font-size: 1.0625rem;
            color: #4B5563;
            margin-bottom: 2.5rem;
            max-width: 48rem;
            line-height: 1.7;
            animation: fadeInUp 0.6s ease-out 0.1s both;
        }

        .accent-line {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #F97316, #EA580C);
            border-radius: 2px;
            margin-bottom: 1.5rem;
        }

        /* Grid Layouts */
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 2.5rem;
        }

        @media (min-width: 768px) {
            .grid-2 {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
        }

        .grid-3 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 2.5rem;
        }

        @media (min-width: 768px) {
            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (min-width: 1024px) {
            .grid-3 {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Card Styles */
        .feature-card {
            background: white;
            border: 1px solid #E8EEF5;
            border-radius: 10px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .feature-card:hover {
            box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1);
            border-color: #F97316;
            transform: translateY(-4px);
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }
        .feature-card:nth-child(5) { animation-delay: 0.5s; }
        .feature-card:nth-child(6) { animation-delay: 0.6s; }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #F0F4F8, #E8EEF5);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, #F97316, #EA580C);
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
            stroke: #0A2540;
            fill: none;
            stroke-width: 2;
        }

        .feature-card:hover .feature-icon svg {
            stroke: white;
        }

        .feature-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: #0A2540;
            margin-bottom: 0.75rem;
        }

        .feature-text {
            font-size: 0.9375rem;
            color: #4B5563;
            line-height: 1.6;
        }

        /* Reason Card */
        .reason-card {
            background: white;
            border: 1px solid #E8EEF5;
            border-radius: 10px;
            padding: 2rem;
            display: flex;
            gap: 1.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .reason-card:hover {
            box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1);
            border-color: #F97316;
            transform: translateX(4px);
        }

        .reason-card:nth-child(1) { animation-delay: 0.1s; }
        .reason-card:nth-child(2) { animation-delay: 0.2s; }
        .reason-card:nth-child(3) { animation-delay: 0.3s; }
        .reason-card:nth-child(4) { animation-delay: 0.4s; }

        .reason-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #F0F4F8, #E8EEF5);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reason-card:hover .reason-icon {
            background: linear-gradient(135deg, #F97316, #EA580C);
        }

        .reason-icon svg {
            width: 28px;
            height: 28px;
            stroke: #0A2540;
            fill: none;
            stroke-width: 1.5;
        }

        .reason-card:hover .reason-icon svg {
            stroke: white;
        }

        .reason-content h3 {
            font-size: 1.125rem;
            font-weight: 700;
            color: #0A2540;
            margin-bottom: 0.5rem;
        }

        .reason-content p {
            font-size: 0.9375rem;
            color: #4B5563;
            line-height: 1.6;
        }

        /* Light Background Section */
        .bg-light {
            background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #0A2540 0%, #0D2F4C 100%);
            color: white;
            text-align: center;
            border-radius: 12px;
            padding: 3rem 2rem;
            animation: fadeInUp 0.6s ease-out;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        @media (min-width: 768px) {
            .cta-section {
                padding: 4rem 3rem;
            }
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        @media (max-width: 768px) {
            .cta-title {
                font-size: 1.75rem;
            }
        }

        .cta-text {
            font-size: 1.0625rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 36rem;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        /* Stat Card */
        .stat-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .stat-card:hover {
            box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1);
            transform: translateY(-4px);
        }

        .stat-card:nth-child(1) { animation-delay: 0.1s; }
        .stat-card:nth-child(2) { animation-delay: 0.2s; }
        .stat-card:nth-child(3) { animation-delay: 0.3s; }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #F97316;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9375rem;
            color: #0A2540;
            font-weight: 600;
        }

        /* end area details */


        /* blog details */

        /* Hero/Header Section */
        .blog-header {
            background: linear-gradient(135deg, #0A2540 0%, #0D2F4C 100%);
            position: relative;
            overflow: hidden;
            padding: 3rem 1.5rem;
        }

        @media (min-width: 768px) {
            .blog-header {
                padding: 4rem 2rem;
            }
        }

        @media (min-width: 1024px) {
            .blog-header {
                padding: 5rem 0;
            }
        }

        .blog-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .blog-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #F97316, transparent);
        }

        .blog-header-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .blog-category {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            color: #F97316;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            animation: fadeInDown 0.7s ease-out;
        }

        .blog-title {
            font-size: 2.25rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            animation: fadeInDown 0.7s ease-out 0.1s both;
        }

        @media (min-width: 768px) {
            .blog-title {
                font-size: 3rem;
            }
        }

        .blog-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.9);
            animation: fadeInUp 0.7s ease-out 0.2s both;
        }

        @media (max-width: 768px) {
            .blog-meta {
                flex-direction: column;
                gap: 0.75rem;
            }
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Main Content */
        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 1.5rem;
        }

        @media (min-width: 768px) {
            .blog-container {
                padding: 5rem 2rem;
            }
        }

        @media (min-width: 1024px) {
            .blog-container {
                padding: 6rem 2rem;
            }
        }

        .blog-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 1024px) {
            .blog-layout {
                grid-template-columns: 1fr 320px;
                gap: 4rem;
            }
        }

        /* Featured Image */
        .featured-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #F5F7FA 0%, #E8EEF5 100%);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1);
            animation: fadeInUp 0.7s ease-out 0.3s both;
        }

        @media (min-width: 768px) {
            .featured-image {
                height: 400px;
            }
        }

        .featured-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23D0D8E0" stroke-width="0.5"/></pattern></defs><rect width="400" height="300" fill="%23F5F7FA"/><rect width="400" height="300" fill="url(%23grid)"/></svg>');
            background-size: 40px 40px;
            opacity: 0.5;
        }

        .featured-image-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #0A2540, #0D2F4C);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 12px rgba(10, 37, 64, 0.2);
        }

        .featured-image-icon svg {
            width: 48px;
            height: 48px;
            stroke: white;
            fill: none;
            stroke-width: 1.5;
        }

        /* Blog Content */
        .blog-content {
            animation: fadeInUp 0.7s ease-out 0.4s both;
        }

        .blog-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.875rem;
            font-weight: 700;
            color: #0A2540;
            margin: 2.5rem 0 1rem;
            letter-spacing: -0.015em;
            line-height: 1.2;
        }

        .blog-text h2:first-of-type {
            margin-top: 0;
        }

        @media (max-width: 768px) {
            .blog-text h2 {
                font-size: 1.5rem;
            }
        }

        .blog-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.375rem;
            font-weight: 700;
            color: #0A2540;
            margin: 2rem 0 0.75rem;
            letter-spacing: -0.01em;
        }

        .blog-text p {
            font-size: 1.0625rem;
            color: #4B5563;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        @media (max-width: 768px) {
            .blog-text p {
                font-size: 1rem;
                line-height: 1.7;
            }
        }

        .blog-text ul,
        .blog-text ol {
            margin: 1.5rem 0 1.5rem 1.5rem;
            font-size: 1rem;
            color: #4B5563;
            line-height: 1.8;
        }

        .blog-text li {
            margin-bottom: 0.75rem;
        }

        .blog-text ul li::marker {
            color: #F97316;
            font-weight: 600;
        }

        .blog-text strong {
            color: #0A2540;
            font-weight: 700;
        }

        .blog-text em {
            color: #0A2540;
            font-style: italic;
        }

        /* Sidebar */
        .sidebar {
            animation: fadeInUp 0.7s ease-out 0.5s both;
        }

        .sidebar-widget {
            background: white;
            border: 1px solid #E8EEF5;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @media (max-width: 768px) {
            .sidebar-widget {
                padding: 1.5rem;
            }
        }

        .sidebar-widget:hover {
            box-shadow: 0 8px 24px rgba(10, 37, 64, 0.08);
            border-color: #F97316;
        }

        .sidebar-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: #0A2540;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .sidebar-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sidebar-icon svg {
            width: 100%;
            height: 100%;
            stroke: #F97316;
            fill: none;
            stroke-width: 2;
        }

        /* Recent Posts */
        .recent-post {
            padding-bottom: 1.25rem;
            margin-bottom: 1.25rem;
            border-bottom: 1px solid #E8EEF5;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .recent-post:last-child {
            padding-bottom: 0;
            margin-bottom: 0;
            border-bottom: none;
        }

        .recent-post-link {
            color: #0A2540;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9375rem;
            line-height: 1.4;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .recent-post:hover .recent-post-link {
            color: #F97316;
        }

        .recent-post-date {
            font-size: 0.8125rem;
            color: #8B92A3;
        }

        /* CTA Widget */
        .cta-widget {
            background: linear-gradient(135deg, #0A2540 0%, #0D2F4C 100%);
            color: white;
            border-radius: 12px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .cta-widget::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-widget-content {
            position: relative;
            z-index: 1;
        }

        .cta-widget-title {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cta-widget-text {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.25rem;
            line-height: 1.5;
        }

        .cta-button {
            display: block;
            width: 100%;
            padding: 0.75rem 1.25rem;
            background: #F97316;
            color: white;
            text-align: center;
            font-weight: 700;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 0.9375rem;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: #EA580C;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
        }

        /* Bottom CTA Section */
        .bottom-cta {
            background: linear-gradient(135deg, #0A2540 0%, #0D2F4C 100%);
            color: white;
            text-align: center;
            border-radius: 12px;
            padding: 3rem 2rem;
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
        }

        .bottom-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .bottom-cta-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
            margin: 0 auto;
        }

        .bottom-cta-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        @media (max-width: 768px) {
            .bottom-cta-title {
                font-size: 1.5rem;
            }
        }

        .bottom-cta-text {
            font-size: 1.0625rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .bottom-cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: #F97316;
            color: white;
            font-weight: 700;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
        }

        .bottom-cta-button:hover {
            background: #EA580C;
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(249, 115, 22, 0.4);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        /* Divider */
        .blog-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #E8EEF5, transparent);
            margin: 3rem 0;
        }
   
        /* end blog details */


        /* blog */

        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }
        }

        @media (min-width: 1024px) {
            .blog-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 3rem;
            }
        }

        /* Blog Card */
        .blog-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #E8EEF5;
            display: flex;
            flex-direction: column;
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
            box-shadow: 0 2px 8px rgba(10, 37, 64, 0.06);
        }

        .blog-card:hover {
            box-shadow: 0 12px 32px rgba(10, 37, 64, 0.12);
            border-color: #F97316;
            transform: translateY(-8px);
        }

        .blog-card:nth-child(1) { animation-delay: 0.1s; }
        .blog-card:nth-child(2) { animation-delay: 0.2s; }
        .blog-card:nth-child(3) { animation-delay: 0.3s; }
        .blog-card:nth-child(4) { animation-delay: 0.4s; }
        .blog-card:nth-child(5) { animation-delay: 0.5s; }
        .blog-card:nth-child(6) { animation-delay: 0.6s; }
        .blog-card:nth-child(7) { animation-delay: 0.7s; }
        .blog-card:nth-child(8) { animation-delay: 0.8s; }
        .blog-card:nth-child(9) { animation-delay: 0.9s; }

        /* Blog Image */
        .blog-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #F5F7FA 0%, #E8EEF5 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @media (min-width: 768px) {
            .blog-image {
                height: 240px;
            }
        }

        .blog-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23D0D8E0" stroke-width="0.5"/></pattern></defs><rect width="400" height="300" fill="%23F5F7FA"/><rect width="400" height="300" fill="url(%23grid)"/></svg>');
            background-size: 40px 40px;
            opacity: 0.5;
        }

        .blog-image-content {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-image-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #0A2540, #0D2F4C);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 12px rgba(10, 37, 64, 0.15);
        }

        .blog-card:hover .blog-image-icon {
            background: linear-gradient(135deg, #F97316, #EA580C);
            transform: scale(1.1) rotate(5deg);
        }

        .blog-image-icon svg {
            width: 36px;
            height: 36px;
            stroke: white;
            fill: none;
            stroke-width: 1.5;
        }

        /* Blog Content */
        .blog-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        @media (max-width: 768px) {
            .blog-content {
                padding: 1.5rem;
            }
        }

        .blog-category {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            color: #F97316;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.75rem;
            opacity: 0;
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .blog-card:nth-child(1) .blog-category { animation-delay: 0.15s; }
        .blog-card:nth-child(2) .blog-category { animation-delay: 0.25s; }
        .blog-card:nth-child(3) .blog-category { animation-delay: 0.35s; }
        .blog-card:nth-child(4) .blog-category { animation-delay: 0.45s; }
        .blog-card:nth-child(5) .blog-category { animation-delay: 0.55s; }
        .blog-card:nth-child(6) .blog-category { animation-delay: 0.65s; }
        .blog-card:nth-child(7) .blog-category { animation-delay: 0.75s; }
        .blog-card:nth-child(8) .blog-category { animation-delay: 0.85s; }
        .blog-card:nth-child(9) .blog-category { animation-delay: 0.95s; }

        .blog-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0A2540;
            margin-bottom: 0.75rem;
            line-height: 1.3;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .blog-card:hover .blog-title {
            color: #F97316;
        }

        .blog-excerpt {
            font-size: 0.9375rem;
            color: #4B5563;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        @media (max-width: 768px) {
            .blog-excerpt {
                font-size: 0.875rem;
            }
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.8125rem;
            color: #8B92A3;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #E8EEF5;
        }

        .blog-meta-item {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        /* Read More Link */
        .blog-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            color: #F97316;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 0.9375rem;
        }

        .blog-link:hover {
            color: #EA580C;
            gap: 0.75rem;
        }

        .blog-link-arrow {
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .blog-link:hover .blog-link-arrow {
            transform: translateX(3px);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        /* Touch device optimizations */
        @media (hover: none) {
            .blog-card {
                box-shadow: 0 4px 12px rgba(10, 37, 64, 0.08);
            }

            .blog-card:active {
                transform: translateY(-4px);
                box-shadow: 0 8px 20px rgba(10, 37, 64, 0.1);
            }
        }

        /* end blog */