
        /* Contact Page Specific Styles */
        .contact-hero {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(247, 147, 30, 0.95) 100%);
            padding: 80px 0;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .contact-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
            animation: shimmer 15s infinite linear;
        }
        
        @keyframes shimmer {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .contact-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            position: relative;
        }
        
        .contact-hero p {
            font-size: 20px;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            height: 100%;
        }
        
        .contact-card h3 {
            color: var(--dark);
            margin-bottom: 25px;
            font-size: 24px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            min-width: 55px;
            height: 55px;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            color: var(--primary);
            font-size: 22px;
            flex-shrink: 0;
        }
        
        .contact-text h4 {
            color: var(--dark);
            margin-bottom: 5px;
            font-size: 18px;
            font-weight: 600;
        }
        
        .contact-text p, .contact-text a {
            color: #666;
            text-decoration: none;
            font-size: 15px;
        }
        
        .contact-text a:hover {
            color: var(--primary);
        }
        
        .quick-contact {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 25px;
        }
        
        .quick-contact-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .whatsapp-btn {
            background: #25D366;
            color: white;
        }
        
        .whatsapp-btn:hover {
            background: #20BD5A;
            transform: translateY(-2px);
            color: white;
        }
        
        .call-btn {
            background: var(--primary);
            color: white;
        }
        
        .call-btn:hover {
            background: #e55a2b;
            transform: translateY(-2px);
            color: white;
        }
        
        .contact-form-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }
        
        .contact-form-card h3 {
            color: var(--dark);
            margin-bottom: 25px;
            font-size: 24px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            color: var(--dark);
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 15px;
        }
        
        .form-label .required {
            color: var(--primary);
        }
        
        .form-control {
            background: #fafafa;
            border: 2px solid #eee;
            color: #333;
            padding: 14px 18px;
            border-radius: 12px;
            transition: all 0.3s ease;
            font-size: 15px;
        }
        
        .form-control:focus {
            background: white;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
            color: #333;
        }
        
        .form-control::placeholder {
            color: #999;
        }
        
        textarea.form-control {
            min-height: 140px;
            resize: vertical;
        }
        
        .btn-submit {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            border: none;
            padding: 16px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 50px;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
            width: 100%;
        }
        
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
            color: white;
        }
        
        .alert {
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 25px;
            border: none;
        }
        
        .alert-success {
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
        }
        
        .alert-danger {
            background: rgba(220, 53, 69, 0.1);
            color: #dc3545;
        }
        
        .hours-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin: 60px 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            text-align: center;
        }
        
        .hours-section h3 {
            color: var(--dark);
            margin-bottom: 30px;
            font-size: 28px;
        }
        
        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .hours-item {
            padding: 20px;
            background: #fafafa;
            border-radius: 12px;
        }
        
        .hours-item strong {
            display: block;
            color: var(--primary);
            margin-bottom: 8px;
            font-size: 16px;
        }
        
        .hours-item p {
            color: #666;
            margin-bottom: 0;
            font-size: 15px;
        }
        
        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 36px;
            }
            .quick-contact {
                flex-direction: column;
            }
        }
    