/* Consultation Page Styling */

/* Base container width - match site standard */
.container {
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

/* Main content area - prevent stretching */
main {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

/* Hero Section */
.consultation-hero {
    background: linear-gradient(135deg, #1a3e45 0%, #2d5a63 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.consultation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 Q300,10 600,60 T1200,60 L1200,120 L0,120 Z" fill="rgba(196,147,63,0.1)"></path></svg>');
    background-repeat: repeat-x;
    background-position: bottom;
}

.consultation-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.consultation-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: -1px;
}

.consultation-hero .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #c4933f;
    font-weight: 300;
}

.hero-video-container {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.hero-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Content Sections */
.content-section {
    padding: 60px 20px;
    background: white;
}

.content-section.alternate {
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    color: #1a3e45;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #c4933f;
}

/* Unique Points Grid */
.unique-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.point-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.point-card i {
    font-size: 2.5rem;
    color: #c4933f;
    margin-bottom: 15px;
}

.point-card h3 {
    font-size: 1.3rem;
    color: #1a3e45;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Who Is This For Section */
.who-for-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 40px auto 0;
}

.who-for-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.who-for-list li:last-child {
    border-bottom: none;
}

.who-for-list i {
    color: #c4933f;
    margin-right: 15px;
    font-size: 1.3rem;
}

/* What You Get Section */
.deliverables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.deliverable-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #c4933f;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.deliverable-item i {
    font-size: 2rem;
    color: #c4933f;
    margin-bottom: 15px;
    display: block;
}

.deliverable-item h4 {
    color: #1a3e45;
    font-weight: 600;
    margin-bottom: 10px;
}

.deliverable-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: #c4933f;
    box-shadow: 0 10px 30px rgba(196, 147, 63, 0.2);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #c4933f;
    background: linear-gradient(135deg, rgba(196, 147, 63, 0.05), transparent);
}

.pricing-card i {
    font-size: 2.5rem;
    color: #c4933f;
    margin-bottom: 15px;
}

.pricing-card h3 {
    font-size: 1.4rem;
    color: #1a3e45;
    margin-bottom: 10px;
    font-weight: 600;
}

.pricing-price {
    font-size: 2rem;
    color: #c4933f;
    font-weight: 700;
    margin: 20px 0;
}

.pricing-duration {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 20px;
}

.pricing-features {
    text-align: left;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-features li {
    list-style: none;
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '✓ ';
    color: #c4933f;
    font-weight: bold;
    margin-right: 8px;
}

/* Sticky Form */
.sticky-form-container {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    padding: 25px;
    z-index: 999;
    max-height: 85vh;
    overflow-y: auto;
    display: block;
}

@media (max-width: 1400px) {
    .sticky-form-container {
        right: 10px;
        width: 360px;
    }
}

@media (max-width: 1200px) {
    .sticky-form-container.desktop-form {
        display: none; /* Hide on tablets and below */
    }
}

/* Mobile Form Button (Floating action button) */
.mobile-form-button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #c4933f, #b87f2e);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(196, 147, 63, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
}

.mobile-form-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 147, 63, 0.5);
}

.mobile-form-button:active {
    transform: translateY(-1px);
}

@media (max-width: 1200px) {
    .mobile-form-button {
        display: block;
    }
}


.sticky-form-header h2 {
    font-size: 1.3rem;
    color: #1a3e45;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: 'Cormorant Garamond', serif;
}

.sticky-form-header p {
    color: #c4933f;
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 15px;
}

.form-control, .form-select {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    width: 100%;
}

.form-control:focus, .form-select:focus {
    border-color: #c4933f;
    box-shadow: 0 0 0 0.2rem rgba(196, 147, 63, 0.25);
    outline: none;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #c4933f, #b87f2e);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
}

.submit-btn:hover {
    box-shadow: 0 5px 15px rgba(196, 147, 63, 0.4);
    transform: translateY(-2px);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    margin-top: 10px;
}

.form-message {
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a3e45 0%, #2d5a63 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 8px;
    margin: 60px auto;
    max-width: 900px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 20px;
}

.cta-btn {
    background: #c4933f;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 25px;
    display: inline-block;
    text-decoration: none;
}

.cta-btn:hover {
    background: #b87f2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    color: #1a3e45;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: #c4933f;
    color: white;
}

/* Vlog Script Section */
.vlog-section {
    max-width: 900px;
    margin: 0 auto;
}

.vlog-section :is(h2, h3, h4) {
    color: #1a3e45;
    font-family: 'Cormorant Garamond', serif;
    margin-top: 30px;
    margin-bottom: 15px;
}

.vlog-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.vlog-section strong {
    color: #c4933f;
}
/* WhatsApp Button Styling */
a[href*="wa.me"] {
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

a[href*="wa.me"]:hover {
    background: #20ba5b !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Founder Section */
#founder-section {
    padding: 60px 20px !important;
}

#founder-section .section-title {
    color: #1a3e45;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
}

/* Responsive founder section */
@media (max-width: 768px) {
    #founder-section div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    #founder-section .section-title {
        font-size: 1.8rem;
    }
}

/* Mobile Form Section - Only visible on mobile/tablet */
.mobile-form-section {
    display: none;
    padding: 60px 20px;
    background: #f8f9fa;
}

@media (max-width: 1200px) {
    .mobile-form-section {
        display: block;
    }
    
    .sticky-form-container.desktop-form {
        display: none !important;
    }
}