/* Contact Hero Section */
.contact-hero {
    background: var(--gradient-blue);
    color: white;
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb .current {
    opacity: 1;
    font-weight: 600;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Contact Info Section */
.contact-info {
    padding: 80px 0;
    background: var(--background-white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.info-card {
    background: var(--background-white);
    padding: 40px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(0, 87, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.info-card:hover .info-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.info-icon img {
    width: 30px;
    height: 30px;
    transition: var(--transition);
}

.info-card:hover .info-icon img {
    filter: brightness(0) invert(1);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-card p {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.info-card span {
    font-size: 14px;
    color: var(--text-light);
}

/* Contact Main Section */
.contact-main {
    padding: 100px 0;
    background: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-form-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    background: var(--background-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--background-light);
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    transition: var(--transition);
    background: var(--background-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Owner Section */
.owner-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.owner-card {
    background: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.owner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.owner-image {
    height: 250px;
    overflow: hidden;
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.owner-card:hover .owner-image img {
    transform: scale(1.05);
}

.owner-info {
    padding: 30px;
}

.owner-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.owner-info .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.owner-info .bio {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.owner-contact {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.contact-item img {
    width: 16px;
    height: 16px;
}

.owner-social {
    display: flex;
    gap: 10px;
}

.owner-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--background-light);
    border-radius: 50%;
    transition: var(--transition);
}

.owner-social .social-link:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.owner-social .social-link img {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.owner-social .social-link:hover img {
    filter: brightness(0) invert(1);
}

.quick-support {
    background: var(--background-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.quick-support h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.quick-support p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.support-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.support-btn.whatsapp {
    background: #25D366;
    color: white;
}

.support-btn.whatsapp:hover {
    background: transparent;
    border-color: #25D366;
    color: #25D366;
}

.support-btn.phone {
    background: var(--primary-color);
    color: white;
}

.support-btn.phone:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.support-btn img {
    width: 20px;
    height: 20px;
}

/* Office Location Section */
.office-location {
    padding: 100px 0;
    background: var(--background-white);
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 450px;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.office-info .info-card {
    background: var(--background-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: left;
}

.office-info .info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
}

.office-info .info-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

.info-item span {
    color: var(--text-light);
}

/* FAQ Section */
.contact-faq {
    padding: 100px 0;
    background: var(--background-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--background-white);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 150px 0 80px;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .contact-form-section h2 {
        font-size: 28px;
    }
    
    .owner-section {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .owner-image {
        height: 200px;
    }
    
    .owner-info {
        padding: 25px;
    }
    
    .quick-support {
        padding: 25px;
    }
    
    .support-buttons {
        flex-direction: column;
    }
    
    .office-info .info-card {
        padding: 25px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
}