/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    font-size: 1rem;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: #848484;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #000;
}

/* New Menu System - Dropdown & Hamburger */
.main-navigation {
    position: relative;
    z-index: 1000;
}

/* Desktop Dropdown Menu */
.desktop-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-item {
    text-decoration: none;
    color: #848484;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    cursor: pointer;
}

.nav-item:hover,
.nav-item.active {
    color: #000;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.75rem 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.25px;
    transition: all 0.2s ease;
    border-radius: 4px;
    margin: 0 0.5rem;
}

.dropdown-menu a:hover {
    color: #000;
    background-color: rgba(0, 0, 0, 0.04);
}

/* Mobile Hamburger Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hamburger-toggle {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.75rem;
    color: #848484;
    transition: color 0.3s ease;
    border-radius: 8px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hamburger-toggle:hover {
    color: #000;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 75vw;
    height: 100vh;
    background: white;
    padding: 2rem 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.close-menu:hover {
    color: #000;
}

.mobile-menu-content > a {
    display: block;
    padding: 1rem 0;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.mobile-menu-content > a:hover {
    color: #000;
}

.mobile-dropdown {
    border-bottom: 1px solid #eee;
}

.mobile-dropdown-toggle {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle:hover {
    color: #000;
}

.mobile-dropdown-toggle::after {
    content: '→';
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active::after {
    transform: rotate(90deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 1rem;
    background-color: #f8f9fa;
    margin: 0 -1.5rem;
    padding-left: 2.5rem;
    padding-right: 1.5rem;
}

.mobile-submenu.active {
    max-height: 250px;
    padding-bottom: 0.5rem;
}

.mobile-submenu a {
    display: block;
    padding: 0.75rem 0;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.mobile-submenu a:hover {
    color: #000;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    padding: 1rem 0 1rem;
    text-align: center;
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-image {
    margin: 2rem 0;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.4s ease-out;
    animation-delay: 0.3s;
}

/* Mobile responsive images */
@media (max-width: 768px) {
    .hero-image img,
    .area-image img,
    .step-image img,
    .service-image img,
    .mission-image img,
    .reviews-header-image img,
    .water-solution-image img,
    .contact-image {
        max-width: 90%;
        width: auto;
        height: auto;
    }
    
    .hero-image {
        margin: 1.5rem 0;
        text-align: center;
    }
    
    .area-image {
        text-align: center;
        margin-bottom: 1rem;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
    opacity: 0.8;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.hero-subtitle p {
    margin-bottom: 0.5rem;
}

/* Mission Section */
.mission-section {
    padding: 1rem 0;
    background-color: #f8f8f8;
}

/* Alternating background colors for listings */
.mission-section:nth-of-type(even) {
    background-color: #f8f8f8;
}

.mission-section:nth-of-type(odd) {
    background-color: #ffffff;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.mission-text p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Property Listing Header */
.rental-listing-header,
.land-listing-header,
.house-listing-header {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.3rem;
    text-align: center;
}

/* Property Listing Layouts (Rentals, Land, Houses) */
.rental-listing-content,
.land-listing-content,
.house-listing-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
    justify-content: center;
}

/* Desktop: Add empty left column to move text closer to center image */
@media (min-width: 769px) {
    .rental-listing-content,
    .land-listing-content,
    .house-listing-content {
        grid-template-columns: 0.3fr 0.7fr 0.75fr 0.69fr 0.31fr; /* Empty, Left, Center, Right Details, Contact */
    }

    .rental-text-left,
    .land-text-left,
    .house-text-left {
        grid-column: 2; /* Place in second column - closer to center */
    }

    .rental-image,
    .land-image,
    .house-image {
        grid-column: 3; /* Keep image in same relative position */
        justify-self: center; /* Center within the column */
    }

    .rental-text-right,
    .land-text-right,
    .house-text-right {
        grid-column: 4; /* Property details in column 4 */
    }

    .rental-contact,
    .land-contact,
    .house-contact {
        grid-column: 5; /* Contact button in column 5 */
        align-self: center;
    }
}

/* Left Column - Property Details */
.rental-text-left,
.land-text-left,
.house-text-left {
    padding-right: 0.5rem;
}

.rental-text-left h2,
.land-text-left h2,
.house-text-left h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.rental-text-left h3,
.land-text-left h3,
.house-text-left h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 0.5rem;
}

.rental-text-left p,
.land-text-left p,
.house-text-left p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
    margin-bottom: 0.3rem;
}

.rental-text-left p strong,
.land-text-left p strong,
.house-text-left p strong {
    font-weight: 600;
    color: #000;
}

/* Center Column - Property Image */
.rental-image,
.land-image,
.house-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.rental-image img,
.land-image img,
.house-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    max-height: 200px;
    object-fit: cover;
}

.rental-image p,
.land-image p,
.house-image p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-top: 1rem;
    text-align: center;
    max-width: 700px;
}

