/* Hero Section */
.hero {
    background: url('/resources/BannerBC.png') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'TNR Regular', serif;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ab8162, #6e5529);
    border-radius: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-container {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
    max-width: 1100px;
    margin: 0 auto;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ab8162, #6e5529);
}

.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-hero h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.contact-hero h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ab8162, #6e5529);
    border-radius: 2px;
}

.contact-hero p {
    color: #666;
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.contact-showcase {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.main-contact-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.main-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ab8162, #6e5529);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.card-header i {
    font-size: 2.5rem;
    color: #ab8162;
    background: linear-gradient(135deg, #ab8162, #6e5529);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(171, 129, 98, 0.3);
}

.card-header h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.card-body p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.detail-item i {
    font-size: 1.5rem;
    color: #ab8162;
    margin-top: 0.25rem;
    min-width: 20px;
}

.detail-item div {
    flex: 1;
}

.detail-item strong {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.detail-item span {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.social-detail {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid #1877f2;
}

.social-detail i {
    color: #1877f2;
}

.social-link-text {
    color: #1877f2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.social-link-text:hover {
    color: #166fe5;
    text-decoration: underline;
}

.social-link-text i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.location-link {
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.location-link:hover {
    color: #218838;
    text-decoration: underline;
}

.location-link i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.social-connect-card {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
    border-radius: 25px;
    padding: 3rem;
    color: white;
    box-shadow: 0 20px 40px rgba(24, 119, 242, 0.3);
    position: relative;
    overflow: hidden;
}

.social-connect-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.social-connect-card .card-header i {
    background: white;
    color: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.social-connect-card .card-body p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.social-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-item {
    width: 100%;
}

.social-platform-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.social-platform-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.social-platform-card .platform-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1877f2;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.social-platform-card .platform-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.social-platform-card .platform-info p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255,255,255,0.8);
}

.social-platform-card .social-link {
    margin-left: auto;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.social-platform-card .social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.social-cta {
    text-align: center;
}

.social-cta-btn {
    background: white !important;
    color: #1877f2 !important;
    border: none !important;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.social-cta-btn:hover {
    background: #f8f9fa !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.info-item {
    margin-bottom: 2.5rem;
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.info-item i {
    font-size: 2rem;
    color: #ab8162;
    margin-bottom: 1rem;
}

.info-item h4 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
}

.info-item h4::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ab8162, #6e5529);
    border-radius: 1px;
}

.info-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.contact-form {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ab8162, #6e5529);
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ab8162, #6e5529);
    border-radius: 1px;
}

.contact-form .btn-primary {
    width: auto;
    min-width: 200px;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ab8162;
    background: white;
    box-shadow: 0 0 0 3px rgba(171, 129, 98, 0.1);
    transform: translateY(-2px);
}

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

.btn-primary {
    background: linear-gradient(135deg, #ab8162 0%, #6e5529 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(171, 129, 98, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 4rem 1.5rem;
    }

    .contact-showcase {
        max-width: 100%;
    }

    .main-contact-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem 2.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-section::before {
        width: 50px;
        height: 3px;
    }

    .contact-hero {
        margin-bottom: 1.5rem;
    }

    .contact-hero h2 {
        font-size: 1.4rem;
    }

    .contact-hero h2::after {
        width: 40px;
        height: 2px;
        bottom: -6px;
    }

    .main-contact-card {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .main-contact-card::before {
        height: 4px;
    }

    .card-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .card-header i {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .card-header h3 {
        font-size: 1.15rem;
    }

    .card-body p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }

    .contact-details {
        gap: 0.625rem;
    }

    .detail-item {
        padding: 0.875rem;
        gap: 0.625rem;
        border-radius: 10px;
    }

    .detail-item i {
        font-size: 1rem;
        min-width: 16px;
    }

    .detail-item strong {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }

    .detail-item span {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .location-link,
    .social-link-text {
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }

    .social-detail {
        border-left-width: 3px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0.75rem 1.5rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.8rem;
    }

    .contact-section {
        padding: 1.5rem 0.75rem;
    }

    .contact-hero {
        margin-bottom: 1rem;
    }

    .contact-hero h2 {
        font-size: 1.2rem;
    }

    .main-contact-card {
        padding: 1rem;
        border-radius: 10px;
    }

    .card-header {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .card-header i {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .card-header h3 {
        font-size: 1rem;
    }

    .card-body p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .contact-details {
        gap: 0.5rem;
    }

    .detail-item {
        padding: 0.75rem;
        gap: 0.5rem;
        border-radius: 8px;
    }

    .detail-item i {
        font-size: 0.9rem;
    }

    .detail-item strong {
        font-size: 0.75rem;
    }

    .detail-item span {
        font-size: 0.75rem;
    }

    .location-link,
    .social-link-text {
        font-size: 0.7rem;
    }
}
