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

/* Mobile responsive - Phase 1: Fluid Typography System */
:root {
    /* Fluid Typography System */
    --font-size-h1: clamp(1.75rem, 4vw + 1rem, 3rem);        /* 28px → 48px */
    --font-size-h2: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);    /* 24px → 36px */
    --font-size-h3: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);    /* 20px → 24px */
    --font-size-body: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem); /* 15px → 18px */
    --font-size-small: clamp(0.875rem, 0.5vw + 0.5rem, 1rem); /* 14px → 16px */

    /* Spacing Scale - Fluid */
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);           /* 8px → 12px */
    --space-sm: clamp(0.75rem, 2vw, 1rem);             /* 12px → 16px */
    --space-md: clamp(1rem, 2.5vw, 1.25rem);           /* 16px → 20px */
    --space-lg: clamp(1.25rem, 3vw, 1.875rem);         /* 20px → 30px */
    --space-xl: clamp(1.875rem, 4vw, 2.5rem);          /* 30px → 40px */
    --space-2xl: clamp(2.5rem, 5vw, 3.75rem);          /* 40px → 60px */

    /* Container & Section Spacing */
    --container-padding: clamp(0.9375rem, 3vw, 1.25rem); /* 15px → 20px */
    --section-padding-block: clamp(2.5rem, 8vw, 7.5rem); /* 40px → 120px */
}

