/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace+SC:wght@400&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #00204E;
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background-color: #00204e;
    backdrop-filter: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding: 80px 0 0 0;
    position: relative;
}

.hero-content {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 100vh;
}

.hero-left {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

.hero-image {
    width: auto;
    height: calc(100vh - 80px);
    max-width: none;
    border-radius: 0;
    object-fit: cover;
    display: block;
}

.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 40px 40px 80px;
    min-height: 100vh;
    text-align: center;
}

.hero-heading {
    font-family: 'Nunito Sans', 'Futura', 'Arial', sans-serif;
    font-size: 55px;
    font-weight: normal;
    line-height: 1.2;
    color: white;
    margin: 0;
    text-align: center;
}

.heading-line {
    display: block;
}

.subheading-line {
    display: block;
}

/* Mobile layout - keep heading and subheading as single line */
@media (max-width: 768px) {
    .heading-line {
        display: inline;
    }
    
    .subheading-line {
        display: inline;
    }
}

.hero-subheading {
    font-family: 'Nunito Sans', 'Futura', 'Arial', sans-serif;
    font-size: 35px;
    font-weight: normal;
    line-height: 1.4;
    color: white;
    margin: 20px 0 0 0;
    text-align: center;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
}

.cta-button {
    font-family: 'Nunito Sans', 'Futura', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 30px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-primary {
    background-color: #B6CEF0;
    color: #1a365d;
    border-color: #B6CEF0;
}

.cta-primary:hover {
    background-color: #a3c1ed;
    border-color: #a3c1ed;
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-secondary:hover {
    background-color: white;
    color: #1a365d;
    transform: translateY(-2px);
}

.hero-heading .highlight {
    color: #B6CEF0;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Secondary Section */
.secondary-section {
    background-color: #B6CEF0;
    padding: 80px 0;
    width: 100%;
}

.secondary-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.secondary-heading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 60px;
    font-weight: normal;
    color: #00204F;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.secondary-subheading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 24px;
    color: #2C3E50;
    margin: 0 0 50px 0;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: #00204F;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.service-title {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: white;
    line-height: 1.3;
}

.service-description {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: #E8E8E8;
}

/* Why Sentivora Section */
.why-section {
    background-color: white;
    padding: 80px 0;
    width: 100%;
}

.why-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.why-heading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 60px;
    font-weight: normal;
    color: #00204F;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.why-subheading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 24px;
    color: #666666;
    margin: 0 auto 50px auto;
    line-height: 1.4;
    max-width: 800px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background-color: #00204F;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: left;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.feature-title {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: white;
    line-height: 1.3;
}

.feature-description {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: #E8E8E8;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #B6CEF0;
    padding: 80px 0;
    width: 100%;
}

.testimonials-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.testimonials-heading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 60px;
    font-weight: normal;
    color: #00204F;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.testimonials-subheading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 24px;
    color: #00204F;
    margin: 0 auto 50px auto;
    line-height: 1.4;
    max-width: 900px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
    overflow: hidden;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.company-logo-image {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

.mld-homes-logo {
    max-height: 55px;
}

.trenzi-logo {
    max-height: 30px;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #00204F;
    margin: 0;
}

.profile-title {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.testimonial-text {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    margin: 0 0 20px 0;
    font-style: italic;
    flex-grow: 1;
}

.company-logo {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #00204F;
    text-align: center;
    padding: 10px;
    border-top: 2px solid #B6CEF0;
    margin-top: auto;
}

/* Contact Section */
.contact-section {
    background-color: #00204F;
    padding: 80px 0;
    width: 100%;
}

.contact-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.contact-heading {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 60px;
    font-weight: normal;
    color: white;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.contact-subheading {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 24px;
    color: white;
    margin: 0 auto 50px auto;
    line-height: 1.4;
    max-width: 600px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    text-align: left;
}

.contact-form-wrapper {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    font-family: 'Century Gothic', Arial, sans-serif;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00204F;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    font-family: 'Century Gothic', Arial, sans-serif;
    background-color: #00204F;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #001a3d;
    transform: translateY(-2px);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-details {
    background-color: #00204F;
    padding: 40px;
    border-radius: 15px;
    color: white;
}

.contact-info-title {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 30px 0;
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 24px;
    margin-top: 2px;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: white;
}

.contact-text p {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 16px;
    margin: 0;
    color: #E8E8E8;
    line-height: 1.4;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 15px;
}

/* Footer */
.footer {
    background-color: black;
    padding: 40px 0;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer-text {
    text-align: center;
}

.footer-text p {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 16px;
    color: #E8E8E8;
    margin: 0;
    line-height: 1.4;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #00204F;
    color: white;
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scroll-to-top:hover {
    background-color: #ffffff;
    color: #00204F;
    transform: translateY(0) scale(1.1);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top svg {
    transition: transform 0.2s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

.logo {
    width: 318px;
    height: auto;
    object-fit: contain;
}

/* Full-page container */
.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .header {
        padding: 0.75rem 1rem;
    }
    
    .header-content {
        padding: 0 20px;
    }
    
    .logo {
        width: 280px;
        height: auto;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .hero {
        padding: 0;
        flex-direction: column;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }
    
    .hero-left {
        order: 2;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
        margin: 0;
        text-align: left;
        margin-bottom: 30px;
    }
    
    .hero-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        object-fit: cover;
        object-position: left bottom;
    }
    
    .hero-right {
        order: 1;
        padding: 120px 20px 0;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        min-height: auto;
    }
    
    .hero-heading {
        font-size: 42px;
        text-align: center;
    }
    
    .hero-subheading {
        font-size: 28px;
        text-align: center;
    }
    
    .hero-cta-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 12px 25px;
    }
    
    .secondary-section {
        padding: 60px 0;
    }
    
    .secondary-content {
        padding: 0 20px;
    }
    
    .secondary-heading {
        font-size: 45px;
    }
    
    .secondary-subheading {
        font-size: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    .why-section {
        padding: 60px 0;
    }
    
    .why-content {
        padding: 0 20px;
    }
    
    .why-heading {
        font-size: 45px;
    }
    
    .why-subheading {
        font-size: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .feature-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 15px;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-content {
        padding: 0 20px;
    }
    
    .testimonials-heading {
        font-size: 45px;
    }
    
    .testimonials-subheading {
        font-size: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .profile-image {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 12px;
    }
    
    .profile-name {
        font-size: 16px;
    }
    
    .profile-title {
        font-size: 13px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .company-logo {
        font-size: 14px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        padding: 0 20px;
    }
    
    .contact-heading {
        font-size: 45px;
    }
    
    .contact-subheading {
        font-size: 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .contact-details {
        padding: 30px 25px;
    }
    
    .contact-info-title {
        font-size: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 15px;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .contact-text strong {
        font-size: 15px;
    }
    
    .contact-text p {
        font-size: 15px;
    }
    
    .map-container iframe {
        height: 200px;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer-content {
        padding: 0 20px;
        gap: 15px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-text p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }
    
    .header {
        padding: 0.5rem 0.75rem;
    }
    
    .logo {
        width: 240px;
        height: auto;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
    

    
    .hero {
        padding: 0;
        flex-direction: column;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }
    
    .hero-left {
        order: 2;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
        margin: 0;
    }
    
    .hero-image {
        width: 100%;
        height: auto;
        max-width: 350px;
        border-radius: 10px;
        object-fit: contain;
    }
    
    .hero-right {
        order: 1;
        padding: 80px 20px 40px;
        min-height: auto;
    }
    
    .hero-heading {
        font-size: 32px;
        line-height: 1.3;
        text-align: center;
        margin-top: 40px;
    }
    
    .hero-subheading {
        font-size: 22px;
        text-align: center;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: center;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 12px 25px;
        width: 100%;
        max-width: 280px;
    }
    
    .secondary-section {
        padding: 40px 0;
    }
    
    .secondary-content {
        padding: 0 20px;
    }
    
    .secondary-heading {
        font-size: 36px;
    }
    
    .secondary-subheading {
        font-size: 18px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    .why-section {
        padding: 40px 0;
    }
    
    .why-content {
        padding: 0 20px;
    }
    
    .why-heading {
        font-size: 36px;
    }
    
    .why-subheading {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-content {
        padding: 0 20px;
    }
    
    .testimonials-heading {
        font-size: 36px;
    }
    
    .testimonials-subheading {
        font-size: 18px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .profile-image {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-right: 10px;
    }
    
    .profile-name {
        font-size: 15px;
    }
    
    .profile-title {
        font-size: 12px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .company-logo {
        font-size: 13px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-content {
        padding: 0 20px;
    }
    
    .contact-heading {
        font-size: 36px;
    }
    
    .contact-subheading {
        font-size: 18px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-details {
        padding: 25px 20px;
    }
    
    .contact-info-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .contact-item {
        margin-bottom: 20px;
        gap: 12px;
    }
    
    .contact-icon {
        font-size: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .contact-text strong {
        font-size: 14px;
    }
    
    .contact-text p {
        font-size: 14px;
    }
    
    .map-container iframe {
        height: 180px;
    }
    
    .footer {
        padding: 25px 0;
    }
    
    .footer-content {
        padding: 0 20px;
        gap: 12px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-text p {
        font-size: 14px;
    }
}

/* Ensure no horizontal scroll */
body {
    overflow-x: hidden;
}

/* Full width utility class for future use */
.full-width {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