/* Right Column - Property Description */
.rental-text-right,
.land-text-right,
.house-text-right {
    padding-left: 0.5rem;
}

.rental-text-right p,
.land-text-right p,
.house-text-right p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.rental-text-right ul,
.land-text-right ul,
.house-text-right ul {
    list-style-type: none;
    margin-left: 0;
    margin-top: 1rem;
}

.rental-text-right li,
.land-text-right li,
.house-text-right li {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

/* Center first service item on desktop */
@media (min-width: 769px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }
    
    .service-item:first-child {
        max-width: 600px;
        grid-column: 1 / -1;
        justify-self: center;
    }
    
    .service-item-with-image {
        display: flex;
        align-items: flex-start;
        gap: 2rem;
        text-align: left;
        max-width: 800px;
        grid-column: 1 / -1;
        justify-self: center;
    }
    
    .service-item-with-image .service-image {
        flex: 0 0 406px;
        margin-bottom: 0;
    }
    
    .service-item-with-image .service-image img {
        width: 100%;
        max-width: 406px;
    }
    
    .service-item-with-image .service-content {
        flex: 1;
        text-align: left;
    }
}

.service-item {
    text-align: center;
    padding: 2rem 1rem;
}

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.service-image {
    margin-bottom: 2rem;
}

.service-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-item ul {
    text-align: left;
    margin: 1rem 0;
    padding-left: 1rem;
}

.service-item li {
    margin-bottom: 0.5rem;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: #f8f8f8;
    text-align: center;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: block;
    text-decoration: none;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.cta-button p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section:nth-child(even) {
    background-color: #f8f8f8;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 2rem;
    text-align: center;
}

/* Areas Section */
.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.final-advice {
    margin-top: 4rem;
}

.final-advice p {
    padding: 0 2rem;
}

/* Desktop: Hide line breaks between bullet points only */
@media (min-width: 769px) {
    .final-advice p:nth-child(n+5) + br {
        display: none;
    }
}

.area-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.area-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.area-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Read More functionality */
.area-content {
    position: relative;
}

.area-content.collapsed .expandable-content {
    display: none;
}

.read-more-btn {
    background: none;
    border: none;
    color: #007cba;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.read-more-btn:hover {
    color: #005a87;
}

.area-image {
    text-align: center;
    margin-bottom: 1rem;
}

.area-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.4s ease-out;
}

/* Desktop: Make area images 50% smaller */
@media (min-width: 769px) {
    .area-image img {
        max-width: 50%;
    }
}

/* Guide Section */
.guide-content {
    max-width: 800px;
    margin: 0 auto;
}

.guide-step {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.guide-step:last-child {
    border-bottom: none;
}

.guide-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.guide-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Eco Section */
.eco-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.eco-content > p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.eco-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.eco-feature {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.eco-feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.eco-feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Feedback Section */
.feedback-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.feedback-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-info {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-info p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Privacy Section */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content > p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-points {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.privacy-points h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.privacy-points h3:first-child {
    margin-top: 0;
}

.privacy-points p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-content > p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-feature {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.team-feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container,
    .nav-container {
        max-width: 85%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Mobile responsive for property listings */
    .rental-listing-content,
    .land-listing-content,
    .house-listing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rental-text-left,
    .land-text-left,
    .house-text-left,
    .rental-text-right,
    .land-text-right,
    .house-text-right,
    .rental-contact,
    .land-contact,
    .house-contact {
        padding-left: 0;
        padding-right: 0;
    }

    /* Remove extra spacing around contact buttons on mobile */
    .rental-contact,
    .land-contact,
    .house-contact {
        margin-top: 0;
        padding-top: 0;
    }

    .rental-contact .cta-button,
    .land-contact .cta-button,
    .house-contact .cta-button {
        margin-top: 0.5rem !important;
    }
    
}

@media (max-width: 768px) {
    .container,
    .nav-container {
        max-width: 95%;
        padding: 0 15px;
    }
    
    .nav-links {
        gap: 1rem;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .hero-section {
        padding: 3rem 0 1rem;
        min-height: 20vh;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .content-section h2 {
        font-size: 1.7rem;
    }
    
    .mission-section {
        padding: 2rem 0;
        text-align: center;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .cta-button {
        margin-bottom: 1rem;
    }
    
    .cta-buttons .cta-button:last-child {
        margin-bottom: 0;
    }
    
    .services-grid,
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .eco-features,
    .team-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .mission-text h2,
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-button,
    .service-item,
    .area-item,
    .eco-feature,
    .team-feature {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-subtitle {
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.cta-button {
    animation: fadeInUp 0.05s ease-out;
}

.cta-buttons .cta-button:nth-child(1) {
    animation-delay: 0.01s;
}

.cta-buttons .cta-button:nth-child(2) {
    animation-delay: 0.02s;
}

/* Smooth scrolling for webkit browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus states for accessibility */
.nav-link:focus,
.cta-button:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}