/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* Contact Hero Section */
.contact-hero-section {
    background: #01123C;
    padding: 10rem 0 6rem 0;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}


.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Contact Content Section */
.contact-content-section {
    background: #01123C;
    padding: 8rem 0;
    min-height: calc(100vh - 300px);
}

/* Left Side - Content */
.contact-content-wrapper {
    color: #fff;
    padding-right: 2rem;
}

.contact-content-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-content-text-large {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 700;

}

.contact-content-text-small {
    font-size: 1.25rem;
    color: #2194F3;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Right Side - Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(33, 148, 243, 0.15);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: var(--grey-400);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 148, 243, 0.3);
    color: #fff;
}

.btn-submit:active {
    transform: translateY(0);
}

/* =============================================
   BUTTON STYLES (from support.css)
   ============================================= */
.btn-learn-more {
    display: inline-flex;
    align-items: center;
    background: var(--primary-blue);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-learn-more:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(33, 148, 243, 0.3);
}

.btn-learn-more i {
    transition: transform 0.2s ease;
}

.btn-learn-more:hover i {
    transform: translateX(3px);
}

/* =============================================
   CONTACT METHODS SECTION
   ============================================= */
.contact-methods-section {
    background: #063090;
    padding: 8rem 0;
}

.contact-method-card {
    text-align: center;
    padding: 2rem 1rem;
}

.contact-method-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-method-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-method-text {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

@media (max-width: 991px) {
    .contact-hero-section {
        padding: 7rem 0 4rem 0;
        min-height: 250px;
    }
    
    .contact-hero-title {
        font-size: 3rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .contact-content-section {
        padding: 5rem 0;
    }
    
    .contact-content-wrapper {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .contact-content-title {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    /* Contact Methods Responsive - Tablet */
    .contact-methods-section {
        padding: 6rem 0;
    }
    
    .contact-method-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 767px) {
    .contact-hero-section {
        padding: 5rem 0 3rem 0;
        min-height: 200px;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-content-section {
        padding: 4rem 0;
    }
    
    .contact-content-wrapper {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .contact-content-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-content-text-large {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-content-text-small {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    /* Contact Methods Responsive */
    .contact-methods-section {
        padding: 4rem 0;
    }
    
    .contact-method-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-method-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .contact-method-title {
        font-size: 1.25rem;
    }
    
    .contact-method-text {
        font-size: 1rem;
    }
}

/* =============================================
   JUST COCONUT CASE STUDY SECTION
   ============================================= */
.justcoconut-section {
    background: #F6F6F6;
    padding: 8rem 0;
}

.justcoconut-content-image {
    text-align: center;
}

.justcoconut-content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.justcoconut-right-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.justcoconut-text {
    font-family: 'Caveat', cursive;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
}

.justcoconut-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0;
    flex-shrink: 0;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.justcoconut-info {
    display: flex;
    flex-direction: column;
}

.justcoconut-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #000000;
    line-height: 1.5;
}

.justcoconut-position {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #000000;
    line-height: 1.5;
}

.justcoconut-logo {
    padding: 0;
}

.logo-img {
    width: 100px;
    height: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Just Coconut Responsive */
@media (max-width: 991px) {
    .justcoconut-section {
        padding: 6rem 0;
    }
    
    .justcoconut-right-content {
        margin-top: 2rem;
        padding-left: 0 !important;
    }
    
    .justcoconut-text {
        font-size: 24px;
        text-align: center;
    }
    
    .justcoconut-logo .logo-img {
        width: 80px;
    }
}

@media (max-width: 767px) {
    .justcoconut-section {
        padding: 4rem 0;
    }
    
    .justcoconut-text {
        font-size: 22px;
    }
    
    .justcoconut-avatar {
        width: 50px;
        height: 50px;
    }
}

