        :root {
            --primary-color: #3874c7;
            --secondary-color: #e53e3e;
            --accent-color: #f6ad55;
            --light-color: #f7fafc;
            --dark-color: #2d3748;
            --text-color: #4a5568;
            --border-radius: 8px;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        /* Selection Color */
        ::selection {
            background: var(--secondary-color);
            color: white;
        }
        
        ::-moz-selection {
            background: var(--secondary-color);
            color: white;
        }
        
        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loading-logo {
            max-width: 300px;
            margin-bottom: 2rem;
            animation: logoFloat 2s ease-in-out infinite;
            filter: brightness(1.5);
        }
        
        @keyframes logoFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .loading-bar {
            width: 300px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }
        
        .loading-progress {
            height: 100%;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            width: 0%;
            animation: loadingProgress 2s ease-out forwards;
        }
        
        @keyframes loadingProgress {
            to { width: 100%; }
        }
        
        /* Scroll Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--primary-color));
            z-index: 10001;
            transition: width 0.1s ease;
        }
        
        /* Custom Cursor */
        .cursor-dot {
            width: 8px;
            height: 8px;
            background: var(--secondary-color);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.15s ease;
            mix-blend-mode: difference;
            transform: translate(-50%, -50%);
        }
        
        .cursor-outline {
            width: 40px;
            height: 40px;
            border: 2px solid var(--secondary-color);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.15s ease;
            mix-blend-mode: difference;
            transform: translate(-50%, -50%);
        }
        
        .cursor-outline.hover {
            transform: translate(-50%, -50%) scale(1.5);
            background: rgba(229, 62, 62, 0.1);
        }
        
        
        
        /* Hero Section */
        .hero-container {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(54, 55, 54, 0.4) 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 2rem;
            opacity: 0;
            animation: heroFadeIn 1.5s ease 0.5s forwards;
        }
        
        @keyframes heroFadeIn {
            to {
                opacity: 1;
            }
        }
        
        .hero-logo {
            max-width: 350px;
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
            animation: logoReveal 1s ease 1s both;
        }
        
        @keyframes logoReveal {
            from {
                opacity: 0;
                transform: scale(0.8) rotateY(-30deg);
            }
            to {
                opacity: 1;
                transform: scale(1) rotateY(0deg);
            }
        }
        
        .yellowtail-regular {
            font-family: 'Yellowtail', cursive;
            font-size: 2.5rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            margin-top: 1rem;
            animation: taglineFade 1s ease 1.5s both;
        }
        
        @keyframes taglineFade {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .license-badge {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2d4a7c 100%);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            display: inline-block;
            margin-top: 1.5rem;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: badgePulse 2s ease 2s both;
            position: relative;
            overflow: hidden;
        }
        
        .license-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: badgeShine 3s infinite;
        }
        
        @keyframes badgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        @keyframes badgeShine {
            to { left: 100%; }
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: scrollBounce 2s infinite;
        }
        
        .scroll-indicator i {
            font-size: 2rem;
            color: white;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
        }
        
        @keyframes scrollBounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }
        
        /* Navigation */
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: white;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .sticky-nav.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        }
        
        .top-bar {
            padding: 0.5rem 0;
        }
        
        .menu {
            background: none;
        }
        
        .menu a {
            color: var(--primary-color);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            padding: 1rem 1.5rem;
            position: relative;
            transition: var(--transition);
            overflow: hidden;
        }
        
        .menu a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(229, 62, 62, 0.1), transparent);
            transition: var(--transition);
        }
        
        .menu a:hover::before {
            left: 100%;
        }
        
        .menu a:hover {
            color: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        .menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 50%;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            transition: var(--transition);
            transform: translateX(-50%);
        }
        
        .menu a:hover:after {
            width: 80%;
        }
        
        .title-bar {
            background-color: var(--primary-color);
        }
        
        /* Section Styling */
        section {
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            border-radius: 2px;
            animation: titleLineExpand 1s ease both;
        }
        
        @keyframes titleLineExpand {
            from { width: 0; }
            to { width: 100px; }
        }
        
        /* Stats Counter Section */
        .stats-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            color: white;
            padding: 4rem 0;
        }
        
        .stat-box {
            text-align: center;
            padding: 2rem;
            position: relative;
        }
        
        .stat-box::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background: rgba(255, 255, 255, 0.2);
        }
        
        .stat-box:last-child::after {
            display: none;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent-color);
            display: block;
            margin-bottom: 0.5rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .stat-label {
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* About Section */
        .about-section {
            background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
            position: relative;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(26,54,93,0.05)"/></svg>');
            opacity: 0.5;
            pointer-events: none;
        }
        
        .about-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(229, 62, 62, 0.05), transparent);
            transition: var(--transition);
        }
        
        .about-card:hover::before {
            left: 100%;
            transition: left 0.5s ease;
        }
        
        .about-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .about-card h3 {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .about-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            transition: var(--transition);
        }
        
        .about-card:hover h3::after {
            width: 100px;
        }
        
        .about-card ul {
            list-style: none;
            padding: 0;
        }
        
        .about-card ul li {
            padding: 0.5rem 0 0.5rem 2rem;
            position: relative;
            transition: var(--transition);
        }
        
        .about-card ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            transition: var(--transition);
        }
        
        .about-card ul li:hover {
            padding-left: 2.5rem;
            color: var(--primary-color);
        }
        
        .about-card ul li:hover::before {
            transform: scale(1.3) rotate(360deg);
        }
        
        .license-info {
            border-left: 4px solid var(--secondary-color);
            padding-left: 1.5rem;
            position: relative;
        }
        
        .license-info::before {
            content: '';
            position: absolute;
            left: -4px;
            top: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, var(--accent-color), var(--secondary-color));
            transition: height 0.5s ease;
        }
        
        .about-card:hover .license-info::before {
            height: 100%;
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .service-box {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
            height: 200px;
            cursor: pointer;
        }
        
        .service-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(229, 62, 62, 0.8) 100%);
            opacity: 0;
            transition: var(--transition);
            z-index: 1;
        }
        
        .service-box:hover::before {
            opacity: 1;
        }
        
        .service-box:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        }
        
        .service-content {
            position: relative;
            height: 100%;
        }
        
        .service-content img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .service-box:hover img {
            transform: scale(1.2) rotate(2deg);
            filter: brightness(0.8);
        }
        
        .service-content p {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, transparent, rgba(26, 54, 93, 0.95));
            color: white;
            margin: 0;
            padding: 2rem 1rem 1rem;
            font-weight: 700;
            font-size: 1.1rem;
            text-align: center;
            transition: var(--transition);
            z-index: 2;
            letter-spacing: 1px;
        }
        
        .service-box:hover p {
            background: linear-gradient(180deg, transparent, rgba(229, 62, 62, 0.95));
            padding: 2.5rem 1rem 1.5rem;
            font-size: 1.2rem;
        }
        
        .service-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            font-size: 4rem;
            color: white;
            z-index: 3;
            opacity: 0;
            transition: var(--transition);
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        }
        
        .service-box:hover .service-icon {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }
        
        /* Projects Section */
        .projects-section {
            background: linear-gradient(135deg, #3874c7 0%, #53668c 100%);
            color: white;
            position: relative;
        }
        
        .projects-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><path d="M0 0L60 60M60 0L0 60" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></svg>');
            opacity: 0.5;
            pointer-events: none;
        }
        
        .projects-section h2 {
            color: white;
        }
        
        .projects-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .video-circle {
            position: relative;
            width: 225px;
            height: 225px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
            cursor: pointer;
        }
        
        .video-circle::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--secondary-color), var(--accent-color), var(--primary-color));
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }
        
        .video-circle:hover::before {
            opacity: 1;
            animation: rotate 2s linear infinite;
        }
        
        @keyframes rotate {
            to { transform: rotate(360deg); }
        }
        
        .video-circle:hover {
            transform: scale(1.1) rotateZ(5deg);
            box-shadow: 0 25px 60px rgba(229, 62, 62, 0.4);
        }
        
        .video-circle video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .video-circle:hover video {
            transform: scale(1.1);
        }
        
        .video-circle h3 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9));
            color: white;
            margin: 0;
            padding: 1rem 0.5rem;
            text-align: center;
            font-size: 1rem;
            transition: var(--transition);
            transform: translateY(100%);
        }
        
        .video-circle:hover h3 {
            transform: translateY(0);
        }
        
        .view-projects-btn {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #c53030 100%);
            border: none;
            padding: 1rem 3rem;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 1px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            color: white;
            text-decoration: none;
            display: inline-block;
        }
        
        .view-projects-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
        }
        
        .view-projects-btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .view-projects-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(229, 62, 62, 0.6);
        }
        
        /* Testimonials Section */
        .testimonial-section {
            background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
            padding: 5rem 0;
        }
        
        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin: 1rem 0;
            transition: var(--transition);
            position: relative;
        }
        
        .testimonial-card::before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 3rem;
            color: var(--accent-color);
            opacity: 0.3;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            line-height: 1.8;
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .testimonial-rating {
            color: var(--accent-color);
            margin-top: 0.5rem;
        }
        
        /* Areas Served Section */
        .areas-section {
            background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
            position: relative;
        }
        
        .area-map {
            max-width: 100%;
            border-radius: var(--border-radius);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }
        
        .area-map:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        .area-list {
            list-style: none;
            padding: 0;
        }
        
        .area-list li {
            padding: 1rem;
            margin: 1rem 0;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .area-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
            transform: scaleY(0);
            transition: var(--transition);
        }
        
        .area-list li:hover::before {
            transform: scaleY(1);
        }
        
        .area-list li:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, white 0%, #fef5f5 100%);
        }
        
        /* Contact Section */
        .contact-section {
            position: relative;
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            color: white;
        }
        
        .contact-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 54, 93, 0.85);
            z-index: 1;
        }
        
        .contact-section .grid-container {
            position: relative;
            z-index: 2;
        }
        
        .contact-section h2 {
            color: white;
        }
        
        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }
        
        .contact-form:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }
        
        .contact-form label {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1.5rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--border-radius);
            background: rgba(255, 255, 255, 0.9);
            transition: var(--transition);
            font-family: 'Open Sans', sans-serif;
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            background: white;
            transform: scale(1.02);
            box-shadow: 0 5px 15px rgba(246, 173, 85, 0.3);
        }
        
        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #c53030 100%);
            color: white;
            border: none;
            padding: 1rem 3rem;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        .submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
        }
        
        .submit-btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .submit-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(229, 62, 62, 0.6);
        }
        
        .contact-info {
            padding: 2rem;
        }
        
        .contact-info h3 {
            color: white;
            margin-bottom: 2rem;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            padding: 1rem 0;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .contact-info-item::before {
            content: '';
            position: absolute;
            left: -100%;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }
        
        .contact-info-item:hover::before {
            left: 0;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-right: 1rem;
            transition: var(--transition);
        }
        
        .contact-info-item:hover i {
            transform: scale(1.2) rotate(10deg);
            color: var(--secondary-color);
        }
        
        .contact-info a {
            color: var(--accent-color);
            transition: var(--transition);
            text-decoration: none;
        }
        
        .contact-info a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons {
            margin-top: 2rem;
            display: flex;
            gap: 1rem;
        }
        
        .social-icons a {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.3rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .social-icons a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            transform: scale(0);
            transition: var(--transition);
            border-radius: 50%;
        }
        
        .social-icons a:hover::before {
            transform: scale(1);
        }
        
        .social-icons a i {
            position: relative;
            z-index: 1;
        }
        
        .social-icons a:hover {
            transform: translateY(-10px) rotate(360deg);
            box-shadow: 0 10px 25px rgba(229, 62, 62, 0.5);
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
            color: white;
            padding: 3rem 0 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.03)" stroke-width="2" fill="none"/></svg>');
            opacity: 0.5;
        }
        
        .footer-logo {
            max-width: 180px;
            margin-bottom: 1rem;
            transition: var(--transition);
            filter: brightness(1.5);
        }
        
        .footer-logo:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        .footer a {
            color: var(--accent-color);
            transition: var(--transition);
            text-decoration: none;
        }
        
        .footer a:hover {
            color: white;
        }
        
        .copyright {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, #c53030 100%);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1000;
            cursor: pointer;
            text-decoration: none;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: linear-gradient(135deg, #c53030 0%, var(--secondary-color) 100%);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 40px rgba(229, 62, 62, 0.6);
        }
        
        .back-to-top::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 3px solid var(--secondary-color);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
        
        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            backdrop-filter: blur(5px);
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: white;
            border-radius: var(--border-radius);
            max-width: 900px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 3rem;
            position: relative;
            transform: scale(0.8) rotateX(-10deg);
            transition: var(--transition);
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
        }
        
        .modal-overlay.active .modal-content {
            transform: scale(1) rotateX(0deg);
        }
        
        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--secondary-color);
            color: white;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-close:hover {
            background: var(--primary-color);
            transform: rotate(90deg) scale(1.1);
        }
        
        .modal-image {
            width: 100%;
            border-radius: var(--border-radius);
            margin-bottom: 1.5rem;
        }
        
        /* Responsive Adjustments */
        @media screen and (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .projects-container {
                gap: 1.5rem;
            }
            
            .video-circle {
                width: 250px;
                height: 250px;
            }
        }
        
        @media screen and (max-width: 768px) {
            .hero-logo {
                max-width: 280px;
            }
            
            .yellowtail-regular {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .stat-box::after {
                display: none;
            }
        }
        
        @media screen and (max-width: 640px) {
            .yellowtail-regular {
                font-size: 1.8rem;
            }
            
            section {
                padding: 3rem 0;
            }
            
            .hero-logo {
                max-width: 250px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .video-circle {
                width: 220px;
                height: 220px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .cursor-dot,
            .cursor-outline {
                display: none;
            }
            
            .modal-content {
                padding: 2rem 1rem;
            }
            
            .back-to-top {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
        }

    /* Areas Section Styles */
    .areas-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
    }

    .areas-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,140,0,0.05) 0%, transparent 70%);
        animation: rotate 30s linear infinite;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .section-subtitle {
        text-align: center;
        font-size: 1.3rem;
        color: #666;
        margin-bottom: 4rem;
        font-weight: 300;
    }

    /* County Cards Grid */
    .counties-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
        margin-bottom: 4rem;
        position: relative;
        z-index: 1;
    }

    /* 3D Flip Cards - FIXED */
    .county-card {
        perspective: 1000px;
        height: 400px;
    }

    .county-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.8s;
        transform-style: preserve-3d;
    }

    .county-card:hover .county-card-inner {
        transform: rotateY(180deg);
    }

    .county-card-front,
    .county-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        overflow: hidden;
    }

    .county-card-front {
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        position: absolute;
        z-index: 2;
        transform: rotateY(0deg);
    }

    .county-card-back {
        background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
        transform: rotateY(180deg);
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
        color: white;
        z-index: 1;
    }

    .county-icon {
        font-size: 4rem;
        color: var(--secondary-color);
        margin-bottom: 1rem;
        animation: bounce 2s infinite;
    }

    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
    }

    .county-card-front h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: var(--primary-color);
        text-align: center;
        z-index: 2;
        position: relative;
    }

    .county-image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.1;
        transition: opacity 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .county-card:hover .county-image-overlay {
        opacity: 0.2;
    }

    .icon-feature {
        font-size: 10rem;
        color: white;
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
    }

    .county-tagline {
        font-size: 1.1rem;
        color: #666;
        text-align: center;
        z-index: 2;
        margin-top: 0.5rem;
        position: relative;
    }

    .hover-indicator {
        margin-top: 2rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--secondary-color);
        font-weight: 600;
        animation: pulse 2s infinite;
        z-index: 2;
        position: relative;
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
    }

    .county-card-back h4 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        border-bottom: 3px solid var(--secondary-color);
        padding-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .county-details {
        list-style: none;
        margin: 0;
        padding: 0;
        flex-grow: 1;
    }

    .county-details li {
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        gap: 0.8rem;
        font-size: 1rem;
        transition: transform 0.3s, color 0.3s;
    }

    .county-details li:hover {
        transform: translateX(10px);
        color: var(--secondary-color);
    }

    .county-details i {
        color: var(--secondary-color);
        font-size: 0.9rem;
    }

    .county-cta {
        margin-top: 1.5rem;
        padding: 1.2rem;
        background: var(--secondary-color);
        border-radius: 10px;
        text-align: center;
        font-size: 1.3rem;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        transition: transform 0.3s;
    }

    .county-cta:hover {
        transform: scale(1.05);
    }

    /* Interactive Map - FIXED */
    .interactive-map-container {
        margin: 4rem 0;
        padding: 2rem;
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }

    .map-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 2rem;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .map-title i {
        color: var(--secondary-color);
        animation: spin 10s linear infinite;
    }

    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .map-wrapper {
        position: relative;
        height: 500px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .interactive-map {
        width: 100%;
        height: 100%;
        border: none;
        filter: grayscale(20%);
        transition: filter 0.3s;
    }

    .interactive-map:hover {
        filter: grayscale(0%);
    }

    .map-markers {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        z-index: 1;
    }

    .map-marker {
        position: absolute;
        font-size: 2rem;
        color: var(--secondary-color);
        animation: pulse-marker 2s infinite;
        filter: drop-shadow(0 0 10px rgba(255,140,0,0.8));
    }

    .marker-1 { 
        bottom: 25%; 
        left: 30%; 
        animation-delay: 0s; 
    }
    
    .marker-2 { 
        top: 35%; 
        left: 45%; 
        animation-delay: 0.5s; 
    }
    
    .marker-3 { 
        top: 40%; 
        right: 25%; 
        animation-delay: 1s; 
    }

    @keyframes pulse-marker {
        0%, 100% {
            transform: scale(1) translateY(0);
            opacity: 1;
        }
        50% {
            transform: scale(1.2) translateY(-10px);
            opacity: 0.8;
        }
    }

    /* Stats Section */
    .service-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin: 4rem 0;
    }

    .stat-item {
        background: white;
        padding: 2.5rem 1.5rem;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        position: relative;
        overflow: hidden;
    }

    .stat-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,140,0,0.2), transparent);
        transition: left 0.5s;
    }

    .stat-item:hover::before {
        left: 100%;
    }

    .stat-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(255,140,0,0.3);
    }

    .stat-icon {
        font-size: 3rem;
        color: var(--secondary-color);
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 3.5rem;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
        color: #666;
        font-weight: 600;
    }

    /* CTA Section */
    .areas-cta {
        text-align: center;
        padding: 3rem;
        background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
        border-radius: 20px;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .areas-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,140,0,0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

    .areas-cta h3 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
    }

    .areas-cta p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        position: relative;
        z-index: 1;
    }

    .pulse-button {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        padding: 1.2rem 3rem;
        background: var(--secondary-color);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: bold;
        transition: all 0.3s;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .pulse-button::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .pulse-button:hover::before {
        width: 300px;
        height: 300px;
    }

    .pulse-button:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(255,140,0,0.4);
    }

    .pulse-button span,
    .pulse-button i {
        position: relative;
        z-index: 1;
    }

    .pulse-button i {
        transition: transform 0.3s;
    }

    .pulse-button:hover i {
        transform: translateX(10px);
    }

    /* Counter Animation */
    @keyframes countUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive Design */
    @media screen and (max-width: 768px) {
        .counties-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .county-card {
            height: 350px;
        }

        .map-wrapper {
            height: 400px;
        }

        .service-stats {
            grid-template-columns: repeat(2, 1fr);
        }

        .areas-cta h3 {
            font-size: 1.8rem;
        }

        .section-title {
            font-size: 2rem;
        }
    }

    @media screen and (max-width: 480px) {
        .service-stats {
            grid-template-columns: 1fr;
        }

        .stat-number {
            font-size: 2.5rem;
        }
    }