 /* Enhanced Modern Styling */
        :root {
            --accent-primary: #f0543a;
            --accent-primary-dark: #d4442d;
            --accent-secondary: #27ae60;
            --color-ink: #0f172a;
            --color-muted: #64748b;
            --surface-main: #ffffff;
            --surface-alt: #f8fafc;
            --surface-card: #ffffff;
            --border-color: #e2e8f0;
            --focus-ring: 0 0 0 4px rgb(240 84 58 / 0.12);
            --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --gradient-primary: linear-gradient(135deg, #f0543a 0%, #ff6b47 100%);
            --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-hero: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 400ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
        }

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

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

        body {
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            color: var(--color-ink);
            background: linear-gradient(180deg, var(--surface-main) 0%, var(--surface-alt) 100%);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Enhanced Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.6);
            transition: all var(--transition-smooth);
            padding: 15px 0;
        }

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

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            transition: transform var(--transition-fast);
        }

        .brand:hover {
            transform: scale(1.02);
        }

        .brand img {
            width: 44px;
            height: 44px;
            border-radius: 12px;
        }

        .brand h1 {
            font-size: 1.5rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .links {
            display: none;
            gap: 2rem;
            align-items: center;
        }

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

        .links a {
            font-weight: 600;
            position: relative;
            padding: 0.5rem 0;
            transition: all var(--transition-fast);
        }

        .links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width var(--transition-smooth);
        }

        .links a:hover::after {
            width: 100%;
        }

        .cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 12px;
            background: var(--gradient-primary);
            color: white;
            font-weight: 700;
            text-decoration: none;
            box-shadow: var(--shadow-md);
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
        }

        .cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .desktop-cta {
            display: none;
        }

        @media (min-width: 1025px) {
            .desktop-cta {
                display: inline-flex;
            }
        }

        .menu-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

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

        .menu-toggle span {
            width: 26px;
            height: 3px;
            background: var(--color-ink);
            border-radius: 6px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .mobile-drawer {
            display: none;
            position: fixed;
            top: 74px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: saturate(180%) blur(20px);
            border-top: 1px solid var(--border-color);
            box-shadow: var(--shadow-xl);
        }

        .mobile-drawer.open {
            display: block;
        }

        .mobile-drawer a {
            display: block;
            padding: 1rem;
            font-weight: 600;
            border-bottom: 1px solid var(--border-color);
            transition: background-color var(--transition-fast);
        }

        .mobile-drawer a:hover {
            background-color: var(--surface-alt);
        }

        /* Hero Section with Enhanced Visual Appeal */
        .service-hero {
            padding: 8rem 1rem 4rem;
            background: var(--gradient-hero);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .service-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('img/n2.jpg');
            opacity: 0.3;
            background-repeat: no-repeat;
            background-size: cover;
        }

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

        .breadcrumb {
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.7);
            transition: color var(--transition-fast);
        }

        .breadcrumb a:hover {
            color: white;
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
        }

        .hero-description {
            font-size: 1.25rem;
            opacity: 0.9;
            font-weight: 400;
            line-height: 1.6;
        }

        /* Modern Content Layout */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .service-content {
            padding: 4rem 0;
        }

        .service-content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

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

        .service-details {
            position: relative;
        }

        .service-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 24px;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-xl);
            transition: transform var(--transition-smooth);
        }

        .service-image:hover {
            transform: scale(1.02);
        }

        .service-details h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .service-details h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin: 2rem 0 1rem;
            color: var(--color-ink);
        }

        .service-details p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--color-muted);
            margin-bottom: 1.5rem;
        }

        .service-details ul {
            list-style: none;
            padding: 0;
            display: grid;
            gap: 1rem;
            margin: 2rem 0;
        }

        .service-details li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            transition: all var(--transition-fast);
        }

        .service-details li:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .service-details li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            font-weight: bold;
            font-size: 0.9rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* Enhanced Sidebar */
        .service-sidebar {
            background: white;
            border-radius: 24px;
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
            position: sticky;
            top: 6rem;
            height: fit-content;
        }

        .service-sidebar h4 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--color-ink);
        }

        .service-sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
            display: grid;
            gap: 0.75rem;
        }

        .service-sidebar li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 600;
            color: var(--color-ink);
            padding: 0.5rem 0;
        }

        .icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .icon.accent {
            background: linear-gradient(135deg, var(--accent-primary), #ff6b47);
            color: white;
        }

        /* Modern CTA Section */
        .final-cta-section {
            background: var(--gradient-hero);
            color: white;
            text-align: center;
            padding: 5rem 1rem;
            position: relative;
            overflow: hidden;
        }

        .final-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #f0543a;
        }

        .final-cta-section .container {
            position: relative;
            z-index: 2;
        }

        .final-cta-section h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .final-cta-section p {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .final-cta-section .cta {
            font-size: 1.1rem;
            padding: 1rem 2rem;
            background: white;
            color: var(--accent-primary);
        }

        .final-cta-section .cta:hover {
            background: var(--surface-alt);
        }

        /* Enhanced Footer */
        .footer {
            background: var(--color-ink);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-col h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .footer-col p {
            color: var(--color-muted);
            line-height: 1.6;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: var(--color-muted);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

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

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all var(--transition-fast);
        }

        .social-links a:hover {
            background: var(--accent-primary);
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            color: var(--color-muted);
            font-size: 0.9rem;
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        /* Responsive Design */
        @media (max-width: 1000px) {
            .service-sidebar {
                position: static;
                margin-top: 2rem;
            }
        }

        @media (max-width: 768px) {
            .service-hero {
                padding: 6rem 1rem 3rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .service-details h2 {
                font-size: 2rem;
            }
            
            .final-cta-section h2 {
                font-size: 2.25rem;
            }
        }