/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #000;
}

.nav-link.active {
    color: #000;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #167C5B, #E6FFF4, #167C5B, #40CBA0, #23272A);
    margin-top: 70px;
    padding: 80px 0 60px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 15px 50px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-bottom: 80px;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Cards */
.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.hero-card {
    text-align: center;
}

.hero-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 20px;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-text {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
}

/* Three Cards Section - REMOVED */

/* Growth Section */
.growth-section {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.growth-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.growth-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.growth-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.growth-image {
    width: 100%;
    height: 424px;
    border-radius: 20px;
    overflow: hidden;
}

.growth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5f1 0%, #d4ede5 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    position: relative;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 15px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    background: #fff;
    padding: 30px 40px;
    text-align: center;
    margin: -40px 30px 0 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: #fff;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-form input {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.btn-submit {
    padding: 15px 40px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
}

.btn-submit:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2d3e4f;
    color: #fff;
    padding: 80px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #444;
}

.footer h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer p {
    font-size: 15px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 10px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-label {
    font-size: 13px;
    font-weight: 600;
    color: #fff !important;
    margin-top: 20px;
    margin-bottom: 5px;
}

.footer-address p:first-child {
    margin-top: 0;
}

.footer-contact-section {
    margin-bottom: 40px;
}

.footer-contact-section > p {
    margin-bottom: 30px;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
}

.footer-form {
    margin-top: 0;
}

.footer-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #555;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    margin-top: 5px;
}

.footer-form input::placeholder {
    color: #999;
}

.footer-form .btn-submit {
    width: auto;
    background: #5fb89a;
    padding: 12px 30px;
}

