@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #f05a27;
    --primary-hover: #d94d1e;
    --text-dark: #222222;
    --text-light: #666666;
    --bg-light: #ffffff;
    --bg-soft: #f8f9fa;
    --border-color: #e9ecef;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

/* Hero Section */
.contact-page-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-page-title {
    font-weight: 700;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.contact-page-tagline {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 400;
}

.contact-page-hero .breadcrumb-item a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

.contact-page-hero .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.contact-page-hero .breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-page-hero .breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #888888;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-desc {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(240, 90, 39, 0.2);
}

.contact-card .icon-wrap {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(240, 90, 39, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: var(--transition);
}

.contact-card:hover .icon-wrap {
    background: var(--primary-color);
    color: #fff;
}

.contact-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-card p a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card p a:hover {
    color: var(--primary-color);
}

/* Social Icons */
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--text-dark);
    margin-right: 10px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.form-control.floating-input {
    border: none;
    border-bottom: 2px solid var(--border-color);
    border-radius: 0;
    padding: 12px 0;
    font-size: 1rem;
    background: transparent;
    box-shadow: none;
    transition: var(--transition);
}

.form-control.floating-input:focus {
    border-bottom-color: var(--primary-color);
    box-shadow: none;
}

.floating-label {
    position: absolute;
    top: 12px;
    left: 0;
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition);
    font-size: 1rem;
}

.form-control.floating-input:focus~.floating-label,
.form-control.floating-input:not(:placeholder-shown)~.floating-label,
.form-control.floating-input.has-value~.floating-label {
    top: -12px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

/* Submits */
.btn-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(240, 90, 39, 0.3);
}

.btn-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 90, 39, 0.4);
}

/* Map Section */
.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    line-height: 0;
}

/* FAQ Section */
.bg-light-soft {
    background-color: var(--bg-soft);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-item.active .faq-header h5 {
    color: var(--primary-color);
}

.toggle-icon {
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-body {
    display: none;
    padding: 0 24px 24px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 991.98px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 30px 20px;
    }
}

@media (max-width: 767.98px) {
    .contact-page-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
}