/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #111;
    background-color: #f7f7f7;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 22px;
    font-weight: 600;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.6;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    color: #111;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.6;
}

.cta-primary {
    background: #000;
    color: #fff;
    padding: 12px 22px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-primary:hover {
    background: #222;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid #000;
    background: transparent;
    color: #000;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
}

/* Secondary Button - White Filled */
.secondary-btn {
    background: #fff;
    color: #000;
    padding: 16px 32px;
    font-weight: 600;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.secondary-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
}

/* Dark Background CTA Override */
.final-cta .cta-large:hover {
    background: #fff;
    color: #000;
}

/* Logo - Authority Update */
.logo {
    font-size: 26px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
#hero {
    padding: 140px 20px 120px;
    background: #f2f2f2;
    text-align: center;
}

.headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-subtext {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 20px auto 40px;
}

.cta-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Headings - Authority Alignment System */
section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: left;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero and CTA Blocks - Center Aligned */
#home h1 {
    text-align: center;
}

.final-cta h2 {
    text-align: center;
}

/* Authority Sections - Left Aligned */
#framework h2,
#insights h2,
#engagement h2,
#qualification h2,
#ideal-client h2,
#not-for h2,
#firm-authority h2,
#category h2 {
    text-align: left;
}

/* Special Center Cases */
#testimonials h2,
#case-study h2,
#credibility h2,
#strategy-call h2 {
    text-align: center;
}

/* Global Page Wrapper Consistency */
section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero Section Exception */
#home {
    max-width: none;
    padding: 140px 20px 120px;
}

/* Footer Exception */
.footer {
    max-width: none;
    padding: 60px 0;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
    margin: 80px 0;
}

/* SECTION 1 — WHERE HOTELS LOSE MARGIN */
.margin-loss {
    text-align: center;
    background: #fff;
}

.section-headline {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.margin-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.margin-list li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.margin-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
}

/* SECTION 2 — FINANCIAL IMPACT EXAMPLE */
.financial-impact {
    text-align: center;
    background: #fafafa;
}

.impact-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.impact-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

/* SECTION 3 — REVENUE OPTIMIZATION FRAMEWORK */
.framework {
    text-align: center;
    background: #fff;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.framework-item {
    background: #fff;
    padding: 40px;
    border: 1px solid #e5e5e5;
    text-align: left;
    transition: all 0.3s ease;
}

.framework-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.framework-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.framework-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* CASE STUDY SECTION */
#case-study {
    text-align: center;
    background: #fff;
}

.case-box {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    text-align: left;
}

.case-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.case-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

/* CATEGORY DIFFERENTIATION BLOCK */
#category {
    text-align: center;
    background: #fafafa;
}

#category p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/* TESTIMONIALS SECTION */
#testimonials {
    background: #fff;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.testimonial-card {
    padding: 40px;
    border: 1px solid #eee;
    background: #fafafa;
    font-style: italic;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    font-style: normal;
}

/* DATA-BACKED CREDIBILITY BLOCK */
#credibility {
    text-align: center;
    background: #fafafa;
}

.metrics-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 40px;
}

.metrics-grid div {
    flex: 1;
    min-width: 200px;
}

.metrics-grid h3 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.metrics-grid p {
    font-size: 1rem;
    color: #666;
}

/* PRICING GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.pricing-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.pricing-card strong {
    font-size: 1.3rem;
    font-weight: 800;
    color: #000;
}

/* SECTION 4 — 30-DAY REVENUE SPRINT */
.revenue-sprint {
    text-align: center;
    background: #fafafa;
}

.sprint-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 60px auto 0;
}

.sprint-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    text-align: left;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    min-width: 60px;
    height: 60px;
    background: #f0f0f0;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.step-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* SECTION 5 — ENGAGEMENT MODEL */
.engagement-model {
    text-align: center;
    background: #fff;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.engagement-item {
    text-align: center;
}