.footer-form .btn-submit:hover {
    background: #4fa88a;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-end;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        max-height: 400px;
        padding: 30px 60px;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 15px 0;
        width: 100%;
        text-align: right;
    }
    
    .nav-link.active::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0 40px 0;
    }

    .hero-content {
        padding: 0 25px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .btn-primary {
        padding: 15px 40px;
        margin-bottom: 60px;
    }

    .hero-cards {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 60px;
    }

    .hero-card-image {
        height: 250px;
        border-radius: 20px;
    }

    .growth-section,
    .services-section,
    .newsletter-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .growth-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .growth-image {
        width: 100%;
    }

    .growth-image img {
        width: 100%;
        height: auto !important;
        border-radius: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-image {
        height: 250px;
    }
    
    .service-content {
        margin: -40px 20px 0 20px;
        padding: 25px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav-menu.active {
        padding: 30px 25px;
    }

    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .container {
        padding: 0 20px;
    }
}


/* Global Strategy Page Styles */

/* Projects Section */
.projects-section {
    padding: 120px 0 80px 0;
    background: #fff;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.page-subtitle {
    font-size: 16px;
    text-align: center;
    color: #666;
    margin-bottom: 80px;
}

.project-card {
    margin-bottom: 60px;
}

.project-images-horizontal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.project-img-horizontal {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-info-inline h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.project-info-inline p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.btn-outline {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #333;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #333;
    color: #fff;
}

.btn-outline-dark {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #333;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: #333;
    color: #fff;
}

/* Global Growth Section */
.global-growth-section {
    padding: 100px 0;
    background: #2d3e4f;
    color: #fff;
}

.section-title-white {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
}

.section-subtitle-white {
    font-size: 16px;
    text-align: center;
    color: #ccc;
    margin-bottom: 60px;
}

.growth-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.growth-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.growth-card:hover {
    transform: translateY(-5px);
}

.growth-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.growth-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.growth-card-content {
    padding: 25px;
    text-align: left;
}

.growth-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.growth-card-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Vision Section */
.vision-section {
    padding: 100px 0;
    background: #fff;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vision-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.vision-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.vision-image-wrapper {
    position: relative;
}

.vision-image {
    width: 100%;
    height: 544px;
    object-fit: cover;
    border-radius: 20px;
}

.vision-stats {
    position: absolute;
    bottom: 50px;
    left: -50px;
    background: #167C5B;
    padding: 40px 60px;
    border-radius: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    min-width: 400px;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

/* Responsive - Global Strategy Page */
@media (max-width: 768px) {
    .projects-section {
        padding: 80px 0 60px 0;
    }

    .page-title {
        font-size: 36px;
    }

    .project-card {
        margin-bottom: 50px;
    }

    .project-images-horizontal {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .project-img-horizontal {
        height: 250px;
        width: 100%;
    }

    .project-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .global-growth-section {
        padding: 60px 0;
    }

    .section-title-white {
        font-size: 32px;
    }

    .growth-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vision-section {
        padding: 60px 0;
    }

    .vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-text h2 {
        font-size: 32px;
    }

    .vision-image {
        width: 100%;
        height: auto !important;
    }

    .vision-stats {
        position: static;
        margin-top: 20px;
        padding: 25px;
        min-width: auto;
        width: 100%;
    }

    .stat-item h3 {
        font-size: 36px;
    }
}


/* Data Analytics Page Styles */

/* Insights Delivered Section */
.insights-section {
    padding: 120px 0 80px 0;
    background: #fff;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.insight-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 15px;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.insight-content {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.insight-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.insight-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.arrow-link {
    font-size: 24px;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.arrow-link:hover {
    transform: translateX(5px);
}

/* Data Insights Section */
.data-insights-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5f1 0%, #d4ede5 100%);
}

.data-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.data-card {
    position: relative;
    transition: transform 0.3s ease;
}

.data-card:hover {
    transform: translateY(-5px);
}

.data-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 15px;
}

.data-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.data-card-content {
    background: #fff;
    padding: 30px 40px;
    text-align: center;
    margin: -50px 40px 0 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.data-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.data-card-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* Driven by Data Insights Section */
.data-vision-section {
    padding: 100px 0;
    background: #fff;
}

.data-vision-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.data-vision-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.data-vision-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.data-vision-text-right p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.data-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.data-stat h3 {
    font-size: 48px;
    font-weight: 700;
    color: #167C5B;
    margin-bottom: 5px;
}

.data-stat p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.data-vision-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.data-vision-image img {
    width: 100%;
    height: 424px;
    object-fit: cover;
    display: block;
}

/* Responsive - Data Analytics Page */
@media (max-width: 768px) {
    .insights-section {
        padding: 80px 0 60px 0;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .insight-image {
        height: 250px;
        width: 100%;
    }

    .insight-image img {
        width: 100%;
    }

    .insight-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .data-insights-section {
        padding: 60px 0;
    }

    .data-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .data-card-image {
        width: 100%;
    }

    .data-card-content {
        margin: -50px 20px 0 20px;
    }

    .data-vision-section {
        padding: 60px 0;
    }

    .data-vision-text {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .data-vision-text h2 {
        font-size: 32px;
    }

    .data-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .data-stat h3 {
        font-size: 36px;
    }

    .data-vision-image {
        width: 100%;
    }

    .data-vision-image img {
        width: 100%;
        height: auto !important;
    }
}


/* Paid Media Page Styles */

/* Paid Media Hero Section */
.paid-media-hero {
    padding: 120px 0 80px 0;
    background: #fff;
}

.paid-media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.paid-media-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.paid-media-card:hover {
    transform: translateY(-5px);
}

.paid-media-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 15px;
}

.paid-media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.paid-media-content {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.paid-media-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.paid-media-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Paid Media Dark Section */
.paid-media-dark-section {
    padding: 100px 0;
    background: #2d3e4f;
    color: #fff;
}

.paid-media-dark-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.paid-media-dark-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.paid-media-dark-card:hover {
    transform: translateY(-5px);
}

.paid-media-dark-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.paid-media-dark-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.paid-media-dark-content {
    padding: 25px;
    text-align: left;
}

.paid-media-dark-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.paid-media-dark-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 100px 0;
    background: #fff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.mission-box h3,
.vision-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.mission-box p,
.vision-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.who-we-are-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.who-we-are-image img {
    width: 100%;
    height: 424px;
    object-fit: cover;
    display: block;
}

/* Responsive - Paid Media Page */
@media (max-width: 768px) {
    .paid-media-hero {
        padding: 80px 0 60px 0;
    }

    .paid-media-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .paid-media-image {
        height: 250px;
        width: 100%;
    }

    .paid-media-image img {
        width: 100%;
    }

    .paid-media-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .paid-media-dark-section {
        padding: 60px 0;
    }

    .paid-media-dark-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .who-we-are-section {
        padding: 60px 0;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .who-we-are-image {
        width: 100%;
    }

    .who-we-are-image img {
        width: 100%;
        height: auto !important;
    }
}


/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 70px;
    padding: 80px 0;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 62, 79, 0.85);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 439px;
    margin: 0 auto;
    padding: 0 25px;
}

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-hero-content p {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.contact-hero-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #167C5B;
}

.form-group textarea {
    resize: vertical;
}

.contact-hero-form .btn-submit {
    width: 100%;
    background: #167C5B;
    margin-top: 10px;
}

.contact-hero-form .btn-submit:hover {
    background: #125a45;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: #fff;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.location-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-detail h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.location-detail p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.location-map {
    width: 100%;
}

.location-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 15px;
}

/* About Contact Section */
.about-contact-section {
    padding: 100px 0;
    background: #fff;
}

.about-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-contact-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-contact-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-contact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.about-stat h3 {
    font-size: 48px;
    font-weight: 700;
    color: #167C5B;
    margin-bottom: 5px;
}

.about-stat p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.about-contact-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.about-contact-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Responsive - Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        min-height: auto;
        padding: 60px 0;
    }

    .contact-hero-content {
        max-width: 100%;
    }

    .contact-hero-content h1 {
        font-size: 36px;
    }

    .contact-hero-form {
        padding: 30px 25px;
    }

    .location-section {
        padding: 60px 0;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-text h2 {
        font-size: 32px;
    }

    .location-map {
        width: 100%;
    }

    .location-map iframe {
        height: 300px;
        width: 100%;
    }

    .about-contact-section {
        padding: 60px 0;
    }

    .about-contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-contact-text h2 {
        font-size: 32px;
    }

    .about-contact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-stat h3 {
        font-size: 36px;
    }

    .about-contact-image {
        width: 100%;
    }

    .about-contact-image img {
        width: 100%;
        height: auto !important;
    }
}
