﻿ body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }
        
        .breadcrumb-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 0;
        }
        
        .breadcrumb-bg h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .breadcrumbs-custom-path {
            list-style: none;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .breadcrumbs-custom-path li {
            color: rgba(255,255,255,0.8);
            margin: 0 5px;
        }
        
        .breadcrumbs-custom-path li a {
            color: white;
            text-decoration: none;
        }
        
        .contact-section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: #718096;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .contact-info-section {
            margin-bottom: 60px;
        }
        
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .contact-info-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid;
        }
        
        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .contact-info-card.phone { border-top-color: #48bb78; }
        .contact-info-card.email { border-top-color: #4299e1; }
        .contact-info-card.location { border-top-color: #ed8936; }
        .contact-info-card.hours { border-top-color: #9f7aea; }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }
        
        .contact-info-card.phone .contact-icon {
            background: linear-gradient(135deg, #48bb78, #38a169);
        }
        
        .contact-info-card.email .contact-icon {
            background: linear-gradient(135deg, #4299e1, #3182ce);
        }
        
        .contact-info-card.location .contact-icon {
            background: linear-gradient(135deg, #ed8936, #dd6b20);
        }
        
        .contact-info-card.hours .contact-icon {
            background: linear-gradient(135deg, #9f7aea, #805ad5);
        }
        
        .contact-info-card h5 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 15px;
        }
        
        .contact-info-card p {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        
        .contact-info-card a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }
        
        .contact-info-card a:hover {
            text-decoration: underline;
        }
        
        .contact-form-section {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 60px;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .form-header h4 {
            font-size: 2rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 10px;
        }
        
        .form-header p {
            color: #718096;
            font-size: 1.05rem;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 8px;
            display: block;
        }
        
        .form-label .required {
            color: #f56565;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        .form-control.textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .btn-submit {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 15px 50px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }
        
        .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        .alert {
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .alert i {
            font-size: 1.5rem;
        }
        
        .alert-success {
            background: #c6f6d5;
            color: #22543d;
            border: 1px solid #9ae6b4;
        }
        
        .alert-danger {
            background: #fed7d7;
            color: #742a2a;
            border: 1px solid #fc8181;
        }
        
        .map-section {
            background: #f7fafc;
            padding: 60px 0;
        }
        
        .map-section h3 {
            font-size: 2rem;
            text-align: center;
            color: #2d3748;
            margin-bottom: 40px;
        }
        
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 450px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .social-section {
            padding: 60px 0;
            text-align: center;
        }
        
        .social-section h3 {
            font-size: 2rem;
            color: #2d3748;
            margin-bottom: 20px;
        }
        
        .social-section p {
            color: #718096;
            margin-bottom: 30px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .social-link {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .social-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        .social-link.facebook { background: #3b5998; }
        .social-link.twitter { background: #1da1f2; }
        .social-link.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
        .social-link.linkedin { background: #0077b5; }
        .social-link.whatsapp { background: #25d366; }
        .social-link.youtube { background: #ff0000; }
        
        .faq-section {
            background: white;
            padding: 60px 0;
        }
        
        .faq-section h3 {
            font-size: 2rem;
            text-align: center;
            color: #2d3748;
            margin-bottom: 40px;
        }
        
        .faq-item {
            background: #f7fafc;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .faq-question i {
            color: #667eea;
        }
        
        .faq-answer {
            color: #4a5568;
            line-height: 1.7;
            padding-left: 30px;
        }
        
        @media (max-width: 768px) {
            .contact-form-section {
                padding: 30px 20px;
            }
            
            .breadcrumb-bg h2 {
                font-size: 2rem;
            }
            
            .section-title h3 {
                font-size: 2rem;
            }
        }