:root {
            --navy: #0A1A35;
            --navy-light: #1A2A48;
            --silver: #E8E8E8;
            --silver-dark: #D1D1D1;
            --white: #FFFFFF;
            --accent: #3A506B;
            --gold: #C6A972;
            --success: #28a745;
            --error: #dc3545;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: #2C2C2C;
            background-color: #FFFFFF;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Page Header - Updated to match catalog design */
        .page-header {
            background: linear-gradient(rgba(10, 26, 53, 0.9), rgba(10, 26, 53, 0.9)), url('https://images.unsplash.com/photo-1584622781564-1d987f7333c1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1728&q=80') no-repeat center center/cover;
            padding: 120px 0 80px;
            text-align: center;
            color: var(--white);
            position: relative;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
            opacity: 0.9;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
            position: relative;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            opacity: 0.9;
            position: relative;
        }
        
        .breadcrumb a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .breadcrumb a:hover {
            color: var(--gold);
        }
        
        .breadcrumb span {
            color: var(--gold);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 100px 0;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: start;
        }
        
        /* Contact Info */
        .contact-info h2 {
            font-size: 2.4rem;
            color: var(--navy);
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .contact-info > p {
            color: #5A5A5A;
            margin-bottom: 40px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .contact-details {
            margin-bottom: 40px;
        }
        
        .contact-item-c {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 12px;
            background: var(--white);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .contact-item-c:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--navy);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--gold);
            font-size: 1.4rem;
            flex-shrink: 0;
        }
        
        .contact-text h4 {
            font-size: 1.2rem;
            color: var(--navy);
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .contact-text p {
            color: #5A5A5A;
            margin-bottom: 0;
            line-height: 1.6;
        }
        
        /* Contact Form */
        .contact-form-container {
            background: var(--white);
            padding: 40px;
            border-radius: 16px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        
        .contact-form-container:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: var(--gold);
        }
        
        .contact-form-container h3 {
            font-size: 1.8rem;
            color: var(--navy);
            margin-bottom: 30px;
            font-weight: 600;
        }
        
        .form-group {
            margin-bottom: 24px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--navy);
            font-size: 1rem;
        }
        
        .form-control {
            width: 100%;
            padding: 16px 18px;
            border: 1px solid var(--silver-dark);
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
            background: #f9f9f9;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(198, 169, 114, 0.2);
            background: var(--white);
        }
        
        textarea.form-control {
            min-height: 140px;
            resize: vertical;
        }
        
        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 18px center;
            background-size: 16px;
        }
        
        .btn {
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: var(--transition);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
            outline: none;
        }
        
        .btn-primary {
            background-color: var(--navy);
            color: var(--white);
            width: 100%;
            justify-content: center;
        }
        
        .btn-primary:hover {
            background-color: var(--gold);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        /* Map Section */
        .map-section {
            padding: 0 0 100px;
        }
        
        .map-container {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 450px;
            position: relative;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .map-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: var(--white);
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            font-size: 0.9rem;
            color: var(--navy);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        /* Business Hours */
        .hours-section {
            padding: 80px 0;
            background: #f9f9f9;
        }
        
        .hours-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hours-container h2 {
            font-size: 2.2rem;
            color: var(--navy);
            margin-bottom: 50px;
            text-align: center;
            font-weight: 700;
        }
        
        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
        }
        
        .hour-card {
            background: var(--white);
            padding: 30px 25px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }
        
        .hour-card:hover {
            transform: translateY(-5px);
        }
        
        .hour-icon {
            width: 60px;
            height: 60px;
            background: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--gold);
            font-size: 1.4rem;
        }
        
        .hour-card h4 {
            color: var(--navy);
            margin-bottom: 12px;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .hour-card p {
            color: #5A5A5A;
            font-size: 1rem;
        }
        
        /* Responsive Design - Improved mobile alignment */
        @media (max-width: 1024px) {
            .contact-grid {
                gap: 40px;
            }
            
            .page-header h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 900px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .contact-info {
                text-align: center;
            }
            
            .contact-item-c {
                flex-direction: column;
                text-align: left;
                padding: 25px;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .page-header {
                padding: 100px 0 60px;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .contact-section {
                padding: 80px 0;
            }
            
            .contact-form-container {
                padding: 30px 25px;
            }
            
            .contact-info h2 {
                font-size: 2rem;
            }
            
            .hours-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .map-container {
                height: 350px;
            }
            
            /* Improved mobile alignment for contact items */
            .contact-item-c {
                padding: 20px;
                text-align: left;
                flex-direction: row;
            }
            
            .contact-icon {
                margin-right: 15px;
                margin-bottom: 0;
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .contact-text h4 {
                font-size: 1.1rem;
            }
            
            .contact-text p {
                font-size: 0.95rem;
            }
        }
        
        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .contact-item-c {
                padding: 15px;
                flex-direction: column;
                /* text-align: center; */
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .contact-form-container {
                padding: 25px 20px;
            }
            
            .hours-grid {
                grid-template-columns: 1fr;
            }
            
            .hour-card {
                padding: 25px 20px;
            }
            
            .map-overlay {
                bottom: 10px;
                left: 10px;
                right: 10px;
                text-align: center;
                font-size: 0.8rem;
                padding: 10px 15px;
            }
            
            .breadcrumb {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .contact-item-c {
                padding: 15px 12px;
            }
            
            .contact-icon {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .contact-text h4 {
                font-size: 1rem;
            }
            
            .contact-text p {
                font-size: 0.9rem;
            }
            
            .form-control {
                padding: 14px 16px;
            }
            
            .btn {
                padding: 14px 24px;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 {
            animation-delay: 0.2s;
        }
        
        .delay-2 {
            animation-delay: 0.4s;
        }
        
        .delay-3 {
            animation-delay: 0.6s;
        }