/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: url('hero-bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin: 10px 0;
}

.hero-ampersand {
    font-size: 2rem;
    margin: 15px 0;
    font-weight: 300;
}

/* Intro Section */
.intro {
    background: #AEC6CF; /* Unified mustard/ochre color */
    padding: 80px 20px;
    text-align: center;
    color: #333;
}

.intro-text.first-phrase {
    color: #333; /* Adjusted text color for contrast */
    font-weight: 500;
    /* The background color is now applied to the .intro section directly, so remove specific background from here */
    padding: 0; /* Remove padding from here to avoid double padding */
    border-radius: 0; /* Remove border-radius from here */
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 1px;
}

/* Quote Section */
.quote-section {
    background: #f5f5f5;
    padding: 100px 20px;
    text-align: center;
}

.main-quote {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.8;
}

.main-quote strong {
    font-weight: 600;
}

/* About Section */
.about-section {
    background: #fff;
    padding: 100px 20px;
}

.about-top-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.about-left {
    background: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
}

.about-section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-right {
    padding: 20px 0;
}

.about-intro {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.about-right p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-bottom-text {
    padding-top: 20px;
    text-align: justify;
    max-width: 1200px;
    margin: 0 auto;
}

.about-bottom-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.about-final-quote-section {
    background: #AEC6CF; /* Changed from black to mustard/ochre */
    padding: 60px 20px;
    text-align: center;
}

.about-final-quote {
    color: #333; /* Adjusted text color for contrast with yellow background */
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Areas Section */
.areas-section {
    background: #f5f5f5;
    padding: 100px 20px;
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 60px;
    color: #3a3a3a;
}

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

.area-card {
    background: white;
    padding: 50px 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.area-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.area-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Work Methods Section */
.work-methods {
    background: white;
    padding: 100px 20px;
}

.work-methods .section-title-center {
    margin-bottom: 0; /* Remove bottom margin */
}

.work-subtitle-online {
    display: block; /* Make it a block element to appear on a new line */
    font-size: 0.8em; /* Make it smaller relative to the h2 */
    font-weight: 400;
    margin-top: 5px; /* Small margin from the title */
    margin-bottom: 20px; /* Spacing below the subtitle */
    color: #555;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four equal columns */
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.method-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px; /* Fixed height for equal squares */
    padding: 30px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
    background: #f5f5f5;
    transition: background 0.3s ease;
}

.method-card:hover {
    background: #e8e8e8;
}

/* Momentum Section */
.momentum-section {
    background: #fff;
    padding: 100px 20px;
}

.momentum-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.momentum-left {
    background: #3a3a3a;
    padding: 60px 40px;
    color: white;
}

.momentum-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.momentum-divider {
    width: 60px;
    height: 2px;
    background: white;
    margin: 20px 0;
}

.momentum-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    margin-top: 30px;
    padding: 20px;
    border: 2px solid white;
    display: inline-block;
}

.momentum-right {
    padding: 20px 0;
}

.momentum-item {
    margin-bottom: 50px;
}

.momentum-item h3 {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.momentum-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* GPT Sections */
.gpt-intro {
    background: #3a3a3a;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.gpt-intro-text {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.gpt-intro-subtext {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 800px;
    margin: 15px auto;
    line-height: 1.7;
}

.gpt-section {
    background: white;
    padding: 100px 20px;
}

.gpt-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.gpt-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gpt-color-block {
    width: 100%;
    height: 100%;
    background-color: #AEC6CF; /* Mustard/ochre color for the rectangle */
}

.gpt-content {
    padding: 20px 0;
}

.gpt-title {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.gpt-subtitle {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
}

.gpt-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.gpt-quote {
    background: #3a3a3a;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.quote-large {
    font-size: 1.6rem;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    background: #ffffff;
    padding: 100px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-end;
}

.contact-image {
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-content {
    padding: 20px 0;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.contact-divider {
    width: 60px;
    height: 2px;
    background: #3a3a3a;
    margin: 20px 0;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.contact-buttons {
    display: flex;
    gap: 20px;
}

.contact-btn {
    text-decoration: none;
    color: #3a3a3a;
    border: 2px solid #3a3a3a;
    padding: 15px 30px;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-btn:hover {
    background: #3a3a3a;
    color: white;
}

/* General Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        height: 80vh;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

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

    .intro {
        padding: 60px 15px;
    }

    .intro-text {
        font-size: 1rem;
    }

    .quote-section {
        padding: 60px 15px;
    }

    .main-quote {
        font-size: 1.1rem;
    }

    .about-section {
        padding: 60px 15px;
    }

    .about-top-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-left {
        padding: 0;
    }

    .about-section-image {
        margin-top: 0;
    }

    .about-intro {
        font-size: 1rem;
    }

    .about-right p {
        font-size: 1rem; /* Consistent font size for mobile */
    }

    .about-final-quote-section {
        padding: 40px 15px;
    }

    .about-final-quote {
        font-size: 1.2rem; /* Consistent font size for mobile */
    }

    .areas-section {
        padding: 60px 15px;
    }

    .section-title-center {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .area-card h3 {
        font-size: 1.1rem;
    }

    .area-card p {
        font-size: 0.9rem;
    }

    .work-methods {
        padding: 60px 15px;
    }

    .methods-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on mobile */
    }

    .method-card {
        min-height: 120px;
        font-size: 1rem;
    }

    .momentum-section {
        padding: 60px 15px;
    }

    .momentum-grid {
        grid-template-columns: 1fr;
    }

    .momentum-title {
        font-size: 2rem;
    }

    .momentum-subtitle {
        font-size: 1rem;
    }

    .momentum-item h3 {
        font-size: 1.2rem;
    }

    .momentum-item p {
        font-size: 0.9rem;
    }

    .gpt-intro {
        padding: 60px 15px;
    }

    .gpt-intro-text {
        font-size: 1.2rem;
    }

    .gpt-intro-subtext {
        font-size: 0.9rem;
    }

    .gpt-section {
        padding: 60px 15px;
    }

    .gpt-grid {
        grid-template-columns: 1fr;
    }

    .gpt-image {
        /* Ensure the color block is centered and sized correctly on mobile */
        justify-content: center;
        align-items: center;
    }

    .gpt-color-block {
        width: 150px; /* Smaller size for mobile */
        height: 150px;
        margin: 0 auto;
    }

    .gpt-title {
        font-size: 1.5rem;
    }

    .gpt-subtitle {
        font-size: 1rem;
    }

    .gpt-content p {
        font-size: 0.9rem;
    }

    .gpt-quote {
        padding: 60px 15px;
    }

    .quote-large {
        font-size: 1.2rem;
    }

    .contact-section {
        padding: 60px 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-image {
        text-align: center;
    }

    .contact-image img {
        max-width: 80%;
        height: auto;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .contact-text {
        font-size: 0.9rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .contact-buttons .contact-btn {
        font-size: 0.9rem;
        padding: 10px 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .methods-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }

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

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

    .intro {
        padding: 40px 10px;
    }

    .intro-text {
        font-size: 0.9rem;
    }

    .about-section {
        padding: 40px 10px;
    }

    .about-intro {
        font-size: 0.9rem;
    }

    .about-right p {
        font-size: 1rem; /* Consistent font size for very small mobile screens */
    }

    .about-final-quote-section {
        padding: 30px 10px;
    }

    .about-final-quote {
        font-size: 1.2rem; /* Consistent font size for very small mobile screens */
    }

    .section-title-center {
        font-size: 1.8rem;
    }

    .area-card {
        padding: 30px 20px;
    }

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

    .area-card p {
        font-size: 0.8rem;
    }

    .work-methods {
        padding: 40px 10px;
    }

    .method-card {
        height: 100px;
        font-size: 0.9rem;
    }

    .momentum-section {
        padding: 40px 10px;
    }

    .momentum-title {
        font-size: 1.8rem;
    }

    .momentum-subtitle {
        font-size: 0.9rem;
    }

    .momentum-item h3 {
        font-size: 1.1rem;
    }

    .momentum-item p {
        font-size: 0.8rem;
    }

    .gpt-intro {
        padding: 40px 10px;
    }

    .gpt-intro-text {
        font-size: 1rem;
    }
    .about-bottom-text p {
        font-size: 1rem; /* Consistent font size for very small mobile screens */
    }
    .gpt-section {
        padding: 40px 10px;
    }

    .gpt-title {
        font-size: 1.3rem;
    }

    .gpt-subtitle {
        font-size: 0.9rem;
    }

    .gpt-content p {
        font-size: 0.8rem;
    }

    .gpt-quote {
        padding: 40px 10px;
    }

    .quote-large {
        font-size: 1rem;
    }

    .contact-section {
        padding: 40px 10px;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .contact-text {
        font-size: 0.8rem;
    }

    .contact-buttons {
        gap: 10px;
    }

    .contact-buttons .contact-btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}



/* Mobile adjustments for About Section */
@media (max-width: 768px) {
    .about-right p:last-of-type {
        margin-bottom: 10px; /* Reduce space after the last paragraph in about-right */
    }

    .about-bottom-text p:first-of-type {
        margin-top: 10px; /* Reduce space before the first paragraph in about-bottom-text */
    }
}



.gpt-button-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.gpt-btn {
    text-align: center;
    padding: 15px 30px;
    font-size: 1rem;
    line-height: 1.4; /* Adjust line-height for two lines of text */
}

@media (max-width: 768px) {
    .gpt-button-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}




/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 16px;
    right: 16px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float {
        transition: none;
    }
    .whatsapp-float:hover {
        transform: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}


.whatsapp-icon {
    width: 32px; /* Adjusted icon size for 56x56 button */
    height: 32px;
    filter: brightness(0) invert(1); /* Make icon white */
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