.engagement-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.engagement-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* SECTION 6 — INSIGHTS */
.insights {
    text-align: center;
    background: #fafafa;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.insight-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #e5e5e5;
    text-align: left;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.insight-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.insight-content {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.insight-content:last-child {
    margin-bottom: 0;
}

.insight-list {
    list-style: none;
    padding-left: 0;
}

.insight-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.insight-list li::before {
    content: '•';
    position: absolute;
    left: -20px;
    color: #000;
    font-weight: 700;
}

/* SECTION 8 — STRATEGY CALL */
.strategy-call {
    text-align: center;
    background: #fff;
}

.section-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-success {
    text-align: center;
    padding: 40px;
    background: #fff;
    border: 2px solid #000;
    font-size: 18px;
    color: #333;
    max-width: 600px;
    margin: 40px auto;
}

/* SECTION 7 — ABOUT THE ADVISORY */
.about {
    text-align: center;
    background: #fafafa;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* FINAL CTA SECTION */
.final-cta {
    text-align: center;
    background: #000;
    color: #fff;
}

.cta-headline {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 30px;
    font-weight: 800;
    color: #fff;
}

.cta-subtext {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.capacity-note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 20px;
    font-style: italic;
}

/* Contact Options */
.contact-options {
    margin-top: 60px;
    text-align: center;
}

.contact-options h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #000;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
}

.contact-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-link {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.contact-link:hover {
    background: #333;
}

/* Ensure email links in footer are clickable */
.footer-email a {
    color: #fff;
    text-decoration: underline;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.footer-email a:hover {
    color: #ccc;
}

/* Authority List */
.authority-list {
    list-style: none;
    max-width: 600px;
    margin: 40px auto;
    text-align: left;
}

.authority-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    line-height: 1.6;
}

.authority-list li:last-child {
    border-bottom: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #333;
    transform: translateY(-2px);
}

/* WhatsApp Button - Ensure no overlap */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 1001;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Mobile Layout Fix for Floating Buttons */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    /* Ensure footer has enough padding on mobile */
    .footer {
        padding-bottom: 100px !important;
    }
}

/* FOOTER */
.footer {
    background: #111;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-subtitle {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 30px;
}

.footer-email,
.footer-phone {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-email a,
.footer-phone a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email a:hover,
.footer-phone a:hover {
    color: #ccc;
}

.footer-text {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
}

/* Form Styling */
.strategy-form {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: left;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-grid textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

.primary-btn {
    display: inline-block;
    padding: 20px 40px;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-btn:hover {
    background: #222;
    color: #fff;
    transform: translateY(-2px);
}

.form-submit {
    width: 100%;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile Styles */
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .header-cta {
        display: block;
        text-align: center;
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero,
    .margin-loss,
    .financial-impact,
    .framework,
    .revenue-sprint,
    .engagement-model,
    .insights,
    .strategy-call,
    .about,
    .final-cta,
    .landing-hero {
        padding: 60px 0;
    }
    
    .thank-you {
        padding: 160px 0;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .framework-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .engagement-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .margin-list,
    .landing-bullets {
        max-width: 100%;
    }
    
    .contact-form,
    .strategy-form {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .sprint-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .divider {
        margin: 60px 0;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .hero,
    .margin-loss,
    .financial-impact,
    .framework,
    .revenue-sprint,
    .engagement-model,
    .insights,
    .strategy-call,
    .about,
    .final-cta,
    .landing-hero {
        padding: 40px 0;
    }
    
    .framework-item {
        padding: 30px 15px;
    }
    
    .insight-card {
        padding: 30px 20px;
    }
    
    .engagement-item {
        padding: 30px 20px;
    }
    
    .margin-list li,
    .landing-bullets li {
        font-size: 1.1rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 18px 32px;
        font-size: 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: all 0.3s ease;
}

#backToTop:hover {
    background: #333;
    transform: translateY(-2px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}