html {
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

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

/* Top Bar */
.top-bar {
    background: #1d3016;
    color: white;
    padding: 0;
    font-size: 14px;
    width: 100%;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

.top-bar.hidden {
    display: none;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    font-size: 14px;
}

.top-bar-left a i {
    font-size: 14px;
    color: #c9a961;
}

.top-bar-left a:hover {
    color: #c9a961;
}

.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-right a {
    color: #c9a961;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.top-bar-right a:not(.client-login-btn):hover {
    color: white;
    transform: translateY(-2px);
}

.client-login-btn {
    background: #c9a961;
    color: white !important;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.client-login-btn i {
    font-size: 12px;

    color: #1d3016;
    margin-right: 5px;
}

.client-login-btn:hover {
    background: #b89851;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}



/* Navigation */
nav, .main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 9998;
    padding: 0;
    width: 100%;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled, .main-nav.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

nav img, .main-nav img {
    height: 70px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled img, .main-nav.scrolled img {
    height: 50px;
}

/* Body padding to account for fixed nav + top bar */


.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

nav.scrolled .nav-content, .main-nav.scrolled .nav-content {
    height: 66px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #1d3016;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    color: #c9a961;
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.mobile-overlay.active {
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
    padding: 10px 0;
}

.nav-menu a:hover {
    color: #1d3016;
}

.nav-menu a.active {
    color: #c9a961;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #c9a961;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown > a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    list-style: none;
    min-width: 250px;
    padding: 0;
    margin: 0;
    z-index: 1001;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    border-bottom: 1px solid #e0e0e0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: #1d3016;
    color: white;
}

.cta-button {

    background: linear-gradient(135deg, #c9a961, #f4e5c2);
    color: #1d3016;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    margin-bottom: 25px;

    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    background: #c9a961;
    color: white;

    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
}

.cta-btn {
    background: #c9a961;
    color: white !important;
    padding: 14px 35px !important;
    min-height: 44px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #b89851;
    color: white !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1558904541-efa843a96f01?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
}

/* Mobile responsive - Phase 1: Hero Section Fluid Gap */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 5vw, 60px);
    align-items: center;
}

.hero-left {
    color: white;
}

.hero-left h1 {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-size-h1);
    color: white;
    margin: 20px 0;
    line-height: 1.2;
}

.hero-left p {
    font-size: var(--font-size-body);
    color: #e0e0e0;
    margin-bottom: 30px;
}

.hero-badge {
    display: inline-block;
    background: #c9a961;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-badge i {
    margin-right: 8px;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: #c9a961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.benefit-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.hero-right {
    display: flex;
    justify-content: center;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 450px;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
}

.form-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #1d3016;
    margin-bottom: 10px;
}

.form-title p {
    color: #c9a961;
    font-size: 14px;
    font-weight: 600;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

/* Mobile responsive - Phase 1: Touch Target Compliance */
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    min-height: 44px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #1d3016;
}

.submit-button {
    width: 100%;
    padding: 14px 20px;
    min-height: 44px;
    background: #c9a961;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.submit-button:hover {
    background: #b89851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

.form-note i {
    color: #1d3016;
    margin-right: 5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust Bar */
.trust-bar {
    background: white;
    padding: 80px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    font-size: 40px;
    color: #c9a961;
}

.trust-number {
    font-size: 36px;
    font-weight: 700;
    color: #1d3016;
}

.trust-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.btn {
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #1d3016;
    color: white;
}

.btn-primary:hover {
    background: #c9a961;
}

.btn-secondary {
    background: white;
    color: #1d3016;
}

.btn-secondary:hover {
    background: #c9a961;
    color: white;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 20px;
    background: linear-gradient(rgba(29, 48, 22, 0.95), rgba(29, 48, 22, 0.95)), url('https://images.unsplash.com/photo-1558904541-efa843a96f01?w=1600') center/cover;
    background-attachment: fixed;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: clamp(25px, 4vw, 40px);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.contact-form-container h2 {
    text-align: center;
    color: #1d3016;
    margin-bottom: 10px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.contact-form-container p {
    text-align: center;
    color: #666;
    margin-bottom: clamp(20px, 3vw, 30px);
}

.form-group {

    margin-bottom: 20px;
}

.form-group label {

    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    outline: none;
    border-color: #1d3016;
}

.submit-btn {
    width: 100%;
    padding: 14px 20px;
    min-height: 44px;
    background: #1d3016;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #c9a961;
}

/* Services Section */
.services-section {

    padding: 80px 20px 140px 20px;
    background: white;
}

.services-section h2 {
    text-align: center;
    color: #1d3016;
    font-size: 36px;
    margin-bottom: 50px;
}

/* Mobile responsive - Phase 1: Grid System Refinement */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {

    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {

    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {

    padding: 30px;
}

.service-content h3 {

    font-size: 24px;
    color: #1d3016;
    margin-bottom: 15px;
}

.service-content p {

    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Projects Section */
.projects-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.projects-section h2 {
    text-align: center;
    color: #1d3016;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 48, 22, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 20px;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay-content {
    text-align: center;
    color: white;
}

.project-overlay-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.project-overlay-content p {
    font-size: 16px;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 20px;
    background: linear-gradient(rgba(29, 48, 22, 0.85), rgba(29, 48, 22, 0.85)), url('https://images.unsplash.com/photo-1591719158753-2202ec3f6c9f?w=1600') center/cover;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.reviews-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.reviews-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.google-reviews {
    max-width: 800px;
    margin: 0 auto;
}

.review-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.review-stars {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
}

.review-author {
    font-weight: 600;
}

/* Footer */
footer {
    background: #1d3016;
    color: white;
    padding: 60px 20px 20px;
    width: 100%;
    overflow-x: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: var(--font-size-h3);
    color: #c9a961;
}

.footer-section p,
.footer-section a {
    color: #ddd;
    text-decoration: none;
    line-height: 2;
    display: block;
}

.footer-section a:hover {
    color: #c9a961;
}

.footer-section i {
    margin-right: 10px;
    color: #c9a961;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #c9a961;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom a {
    color: #c9a961;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* About Section */
.about-section {
    padding: 120px 20px;
    background: white;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1d3016;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #1d3016;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    color: #1d3016;
    margin-bottom: 5px;
}

.feature-text p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Services */
.services {
    padding: 120px 20px;
    background: #f8f9fa;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-size-h2);
    color: #1d3016;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-box {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    color: inherit;
}

.service-box:hover {
    text-decoration: none;
    color: inherit;

    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transition: opacity 0.3s;
    z-index: 0;
}

.service-box:hover::before {
    opacity: 0.25;
}

.service-box > * {
    position: relative;
    z-index: 1;
}

.service-box:nth-child(1)::before {
    background-image: url('../images/lutzlandscaping/AD13C2A8-A35A-415D-9041-E7904DDCBD9D(1).JPG');
}

.service-box:nth-child(2)::before {
    background-image: url('../images/Mowing/IMG_3928.JPG');
}

.service-box:nth-child(3)::before {
    background-image: url('../images/Tree Triming/20171005_093405.JPG');
}

.service-box:nth-child(4)::before {
    background-image: url('../images/Mowing/IMG_0331.JPG');
}

.service-box:nth-child(5)::before {
    background-image: url('../images/Snow/14EC459D-0BCE-4691-8205-42F85AF19FD9.JPG');
}

.service-box:nth-child(6)::before {
    background-image: url('../images/firewood/firewood.jpg');
}



.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1d3016, #2d4826);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.service-box h3 {
    color: #1d3016;
    font-size: var(--font-size-h3);
    margin-bottom: 15px;
}

.service-box p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 130px 20px;
    background: white;
}

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

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1d3016;
    margin-bottom: 10px;
}

.gallery-header p {
    font-size: 18px;
    color: #666;
}

/* Mobile responsive - Phase 1: Gallery Grid Refinement */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 30px;
    padding: 0 10px;
}

.gallery-cta {
    padding: 0 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 48, 22, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 30px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.gallery-overlay p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 120px 20px;
    background: #f8f9fa;
}

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

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

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-title {
    font-size: 20px;
    font-weight: 700;
    color: #1d3016;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #666;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #1d3016;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.author-info h4 {
    color: #1d3016;
    margin-bottom: 5px;
}

.stars {
    color: #ffd700;
    font-size: 16px;
}

/* Service Content with Sidebar Layout */
.service-content-wrapper {

    padding: 0;
    background: #f8f9fa;
}

.service-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
}

/* Sidebar Navigation */
/* Service Content Section */
.service-content-section {
    padding: 80px 20px;
    background: #fff;
}

.service-layout {
    align-items: flex-start;

    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    min-height: 600px;
}

.service-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: white;
    padding: 60px 30px;
    border-right: 1px solid #e8ede8;
    position: sticky;
    top: 155px;
    height: fit-content;
    align-self: flex-start;
    max-height: calc(100vh - 175px);
    overflow-y: auto;
    z-index: 10;
}

.service-sidebar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #1d3016;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2c5530;
    font-weight: 700;
}

.service-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.service-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 16px;
    border-left: 3px solid transparent;
}

.service-nav-item i {
    color: #c9a961;
    font-size: 18px;
    width: 20px;
}

.service-nav-item:hover {
    background: #f9f9f9;
    border-left-color: #c9a961;
    transform: translateX(5px);
}

.service-nav-item.active {
    background: linear-gradient(135deg, #1d3016, #2d4826);
    color: white;
    border-left-color: #c9a961;
    font-weight: 600;
}

.service-nav-item.active i {
    color: #c9a961;
}

/* Sidebar CTA */
.sidebar-cta {

    background: linear-gradient(135deg, #1d3016, #2d5024);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
}

.sidebar-cta h4 {

    color: white;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.sidebar-cta p {

    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 20px;
}

.sidebar-cta-btn {
    display: block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #c9a961, #f4e5c2);
    color: #1d3016;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.sidebar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201,169,97,0.4);
}

.sidebar-cta-btn i {
    margin-right: 8px;
}

/* Main Content Area */
.service-main-content {
    flex: 1;
    min-width: 0;

    padding: 60px 80px;
    background: white;
}

.content-block {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: start;
}

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

.content-images {

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.content-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.content-images img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.content-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1d3016;
    margin-bottom: 20px;
}

.content-text h3 {
    margin: 30px 0 15px;

    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1d3016;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-text h4 {
    font-size: 20px;
    color: #1d3016;
    margin: 25px 0 12px;
}

.content-text p {

    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.content-text ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.content-text ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.content-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c9a961;
    font-weight: bold;
    font-size: 18px;
}

/* CTA Section */
.cta-section {
    padding: 200px 15px;
    background: linear-gradient(rgba(29, 48, 22, 0.85), rgba(29, 48, 22, 0.85)), url('https://images.unsplash.com/photo-1558904541-efa843a96f01?w=1600') center/cover;
    background-attachment: fixed;
    text-align: center;
    margin-top: 0;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.6;
}





.cta-phone {
    color: white;
    font-size: 18px;
    margin-top: 25px;
}

.cta-phone i {
    color: #c9a961;
    margin-right: 10px;
}

.cta-phone a {
    color: #c9a961;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-phone a:hover {
    color: #f4e5c2;
}

.cta-content h2 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    color: #e0e0e0;
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 25px;
}



.cta-button.primary {
    background: #c9a961;
    color: white;
}

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

.cta-button.secondary {
    background: white;
    color: #1d3016;
}

.cta-button.secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Primary and Secondary Button Classes */
.primary-btn,
.secondary-btn {
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.primary-btn {
    background: #c9a961;
    color: white;
    border-color: #c9a961;
}

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

.secondary-btn {
    background: white;
    color: #1d3016;
    border-color: #1d3016;
}

.secondary-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Form Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message i {
    font-size: 20px;
    margin-top: 2px;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.success-message i {
    color: #28a745;
}

.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.error-message i {
    color: #dc3545;
}

.error-message ul {
    margin: 0;
    padding-left: 20px;
}

.error-message li {
    margin-bottom: 5px;
}

.error-message li:last-child {
    margin-bottom: 0;
}

/* Page Header */
.page-header {
    position: relative;
    background: linear-gradient(rgba(29, 48, 22, 0.85), rgba(29, 48, 22, 0.85)), url('https://images.unsplash.com/photo-1558904541-efa843a96f01?w=1600') center/cover;
    padding: 80px 20px;
    text-align: center;
    color: white;
    margin-top: 0;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header .container {
    position: relative;
    z-index: 10;

    max-width: 1200px;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 10;
}

.page-header p {
    font-size: 20px;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* About Content Section */
.about-content-section {
    padding: 80px 20px;
    background: white;
}

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

.about-grid .about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-grid .about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1d3016;
    margin-bottom: 20px;
}

.about-grid .about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #1d3016;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
}

.value-card h3 {
    color: #1d3016;
    font-size: 22px;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
    background: white;
}

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

.team-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-intro p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Careers Sections */
.careers-intro {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.careers-container {
    max-width: 900px;
    margin: 0 auto;
}

.careers-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1d3016;
    margin-bottom: 20px;
}

.careers-intro p {
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 15px;
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: #f8f9fa;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
}

.benefits h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1d3016;
    text-align: center;
    margin-bottom: 50px;
}

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

.benefit-card {
    background: white;
    padding: clamp(30px, 4vw, 40px) clamp(20px, 3vw, 30px);
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    border-right: 1px solid #e0e0e0;
}

.benefit-card:last-child {
    border-right: none;
}

.benefit-card i {
    font-size: clamp(36px, 5vw, 50px);
    color: #c9a961;
    margin-bottom: clamp(15px, 2vw, 20px);
}

.benefit-card h3 {
    color: #1d3016;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: clamp(12px, 1.5vw, 15px);
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Open Positions Section */
.open-positions {
    padding: 0;
    background: white;
}

.positions-container {
    max-width: 1000px;
    margin: 0 auto;
}

.open-positions h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1d3016;
    text-align: center;
    margin-bottom: 50px;
}

.position-card {
    margin: 0 auto 40px;
    background: white;
    border: none;
    border-radius: 10px;
    padding: 40px;
}

.position-card h3 {
    color: #1d3016;
    font-size: 28px;
    margin-bottom: 10px;
}

.position-type {
    color: #c9a961;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.position-card strong {
    color: #1d3016;
    font-size: 16px;
}

.position-card ul {
    margin: 15px 0 25px 0;
    padding-left: 30px;
}

.position-card li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.apply-btn {
    background: #c9a961;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.apply-btn:hover {
    background: #b89851;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: clamp(40px, 8vw, 80px) clamp(15px, 3vw, 20px);
    background: #f8f9fa;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 60px);
}

.contact-form {
    background: white;
    padding: clamp(25px, 4vw, 40px);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    color: #1d3016;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(20px, 3vw, 30px);
}







.form-group textarea {
    min-height: 120px;
    resize: vertical;
}



.contact-info-section h2 {
    font-family: 'Playfair Display', serif;
    color: #1d3016;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(20px, 3vw, 30px);
}

.info-card {
    display: flex;
    gap: clamp(15px, 2vw, 20px);
    margin-bottom: clamp(20px, 3vw, 30px);
    padding: clamp(18px, 2.5vw, 20px);
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-card i {
    font-size: clamp(24px, 3vw, 30px);
    color: #c9a961;
    flex-shrink: 0;
}

.info-card h3 {
    color: #1d3016;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: clamp(8px, 1vw, 10px);
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.info-card a {
    color: #1d3016;
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    color: #c9a961;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1d3016;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top:hover {
    background: #c9a961;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

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

/* Services Page Styles */


.services-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1d3016;
    margin-bottom: 15px;
}

.section-intro p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}







.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}



.service-content .service-icon {
    width: 60px;
    height: 60px;
    background: #1d3016;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}





.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-features li {
    color: #666;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: #c9a961;
    font-size: 16px;
}

.service-learn-more {
    display: inline-block;
    margin-top: 15px;
    color: #c9a961;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.service-learn-more:hover {
    color: #1d3016;
    transform: translateX(5px);
}

/* Service Content Wrapper with Sidebar Layout */


.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}



/* Sidebar Styles */
.service-nav a.active {
    background: #f8f9fa;
    border-left-color: #1d3016;
    color: #1d3016;
    font-weight: 700;
}







.sidebar-cta-button {
    display: block;
    padding: 14px 25px;
    background: linear-gradient(135deg, #c9a961, #f4e5c2);
    color: #1d3016;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.sidebar-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}

.sidebar-phone {
    display: block;
    color: #c9a961;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.sidebar-phone:hover {
    color: #f4e5c2;
}

.sidebar-phone i {
    margin-right: 8px;
}

/* Main Content Area */


.content-intro {
    margin-bottom: 60px;
}

.content-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1d3016;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.content-intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* Content Block with Images */


.content-block.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-block.reverse .content-text {
    order: 1;
}

.content-block.reverse .content-images {
    order: 2;
}



.content-img-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.content-img-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}





.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-list li {
    padding: 12px 0;
    color: #333;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-list li i {
    color: #c9a961;
    font-size: 18px;
    flex-shrink: 0;
}

/* Why Choose Us Section */
.content-why-choose {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 16px;
    margin-top: 60px;
}

.content-why-choose h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1d3016;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.why-choose-grid {
    grid-template-columns: repeat(4, 1fr);

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

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

.why-item i {
    font-size: 42px;
    color: #c9a961;
    margin-bottom: 20px;
    display: block;
}

.why-item h4 {
    font-size: 20px;
    color: #1d3016;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
    .service-layout {
        grid-template-columns: 260px 1fr;
    }
    
    .service-main-content {
        padding: 50px 50px;
    }
}

@media (min-width: 969px) and (max-width: 1200px) {
    .main-nav img {
        height: 60px;
    }
    
    .nav-menu .cta-btn {
        padding: 10px 18px;
        font-size: 14px;
        white-space: nowrap;
    }
}

@media (max-width: 968px) {
    /* Fix service container grid on mobile */
    .service-container {
        grid-template-columns: 1fr;
    }

    .service-layout {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        display: none;
    }

    /* Remove wrapper padding on mobile */
    .service-content-wrapper {
        padding: 0;
    }

    .service-main-content {
        padding: 40px 30px;
    }

    .content-block,
    .content-block.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Make images always appear first on mobile */
    .content-images {
        order: -1;
        height: 350px;
    
        position: relative;
        overflow: hidden;
        display: block;
        height: 350px;
        border-radius: 8px;
    }

    .content-images.single-image {
        height: auto;
    }

    .content-images.single-image img {
        position: static;
        height: auto;
    }

    .content-text {
        order: 0;
    }

    .content-block.reverse .content-text,
    .content-block.reverse .content-images {
        /* Reset order for reversed blocks - images still first */
        order: inherit;
    }

    .content-block.reverse .content-images {
        order: -1;
    }
    
    /* Why Choose Us - Tablet View */
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        flex-wrap: wrap;
        padding: 0 30px;
    }

    .content-why-choose {
        padding: 50px 40px;
    }

    .content-why-choose h3 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .why-item i {
        font-size: 38px;
    }

    .why-item h4 {
        font-size: 19px;
    }

    /* Why Choose Section (why-choose-us2.php) - Tablet View */
    .why-choose-section {
        padding: 0 0 80px 0;
    }

    .why-choose-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
        padding-top: 60px;
    }

    .why-choose-item {
        flex: 0 0 calc(50% - 20px);
    }

    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 20px;
    }

    .why-choose-item h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .why-choose-item p {
        font-size: 13px;
        line-height: 1.6;
    }

    .photo-gallery-container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .photo-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
        gap: 25px;
        max-width: 100%;
    }

    .gallery-intro h2 {
        font-size: 52px !important;
    }

    .filter-btn {
        padding: 14px 28px;
        font-size: 13px;
    }

    .gallery-section {
        padding: 40px 0;
    
        padding: 30px 0 !important;
        overflow-x: hidden;
    }

    .apple-landscape-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .apple-service-card {
        min-height: 350px;
    }
    
    .apple-card-image {
        height: 200px;
    }
    
    .apple-card-content {
        padding: 30px 25px;
    }
    
    .apple-card-content h3 {
        font-size: 24px;
    }

    /* Mobile responsive - Phase 3.1: Fix mobile layout without aggressive !important */
    html *:not(svg):not(path):not(circle):not(rect):not(polygon) {
        max-width: 100%;
        box-sizing: border-box;
    }

    html,
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        margin: 0;
    }

    .main-nav {
        padding: 8px 15px;
    }

    .nav-content {
        padding: 0 5px;
        gap: 10px;
        height: 60px;
    }

    .main-nav img {
        height: 45px;
        max-width: calc(100vw - 80px);
        object-fit: contain;
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: block !important;
        padding: 5px;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 80px 0 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        transition: right 0.3s ease;
        overflow-y: auto;
        align-items: stretch;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu > li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu > li > a {
        display: block;
        padding: 15px 25px;
        color: #333;
        font-weight: 500;
    }
    
    .nav-menu .cta-btn {
        margin: 15px 25px;
        text-align: center;
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        display: none;
        background: #f8f9fa;
        padding: 0;
        min-width: auto;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown > a::after {
        margin-left: auto;
        float: right;
    }
    
    .dropdown.active > a::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu li a {
        padding: 12px 25px 12px 45px;
        font-size: 14px;
    }
    
    /* Top Bar Mobile */
    .top-bar {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .top-bar-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        text-align: center;
        padding: 0 15px;
        justify-content: center;
    }
    
    .top-bar-left {
        flex-direction: row;
        gap: 15px;
        width: auto;
        text-align: center;
    }
    
    .top-bar-left a {
        font-size: 12px;
        justify-content: center;
    }
    
    /* Hide email on mobile to save space */
    .top-bar-left a[href^="mailto"] {
        display: none;
    }
    
    .top-bar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .top-bar-right a:not(.client-login-btn) {
        font-size: 14px;
    }
    
    .client-login-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    /* Mobile responsive - Phase 1: Hero Section Mobile Layout */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }

    .contact-card {
        max-width: 100%;
        padding: 30px 20px;
    
        padding: 25px 15px;
    }
    
    .hero-left h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-left p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .hero-left .tagline {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta .primary-btn,
    .hero-cta .secondary-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    
    
    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .intro-section h2,
    .services-preview h2,
    .about-section h2,
    .testimonials-section h2,
    .service-hero h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .intro-section p,
    .services-preview p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    /* Section Padding */
    section {
        padding: 40px 15px;
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .intro-section,
    .services-preview,
    .about-section,
    .testimonials-section,
    .cta-section,
    .trust-section,
    .projects-section,
    .reviews-section {
        padding: 40px 15px !important;
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .hero {
        padding: 40px 15px !important;
    }
    
    .about-content-section,
    .values-section,
    .team-section,
    .careers-intro,
    .benefits,
    .services-section,
    .service-detail-section,
    .process-section {
        padding: 30px 15px !important;
        overflow-x: hidden;
    }

    

    
    
    * {
        box-sizing: border-box;
    }
    
    /* Prevent horizontal scroll */
    .hero,
    .top-bar,
    nav,
    footer,
    .container,
    .hero-container,
    .services-grid,
    .projects-grid {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .services-grid,
    .projects-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card,
    .project-card {
        max-width: 100%;
        margin-bottom: 0;
    }
    
    .service-box {
        padding: 25px 15px;
        margin-bottom: 0;
    }
    
    .service-box h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service-box p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 40px 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
        margin-bottom: 0;
    }

    .testimonial-card p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .stars {
        font-size: 16px;
    }
    
    .review-card {
        padding: 25px 15px;
        margin-bottom: 15px;
    }
    
    .review-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .trust-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .trust-item {
        padding: 20px 15px;
        margin-bottom: 0;
    }
    
    .trust-item h3 {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .trust-item p {
        font-size: 14px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-grid .about-text h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .about-grid .about-text p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .page-header {
        padding: 60px 15px 40px;
        flex-direction: column;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 12px;
        display: block;
        width: 100%;
    }
    
    .page-header p {
        font-size: 16px;
        line-height: 1.6;
        display: block;
        width: 100%;
        margin-top: 10px;
    }
    
    /* Forms */
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    
        margin-bottom: 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 12px;
        width: 100%;
        box-sizing: border-box;
    
        padding: 10px !important;
        font-size: 14px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-width: 1px !important;
    }

    /* Mobile responsive - Phase 1: Enhanced Touch Targets */
    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 16px 18px;
        min-height: 48px;
        font-size: 16px;
    }
    
    .contact-section .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Contact page specific - remove padding on mobile */
    #contact.contact-section {
        padding: 0 !important;
    }

    /* Hide scroll to top button on mobile */
    .scroll-to-top {
        display: none;
    }

    
    
    .form-group label {
        font-size: 13px !important;
        margin-bottom: 5px !important;
    }
    
    
    
    .form-group textarea {
        min-height: 100px !important;
    }
    
    .submit-btn {
        width: 100%;
        padding: 12px !important;
        font-size: 14px !important;
    }
    
    .contact-info-section h2 {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }
    
    .values-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-section .benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .benefit-card {
        margin-bottom: 0;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .benefit-card:last-child {
        border-bottom: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        min-width: auto;
        margin-bottom: 0;
    }
    
    .service-content {
        padding: 25px 15px;
    }
    
    .service-content h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .service-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .section-intro h2,
    .careers-intro h2,
    .benefits h2,
    .open-positions h2,
    .gallery-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .section-intro p,
    .gallery-header p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Footer */
    footer {
        padding: 40px 15px 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .footer-column ul {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* CTA Section */
    
    .cta-content h2 {
        font-size: 26px;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .cta-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .primary-btn,
    .cta-buttons .secondary-btn,
    .cta-buttons .cta-button,
    .cta-button {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
    }
    
    /* Careers Page */
    .careers-intro p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .job-card {
        padding: 25px 15px;
        margin-bottom: 0;
    }
    
    .position-card {
        padding: 30px 15px;
        margin-bottom: 20px;
    }
    
    .position-card h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .position-card ul {
        margin: 12px 0 20px 0;
        padding-left: 25px;
    }
    
    .position-card li {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 8px;
    }
    
    /* Service Detail Pages */
    .service-hero {
        padding: 80px 15px;
    }
    
    .service-detail-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .service-detail-content .service-image {
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .service-detail-content .service-text {
        padding: 0 15px;
    }
    
    .service-detail-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .service-benefits h3 {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item-detail {
        padding: 25px 15px;
        gap: 15px;
    }
    
    .benefit-text-detail h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .benefit-text-detail p {
        font-size: 15px;
    }
    
    .process-container h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .process-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .process-step h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .process-step p {
        font-size: 15px;
    }
    
    /* Utility Classes */
    .hide-mobile {
        display: none !important;
    }
    
    .show-mobile {
        display: block !important;
    }

    .hero,
    .service-hero,
    .about-hero,
    .contact-hero {
        background-attachment: scroll; /* Fixed causes performance issues on mobile */
        background-size: cover;
        background-position: center center;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.2s !important;
        transition-duration: 0.2s !important;
    }

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

    /* Optimize hover effects for touch devices */
    .service-card:hover,
    .gallery-item:hover,
    .cta-btn:hover {
        transform: translateY(0); /* Disable hover lift on touch devices */
    }

    

    .content-images img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    .content-images img.active {
        opacity: 1;
        pointer-events: auto;
        z-index: 1;
    }

    /* Carousel Navigation Buttons */
    .carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(29, 48, 22, 0.8);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .carousel-nav:hover {
        background: rgba(29, 48, 22, 1);
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-nav:active {
        transform: translateY(-50%) scale(0.95);
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    /* Carousel Indicators */
    .carousel-indicators {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 10;
    }

    .carousel-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .carousel-indicator.active {
        background: #c9a961;
        width: 24px;
        border-radius: 4px;
    }
}

/* Mobile responsive - Phase 1: Tablet Service Breakpoint */
@media (max-width: 768px) and (min-width: 481px) {
    .service-main-content {
        padding: 35px 25px;
    }
}

@media (max-width: 600px) {
    .service-main-content {
        padding: 30px 20px;
    }

    .content-intro h2 {
        font-size: 32px;
    }

    .content-text h3 {
        font-size: 26px;
    }

    .content-images {
        grid-template-columns: 1fr;
        height: auto;
        gap: 10px;
    }

    .content-img-large,
    .content-img-small {
        height: 250px;
    }

    /* Why Choose Us - Mobile Enhancements */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        flex-direction: column;
        padding: 0 20px;
    }

    .content-why-choose {
        padding: 40px 25px;
        margin-top: 40px;
    }

    .content-why-choose h3 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .why-item i {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .why-item h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .why-item p {
        font-size: 14px;
    }

    /* Why Choose Section (why-choose-us2.php) - Mobile View */
    .why-choose-section {
        padding: 0 0 60px 0;
    }

    .why-choose-section h2 {
        font-size: 26px;
        margin-bottom: 30px;
        padding-top: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .why-choose-item {
        flex: 1 1 100%;
        padding: 0 15px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }

    .why-choose-item h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .why-choose-item p {
        font-size: 14px;
        line-height: 1.5;
    }

    .photo-gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
        max-width: 100%;
    }

    .photo-gallery-item {
        max-width: 100%;
        border-radius: 16px;
    }

    .photo-gallery-item:hover {
        transform: translateY(-8px);
    }

    .photo-gallery-item:nth-child(even):hover {
        transform: translateY(-8px);
    }

    .photo-gallery-section {
        padding: 140px 0 60px 0;
        overflow-x: hidden;
    }

    .photo-gallery-container {
        padding: 0;
        max-width: 100%;
        overflow-x: hidden;
    }

    .gallery-section {
        padding: 30px 0;
    }

    .gallery-intro {
        padding: 0 15px;
    }

    .gallery-intro h2 {
        font-size: 40px !important;
        letter-spacing: -0.5px;
    }

    .gallery-intro p {
        font-size: 16px !important;
        line-height: 1.6;
    }

    .photo-overlay h3 {
        font-size: 20px !important;
    }

    .photo-overlay p {
        font-size: 14px !important;
    }

    .photo-overlay {
        background: linear-gradient(to top, 
            rgba(29, 48, 22, 0.98) 0%, 
            rgba(29, 48, 22, 0.85) 60%, 
            transparent 100%);
    }

    .apple-landscape-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 25px 18px;
    }

    /* Force single column for grids */
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Benefits section - single column on small screens */
    .benefits-section {
        padding: 40px 0 70px;
    }

    .benefits-section h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .benefits-section .benefits-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-card {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .benefit-card:last-child {
        border-bottom: none;
    }

    /* Reduce background image quality/size on small screens for performance */
    .hero {
        background-size: cover;
        background-position: center 30%; /* Adjust focal point for mobile */
    }
}

/* Mobile responsive - Phase 1: Small Phone Service Breakpoint */
@media (max-width: 480px) {
    .service-main-content {
        padding: 25px 18px;
    }

    /* Why Choose Us - Small Phone Optimizations */
    .content-why-choose {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .content-why-choose h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .why-choose-grid {
        gap: 20px;
        padding: 0 15px;
    }

    .why-item i {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .why-item h4 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .why-item p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Why Choose Section (why-choose-us2.php) - Small Phone View */
    .why-choose-section {
        padding: 0 0 40px 0;
    }

    .why-choose-section h2 {
        font-size: 22px;
        margin-bottom: 25px;
        padding-top: 30px;
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .why-choose-item h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .why-choose-item p {
        font-size: 13px;
    }

    /* Contact page specific - remove padding on small screens */
    #contact.contact-section {
        padding: 0 !important;
    }

    /* Mobile responsive - Phase 1: Tighter Grid Gaps on Small Phones */
    .services-grid,
    .gallery-grid {
        gap: 16px;
    }

    .benefits-section .benefits-list {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    /* Further reduce padding on very small screens */
    section,
    .intro-section,
    .services-preview,
    .about-section,
    .testimonials-section,
    .cta-section,
    .trust-section,
    .projects-section,
    .reviews-section,
    .about-content-section,
    .values-section,
    .team-section,
    .careers-intro,
    .benefits,
    .services-section,
    .service-detail-section,
    .process-section {
        padding: 40px 15px !important;
    }

    .gallery-section {
        padding: 40px 0 !important;
    }

    .photo-gallery-container {
        padding: 0 10px !important;
        max-width: 100%;
        overflow-x: hidden;
    }

    .photo-gallery-grid {
        gap: 20px;
        padding: 0 5px;
    }

    .photo-gallery-item {
        border-radius: 12px;
    }

    .photo-overlay {
        padding: 30px 15px 20px;
    }

    .photo-overlay h3 {
        font-size: 18px !important;
        margin-bottom: 6px;
    }

    .photo-overlay p {
        font-size: 13px !important;
        line-height: 1.4;
    }

    .gallery-intro h2 {
        font-size: 28px !important;
    }

    .gallery-intro p {
        font-size: 15px !important;
    }

    /* Keep service-content-wrapper with no padding on mobile */
    .service-content-wrapper {
        padding: 0 !important;
    }

    .hero {
        padding: 30px 12px !important;
    }
    
    .page-header {
        padding: 50px 12px 30px;
    }
    
    .hero-left h1,
    .hero-content h1,
    .page-header h1,
    .service-hero h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .section-title,
    .intro-section h2,
    .services-preview h2,
    .about-section h2,
    .testimonials-section h2,
    .cta-content h2,
    .section-intro h2,
    .service-detail-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .nav-menu {
        width: 280px;
    
        width: 280px;
    }
    
    .primary-btn,
    .secondary-btn,
    .cta-buttons .primary-btn,
    .cta-buttons .secondary-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .top-bar {
        font-size: 13px;
        padding: 8px 12px;
    }

    .main-nav {
        padding: 6px 10px;
    }

    .nav-content {
        padding: 0;
        height: 50px;
    }

    .main-nav img {
        height: 40px;
        max-width: calc(100vw - 70px);
    }

    .mobile-menu-toggle {
        font-size: 22px;
        padding: 3px;
    }

    
    
    .service-box,
    .review-card,
    .trust-item,
    .value-card,
    .service-content,
    .benefit-item-detail,
    .process-step {
        padding: 0;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    /* Cards that need minimum padding on small screens */
    .benefit-card {
        padding: 25px 18px;
    }

    .info-card {
        padding: 16px;
    }

    .position-card {
        padding: 25px 18px;
    }

    .contact-card {
        padding: 20px 15px;
    }
    
    .services-grid,
    .projects-grid,
    .gallery-grid,
    .benefits-list,
    .process-steps {
        gap: 15px;
    }
    
    .service-hero {
        padding: 60px 12px;
    }
    
    .service-detail-content .service-image {
        padding: 0 12px;
        margin-bottom: 20px;
    }
    
    .service-detail-content .service-text {
        padding: 0 12px;
    }
    
    .service-detail-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    footer {
        padding: 30px 12px 12px;
    }

    .content-images {
        height: 250px;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Individual Service Page Styles */
.service-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 120px 20px;
    text-align: center;
    color: white;
    margin-top: 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 97, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: white;
    position: relative;
    z-index: 10;
}

.service-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.service-hero p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

/* Photo Gallery Page Styles */
.photo-gallery-section {
    padding: 180px 20px 120px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ede8 50%, #f8f9fa 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.photo-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(29, 48, 22, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.photo-gallery-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    color: #1d3016;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
}

.gallery-intro h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #c9a961, transparent);
    border-radius: 2px;
}

.gallery-intro p {
    font-size: 22px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease 0.2s both;
}

.filter-btn {
    padding: 16px 36px;
    background: white;
    border: 2px solid #e0e0e0;
    color: #1d3016;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 60px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.filter-btn:hover {
    border-color: #c9a961;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, #1d3016, #2d5024);
    color: white;
    border-color: #1d3016;
    box-shadow: 0 6px 20px rgba(29, 48, 22, 0.25);
}

.filter-btn.active::after {
    content: '✓';
    margin-left: 8px;
    font-size: 14px;
}

.filter-count {
    margin-left: 6px;
    font-size: 12px;
    opacity: 0.7;
    font-weight: 600;
}

/* Gallery Filters - Desktop/Mobile Visibility */
.gallery-filters-desktop {
    display: flex;
}

.gallery-filters-mobile {
    display: none;
    justify-content: center;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.2s both;
}

.filter-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1d3016;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.filter-select {
    width: 100%;
    max-width: 300px;
    padding: 16px 45px 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #1d3016;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 60px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231d3016' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.filter-select:hover,
.filter-select:focus {
    border-color: #c9a961;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.15);
    outline: none;
}

/* Mobile: Show dropdown, hide buttons (phones only) */
@media (max-width: 600px) {
    .gallery-filters-desktop {
        display: none !important;
    }

    .gallery-filters-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .filter-select {
        max-width: 100%;
    }
}

/* Photo Gallery Grid */
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 400px), 1fr));
    gap: 40px;
    margin-bottom: 120px;
    max-width: 100%;
}

.photo-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 4/3;
    background: white;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.08),
        0 2px 8px rgba(0,0,0,0.04);
    animation: fadeInScale 0.6s ease backwards;
    animation-delay: calc(var(--item-index) * 0.1s);
    max-width: 100%;
    box-sizing: border-box;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.photo-gallery-item:nth-child(1) { --item-index: 0; }
.photo-gallery-item:nth-child(2) { --item-index: 1; }
.photo-gallery-item:nth-child(3) { --item-index: 2; }
.photo-gallery-item:nth-child(4) { --item-index: 3; }
.photo-gallery-item:nth-child(5) { --item-index: 4; }
.photo-gallery-item:nth-child(6) { --item-index: 5; }
.photo-gallery-item:nth-child(7) { --item-index: 6; }
.photo-gallery-item:nth-child(8) { --item-index: 7; }
.photo-gallery-item:nth-child(9) { --item-index: 8; }
.photo-gallery-item:nth-child(10) { --item-index: 9; }
.photo-gallery-item:nth-child(11) { --item-index: 10; }
.photo-gallery-item:nth-child(12) { --item-index: 11; }
.photo-gallery-item:nth-child(13) { --item-index: 12; }
.photo-gallery-item:nth-child(14) { --item-index: 13; }
.photo-gallery-item:nth-child(15) { --item-index: 14; }
.photo-gallery-item:nth-child(16) { --item-index: 15; }
.photo-gallery-item:nth-child(17) { --item-index: 16; }
.photo-gallery-item:nth-child(18) { --item-index: 17; }
.photo-gallery-item:nth-child(19) { --item-index: 18; }
.photo-gallery-item:nth-child(20) { --item-index: 19; }

.photo-gallery-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #c9a961, #1d3016, #c9a961);
    background-size: 300% 300%;
    border-radius: 26px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s;
    animation: gradientRotate 3s ease infinite;
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hover effects removed per user request */
/* .photo-gallery-item:hover::before {
    opacity: 1;
} */

.photo-gallery-item::after {
    display: none;
}

/* Hover effects removed per user request */
/* .photo-gallery-item:hover {
    transform: translateY(-15px) scale(1.03) rotate(-1deg);
    box-shadow: 
        0 30px 80px rgba(201, 169, 97, 0.3),
        0 10px 30px rgba(0,0,0,0.15),
        0 0 0 6px rgba(201, 169, 97, 0.1);
}

.photo-gallery-item:nth-child(even):hover {
    transform: translateY(-15px) scale(1.03) rotate(1deg);
} */

.photo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.95) contrast(1.05) saturate(1.1);
}

/* Hover image effects removed per user request */
/* .photo-gallery-item:hover img {
    transform: scale(1.2) rotate(2deg);
    filter: brightness(1) contrast(1.15) saturate(1.2);
} */

/* Photo overlay hidden per user request */
.photo-overlay {
    display: none;
}

/* Legacy overlay styles - now hidden
.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(29, 48, 22, 0.98) 0%, 
        rgba(29, 48, 22, 0.85) 40%, 
        rgba(29, 48, 22, 0.3) 70%,
        transparent 100%);
    padding: 50px 30px 30px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    border-radius: 0 0 24px 24px;
}

.photo-gallery-item:hover .photo-overlay {
    background: linear-gradient(to top, 
        rgba(29, 48, 22, 0.98) 0%, 
        rgba(29, 48, 22, 0.95) 50%, 
        rgba(29, 48, 22, 0.8) 100%);
}
*/

.photo-overlay h3 {
    color: white;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
}

.photo-overlay h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9a961, transparent);
    border-radius: 2px;
}

.photo-overlay p {
    color: #c9a961;
    font-size: 16px;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    line-height: 1.6;
    font-weight: 500;
}

/* Responsive */



.service-detail-section {
    padding: 80px 20px 0px 20px;
    background: white;
}

.service-detail-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.service-intro-text {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
}

.service-intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1d3016;
    margin-bottom: 20px;
}

.service-intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

/* Apple-Style Landscape Grid */
.apple-landscape-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.apple-service-card {
    position: relative;
    background: #f9f9f9;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
}

.apple-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.apple-card-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s;
}

.apple-service-card:hover .apple-card-image {
    transform: scale(1.05);
}

.apple-card-content {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.apple-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #1d3016;
    margin-bottom: 15px;
    font-weight: 700;
}

.apple-card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}



/* Landscape Services Grid */
.landscape-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    max-width: 100%;
}

.landscape-service-item {
    background: white;
    padding: 0;
    border-radius: 0;
    transition: all 0.3s;
    border: none;
    border-left: 4px solid #c9a961;
    padding-left: 30px;
}

.landscape-service-item:hover {
    transform: none;
    box-shadow: none;
    border-color: #446e34;
}

.landscape-service-icon {
    width: 60px;
    height: 60px;
    background: #c9a961;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
}

.landscape-service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.landscape-service-item:hover .landscape-service-image {
    transform: scale(1.02);
}

.landscape-service-item h3 {
    font-size: 24px;
    color: #1d3016;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.landscape-service-item h4 {
    font-size: 15px;
    color: #1d3016;
    margin: 25px 0 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.landscape-service-item p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.landscape-service-item ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.landscape-service-item ul li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 30px;
    font-size: 14px;
    line-height: 1.6;
}

.landscape-service-item ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c9a961;
    font-weight: bold;
    font-size: 18px;
}

.landscape-service-item ul li strong {
    color: #1d3016;
}

.service-note {
    font-style: italic;
    color: #888;
    font-size: 13px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Why Choose Section */
.why-choose-section {
    background: #f9f9f9;
    padding: 0 0 140px 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.why-choose-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1d3016;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    padding-top: 80px;
}



.why-choose-item {
    text-align: center;
    padding: 0;
    flex: 1;
}

.why-icon {
    width: 90px;
    height: 90px;
    background: #c9a961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: white;
    transition: all 0.3s;
}

.why-choose-item:hover .why-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.why-choose-item h3 {
    font-size: 18px;
    color: #1d3016;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-item p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    display: block;
    overflow: hidden;
}

.service-detail-content .service-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-detail-content .service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-content .service-text {
    text-align: left;
    padding: 0 20px;
}

.service-detail-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #1d3016;
    margin-bottom: 25px;
    text-align: left;
}

.service-detail-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-benefits {
    margin-top: 60px;
}

.service-benefits h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1d3016;
    text-align: center;
    margin-bottom: 40px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-item-detail {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.benefit-icon-detail {
    width: 60px;
    height: 60px;
    background: #1d3016;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-text-detail h4 {
    color: #1d3016;
    font-size: 20px;
    margin-bottom: 10px;
}

.benefit-text-detail p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.process-section {
    padding: 80px 20px 100px;
    background: #f8f9fa;
}

.benefits-section {
    padding: clamp(40px, 8vw, 80px) 0 clamp(50px, 10vw, 100px);
    background: white;
    width: 100%;
    position: relative;
}

.benefits-section::before {
    content: '';
    display: block;
    width: clamp(120px, 30vw, 240px);
    height: clamp(2px, 0.3vw, 3px);
    background: #c9a961;
    margin: 0 auto clamp(30px, 6vw, 60px);
    border-radius: 2px;
}

.benefits-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.375rem);
    color: #1d3016;
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 50px);
    padding: 0 20px;
}

.benefits-section .benefits-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 100%;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #1d3016;
    margin-bottom: 15px;
}

.process-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1d3016, #2d4826);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.process-step h3 {
    color: #1d3016;
    font-size: 22px;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Footer Container */
footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* Page Header Container - Single Column */


.page-header .container h1,
.page-header .container p {
    display: block;
    width: 100%;
}

footer h3 {
    color: #c9a961;
    margin-bottom: 20px;
}

footer p {
    color: #ddd;
    line-height: 1.8;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

footer ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #c9a961;
}

footer ul li i {
    color: #c9a961;
    margin-right: 10px;
    width: 20px;
    display: inline-block;
    flex-shrink: 0;
}

/* Footer Social Icons */
.footer-social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social-icons a {
    color: #c9a961;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icons a:hover {
    color: white;
    transform: translateY(-2px);
}

.footer-social-icons a i {
    margin: 0;
    width: auto;
}

/* Footer Certifications/Memberships */
.footer-certifications {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.footer-certifications a,
.footer-certifications > span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-certifications img {
    height: 50px;
    width: 80px;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-certifications a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-certifications a:hover img {
    opacity: 1;
}

/* Responsive - stack on mobile */
@media (max-width: 768px) {
    .footer-certifications {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .footer-certifications img {
        height: 40px;
        width: 65px;
    }
}

/* Responsive */


/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 968px) {
    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-section .benefits-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .benefit-card {
        border-right: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .benefit-card:nth-child(2n) {
        border-right: none;
    }
    
    .benefit-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile responsive - Phase 1: 600px Breakpoint */


/* Small Mobile */


/* Desktop Styles - Min-width breakpoints (MUST come AFTER mobile styles) */
@media (min-width: 969px) {
    /* Navigation - Horizontal on Desktop */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        overflow: visible !important;
    }
    
    .nav-menu > li {
        border-bottom: none !important;
    }
    
    .mobile-overlay {
        display: none !important;
    }
    
    /* Top Bar - Horizontal */
    .top-bar-content {
        flex-direction: row !important;
        justify-content: space-between !important;
    }
    
    .top-bar-left {
        flex-direction: row !important;
        gap: 25px !important;
    }
    
    /* CTA Buttons - Horizontal Layout (Ready to Transform sections) */
    .cta-buttons {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 15px !important;
    }
    
    .cta-buttons .primary-btn,
    .cta-buttons .secondary-btn,
    .cta-buttons .cta-button {
        width: auto !important;
        flex: 0 1 auto !important;
    }
    
    /* Hero CTA buttons can wrap on smaller desktop screens */
    .hero-cta,
    .hero-buttons {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
    }
    
    .hero-cta .primary-btn,
    .hero-cta .secondary-btn {
        width: auto !important;
        flex: 0 1 auto !important;
    }
    
    /* Page Headers - Keep Single Column Centered */
    .page-header .container {
        display: block !important;
        text-align: center !important;
    }
    
    .page-header .container h1,
    .page-header .container p {
        display: block !important;
        width: 100% !important;
    }
    
    /* Homepage Hero Section - 2 Column */
    .hero-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 60px !important;
    }
    
    .hero-benefits {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Values/Benefits Cards - Horizontal */
    .values-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
    }
    
    /* Trust Bar - Horizontal */
    .trust-container {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 40px !important;
    }
    
    /* Services Cards - Horizontal Grid */
    .services-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 30px !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
        gap: 40px !important;
    }
    
    /* Gallery - Horizontal Grid */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
        gap: 30px !important;
    }
    
    /* Testimonials - Horizontal */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
    }
    
    /* Process Steps - Horizontal */
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 30px !important;
    }
    
    /* Projects Grid - Horizontal */
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        gap: 30px !important;
    }
    
    /* Benefits Section with 4 columns */
    .benefits-section .benefits-list {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0 !important;
    }
    
    .benefit-card {
        border-right: 1px solid #e0e0e0 !important;
        border-bottom: none !important;
    }
    
    .benefit-card:last-child {
        border-right: none !important;
    }
    
    /* Contact Section - 2 Column */
    .contact-section .container {
        grid-template-columns: 1fr 1fr !important;
        gap: 60px !important;
    }
    
    /* Footer - Horizontal */
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 40px !important;
        text-align: left !important;
    }
    
    /* About Grid on About Page - 2 Column */
    .about-content,
    .about-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 60px !important;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ========================================
   MOBILE RESPONSIVE - PHASE 2
   Additional Breakpoints & Optimizations
   ======================================== */

/* Mobile responsive - Phase 2.3: Spacing Consistency System */


/* Mobile responsive - Phase 2.2: Extra Small Phones (320px - 360px) */
@media (max-width: 360px) {
    .hero-left h1,
    h1 {
        font-size: 1.5rem; /* 24px */
        line-height: 1.1;
    }

    h2 {
        font-size: 1.25rem; /* 20px */
    }

    .hero {
        padding: 30px 12px;
        min-height: 500px;
    }

    .contact-card {
        padding: 20px 15px;
    }

    .form-field input,
    .form-field select {
        padding: 14px;
        font-size: 15px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* Tighter spacing for very small screens */
    .services,
    .about,
    .projects {
        padding: var(--space-2xl) var(--container-padding);
    }
}

/* Mobile responsive - Phase 2.2: Small Tablets Portrait (600px - 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .hero-container {
        gap: var(--space-xl);
    }

    .hero-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Use spacing variables for consistency */
    section {
        padding: var(--section-padding-block) var(--container-padding);
    }
}

/* Mobile responsive - Phase 2.2: Landscape Phone Optimization (up to 812px height) */
@media (max-height: 812px) and (orientation: landscape) {
    .hero {
        padding: 40px 20px;
        min-height: auto;
    }

    .service-hero {
        padding: 60px 20px;
        min-height: 300px;
    }

    .hero-container {
        gap: var(--space-lg);
    }

    /* Prevent excessive vertical spacing in landscape */
    section {
        padding: var(--space-2xl) var(--container-padding);
    }
}

/* Mobile responsive - Phase 2.4: Background Image Optimization */


/* Mobile responsive - Phase 2.4: Smaller Background Images on Mobile */


/* ========================================
   MOBILE RESPONSIVE - PHASE 3
   Performance & Accessibility Optimizations
   ======================================== */

/* Mobile responsive - Phase 3.2: Faster Animations on Mobile */


/* Mobile responsive - Phase 3.2: Respect User Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    /* Allow only opacity transitions for essential UI feedback */
    button,
    a,
    input,
    select,
    textarea {
        transition: opacity 0.2s ease !important;
    }
}

/* ========================================
   MOBILE IMAGE CAROUSEL
   ======================================== */

/* Mobile responsive - Image Carousel on Mobile */



/* ========================================
   JOB APPLICATION FORM
   ======================================== */

/* Job Application Section */
.job-application {
    padding: 80px 20px;
    background: white;
}

.job-application-container {
    max-width: 900px;
    margin: 0 auto;
}

.job-application h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1d3016;
    text-align: center;
    margin-bottom: 15px;
}

.job-application > div > p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.job-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #1d3016;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group .required {
    color: #c9a961;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a961;
}

.form-group input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 2px dashed #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: border-color 0.3s;
}

.form-group input[type="file"]:hover {
    border-color: #c9a961;
}

.file-note {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.submit-btn {
    width: 100%;
    background: #c9a961;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
}

.submit-btn:hover:not(:disabled) {
    background: #b89851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form-message i {
    margin-right: 8px;
}

.form-message ul {
    margin: 10px 0 0 25px;
    padding: 0;
}

.form-message li {
    margin: 5px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .job-application {
        padding: 60px 15px;
    }
    
    .job-form {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .job-application h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .job-application h2 {
        font-size: 24px;
    }
    
    .job-form {
        padding: 20px 15px;
    }
}
