/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    letter-spacing: 0.3px;
    padding-top: 98px; /* Prevent header overlap on mobile */
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.5px;
    font-family: 'Montserrat', 'Neutraface', sans-serif;
}

h1 {
    font-size: 4.5rem;
    font-weight: 200;
    letter-spacing: -2px;
}

h2 {
    font-size: 3.2rem;
    font-weight: 300;
    letter-spacing: -1px;
}

h3 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

h4 {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0px;
}

h2 span, h3 span {
    color: #b2cd98;
    font-weight: 400;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.2px;
    font-weight: 300;
}

/* Luxury Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #b2cd98 0%, #9bb885 100%);
    color: #000000;
    border: 1px solid #b2cd98;
    box-shadow: 0 8px 30px rgba(178, 205, 152, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #9bb885 0%, #8aa474 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(178, 205, 152, 0.4);
}

.btn-outline {
    background: transparent;
    color: #b2cd98;
    border: 1px solid #b2cd98;
    box-shadow: 0 0 0 1px transparent;
}

.btn-outline:hover {
    background: #b2cd98;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(178, 205, 152, 0.3);
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(178, 205, 152, 0.1);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 40px rgba(178, 205, 152, 0.1);
    border-bottom: 1px solid #b2cd98;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    position: relative;
}

/* Mobile Header Sections */
.mobile-header-top,
.mobile-header-bottom {
    display: block;
}

.desktop-header {
    display: none;
}

/* Mobile Header Top Row */
.mobile-header-top {
    background: #333333;
    padding: 8px 0;
}

.mobile-header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.mobile-header-top .logo img {
    height: 35px;
    width: auto;
    filter: brightness(1.1) contrast(1.2);
}

.operating-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b2cd98;
    font-size: 14px;
    font-weight: 500;
}

.operating-hours i {
    font-size: 16px;
}

/* Mobile Header Bottom Row */
.mobile-header-bottom {
    background: #1a1a1a;
    padding: 0;
}

.mobile-header-bottom .container {
    display: flex;
    padding: 0;
}

.mobile-quote-btn {
    background: #b2cd98;
    color: #000000;
    padding: 12px 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 50%;
    text-align: center;
    border-right: 1px solid #333333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-quote-btn:hover {
    background: #9bb885;
    color: #000000;
}

.mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #b2cd98;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    width: 50%;
    padding: 12px 0;
}

.mobile-phone:hover {
    background: #9bb885;
    color: #000000;
}

.mobile-phone i {
    color: #000000;
    font-size: 16px;
}

/* Logo styling with actual image */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.logo img {
    height: 60px;
    width: auto;
    transition: all 0.4s ease;
    filter: brightness(1.1) contrast(1.2);
}

.logo svg text,
.logo img svg text {
    font-weight: 700 !important;
    stroke: currentColor;
    stroke-width: 0.5px;
}

.logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b2cd98, #9bb885);
    transition: width 0.4s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

/* Navigation styling with luxury touches */
.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 50px;
}

.nav-desktop a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    position: relative;
    padding: 12px 0;
    transition: all 0.4s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: #b2cd98;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b2cd98, #9bb885);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

/* Header buttons with luxury styling */
.header-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-buttons .btn {
    padding: 12px 28px;
    font-size: 12px;
    border-radius: 0;
}

.header-buttons .btn i {
    margin-right: 8px;
}

/* Mobile toggle with enhanced styling */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1002;
}

.mobile-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(178, 205, 152, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(178, 205, 152, 0.05);
    border-color: rgba(178, 205, 152, 0.2);
}

.mobile-toggle:hover::before {
    opacity: 1;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #b2cd98;
    margin: 4px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    position: relative;
    z-index: 2;
    display: block;
}

.mobile-toggle:hover span {
    background: #fff;
}

.mobile-toggle.active {
    visibility: hidden;
    pointer-events: none;
}

.mobile-toggle.active span:nth-child(1) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    opacity: 0;
}

/* Enhanced Mobile navigation - Right Side Slide */
.nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 120px 0 60px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    z-index: 1000;
}

/* Mobile menu overlay */
.nav-mobile::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.nav-mobile.active {
    transform: translateX(0);
    visibility: visible;
}

.nav-mobile.active::before {
    opacity: 1;
    visibility: visible;
    left: -100vw;
    width: 100vw;
    pointer-events: all;
}

.nav-mobile ul {
    list-style: none;
    text-align: left;
    padding: 0 40px;
    margin: 0;
}

.nav-mobile ul li {
    margin: 0;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInFromRight 0.5s ease forwards;
}

.nav-mobile.active ul li:nth-child(1) { animation-delay: 0.1s; }
.nav-mobile.active ul li:nth-child(2) { animation-delay: 0.15s; }
.nav-mobile.active ul li:nth-child(3) { animation-delay: 0.2s; }
.nav-mobile.active ul li:nth-child(4) { animation-delay: 0.25s; }
.nav-mobile.active ul li:nth-child(5) { animation-delay: 0.3s; }

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-mobile a {
    color: #b2cd98;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    padding: 18px 0;
    display: block;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-mobile a:hover {
    color: #ffffff;
    padding-left: 10px;
}

.nav-mobile a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #b2cd98;
    transition: width 0.3s ease;
}

.nav-mobile a:hover::after {
    width: 100%;
}

/* Mobile menu close button */
.nav-mobile .close-menu {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    opacity: 0;
    transform: rotate(-90deg);
    animation: fadeInRotate 0.5s ease forwards;
    animation-delay: 0.3s;
    z-index: 9999;
    pointer-events: auto;
}

.nav-mobile .close-menu::before,
.nav-mobile .close-menu::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #b2cd98;
    top: 50%;
    left: 0;
    transition: all 0.3s ease;
}

.nav-mobile .close-menu::before {
    transform: translateY(-50%) rotate(45deg);
}

.nav-mobile .close-menu::after {
    transform: translateY(-50%) rotate(-45deg);
}

.nav-mobile .close-menu:hover::before,
.nav-mobile .close-menu:hover::after {
    background: #fff;
}

@keyframes fadeInRotate {
    to {
        opacity: 1;
        transform: rotate(0);
}
}



/* Page Header with green accents */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #111111 100%);
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b2cd98, #9bb885, #b2cd98);
}

.page-header .container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #b2cd98, #9bb885);
    border-radius: 2px;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section with luxury styling */
.hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
    padding: 40px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(178,205,152,0.08)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(178, 205, 152, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    padding: 40px 0;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b2cd98, #9bb885, #b2cd98, transparent);
    border-radius: 2px;
}

.hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Trust Badges with JDS styling */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    padding: 15px 20px;
    border-radius: 0;
    text-align: left;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.badge:hover {
    transform: translateY(-2px);
}

.badge i {
    font-size: 1.5rem;
    color: #b2cd98;
    margin-bottom: 0;
    display: block;
    flex-shrink: 0;
}

.badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}



/* Hero Image - removed as per new design */
.hero-image {
    display: none;
}

.hero-image img {
    display: none;
}

/* Our Story Section */
.our-story {
    padding: 60px 0 80px;
    background-color: #111111;
}

.our-story .content-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.our-story h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    margin-bottom: 40px;
    color: #ffffff;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -1px;
}

.our-story h2 span {
    color: #b2cd98;
}

.our-story p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #b2cd98;
    margin-bottom: 10px;
}

.stat p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Meet Team Section */
.meet-team {
    padding: 80px 0;
    background-color: #000000;
}

.team-grid {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
}

.member-image {
    margin-bottom: 25px;
}

.member-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #b2cd98;
}

.member-info h4 {
    color: #b2cd98;
    margin-bottom: 5px;
}

.role {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.8;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.member-credentials span {
    background-color: #333333;
    color: #b2cd98;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Our Values Section */
.our-values {
    padding: 80px 0;
    background-color: #111111;
}

.values-grid {
    display: grid;
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background-color: #000000;
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #b2cd98;
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #b2cd98;
    border-radius: 50%;
    margin-bottom: 25px;
}

.value-icon i {
    font-size: 2rem;
    color: #000000;
}

.value-card h3 {
    color: #b2cd98;
    margin-bottom: 15px;
}

.value-card p {
    opacity: 0.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Credentials Section */
.credentials {
    padding: 80px 0;
    background-color: #000000;
}

.credentials-grid {
    display: grid;
    gap: 30px;
    margin-top: 60px;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-2px);
    border-color: #b2cd98;
}

.credential-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #b2cd98;
    border-radius: 10px;
    flex-shrink: 0;
}

.credential-logo i {
    font-size: 1.5rem;
    color: #000000;
}

.credential-info h4 {
    color: #b2cd98;
    margin-bottom: 10px;
}

.credential-info p {
    opacity: 0.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Services Detailed Section */
.services-detailed {
    padding: 80px 0;
    background-color: #000000;
}

.services-detailed h2 {
    text-align: center;
    margin-bottom: 20px;
}

.service-detail {
    margin-bottom: 80px;
}

.service-content {
    display: grid;
    gap: 60px;
    align-items: center;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.service-header .service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #b2cd98;
    border-radius: 15px;
    flex-shrink: 0;
}

.service-header .service-icon i {
    font-size: 1.8rem;
    color: #000000;
}

.service-header h3 {
    margin: 0;
    color: #b2cd98;
}

.service-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.service-features {
    margin: 30px 0;
}

.service-features h4 {
    color: #b2cd98;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    padding: 10px 0;
}

.service-features li i {
    color: #b2cd98;
    font-size: 1rem;
    width: 20px;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Our Process Section */
.our-process {
    padding: 80px 0;
    background-color: #111111;
}

.our-process h2 {
    text-align: center;
    margin-bottom: 20px;
}

.process-steps {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background-color: #000000;
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 40px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: #b2cd98;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #b2cd98;
    color: #000000;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
}

.step-content h4 {
    color: #b2cd98;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-content p {
    margin: 0;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
}

/* Service Benefits Section */
.service-benefits {
    padding: 80px 0;
    background-color: #000000;
}

.service-benefits h2 {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #b2cd98;
}

.benefit-card i {
    font-size: 3rem;
    color: #b2cd98;
    margin-bottom: 25px;
    display: block;
}

.benefit-card h4 {
    color: #b2cd98;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    opacity: 0.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background-color: #111111;
}

.quote-wrapper {
    display: grid;
    gap: 40px;
    align-items: start;
}

.quote-form {
    background-color: #000000;
    border: 1px solid #333333;
    border-radius: 20px;
    padding: 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.quote-form-header {
    flex-shrink: 0;
    margin-bottom: 8px;
}

.quote-form h3 {
    margin-bottom: 4px;
    font-size: 1.4rem;
    line-height: 1.2;
}

.quote-form p {
    margin-bottom: 0;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    line-height: 1.3;
}

.contact-form {
    display: grid;
    gap: 6px;
    flex: 1;
    align-content: start;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #333333;
    border-radius: 4px;
    background-color: #1a1a1a;
    color: #888888;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    height: 30px;
    line-height: 1.2;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888888' 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 8px center;
    background-size: 16px;
    padding-right: 30px;
}

.contact-form select:focus {
    border-color: #b2cd98;
    outline: none;
}

.contact-form select:invalid {
    color: #888888 !important;
}

.contact-form select:valid {
    color: #ffffff !important;
}

.contact-form select option {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
}

.contact-form select option[value=""] {
    color: #888888;
    font-style: italic;
}

.contact-form select option:not([value=""]) {
    color: #ffffff;
    background-color: #1a1a1a;
}

/* Ensure placeholder shows when nothing is selected */
.contact-form select:required:invalid {
    color: #888888;
}

.contact-form textarea {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #333333;
    border-radius: 4px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    height: 45px;
    resize: none;
    line-height: 1.3;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888888;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
}

.contact-form button {
    width: 100%;
    padding: 6px 16px;
    font-size: 11px;
    margin-top: 4px;
    height: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    box-sizing: border-box;
}

/* File Upload Styling */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 8px;
    border: 1px solid #333333;
    border-radius: 4px;
    background-color: #1a1a1a;
    color: #888888;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    height: 30px;
    box-sizing: border-box;
    line-height: 1.2;
}

.file-upload-label:hover {
    border-color: #b2cd98;
    color: #b2cd98;
}

.file-upload-wrapper input[type="file"]:focus + .file-upload-label {
    border-color: #b2cd98;
}

.file-upload-text {
    font-size: 9px;
    opacity: 0.7;
    margin-left: 4px;
    font-weight: 300;
}

/* Project Showcase */
.project-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.showcase-items {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.showcase-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateX(100%) scale(0.95);
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
}

.showcase-item:first-child {
    transform: translateX(0) scale(1);
}

.showcase-item.active {
    transform: translateX(0) scale(1);
    z-index: 2;
}

.showcase-item.prev {
    transform: translateX(-100%) scale(0.95);
    z-index: 1;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.showcase-item.active img {
    transform: scale(1.05);
}

.showcase-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: #ffffff;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
}

.showcase-item.active .showcase-info {
    transform: translateY(0);
    opacity: 1;
}

.showcase-info h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #b2cd98;
}

/* Showcase Indicators */
.showcase-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: #b2cd98;
    transition: left 5s linear;
}

.indicator.active::before {
    left: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Services Overview - Modern Redesign */
.services-overview {
    padding: 120px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

/* Animated Background Pattern */
.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, #b2cd98 35px, #b2cd98 70px);
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(70px); }
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.services-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.services-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #b2cd98, transparent);
    border-radius: 2px;
}

.services-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-top: 30px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    perspective: 1000px;
}

/* 3D Service Cards */
.service-card {
    position: relative;
    height: 400px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
    perspective: 1000px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Card Faces */
.service-front,
.service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.service-front {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(17, 17, 17, 0.95) 100%);
    border: 1px solid rgba(178, 205, 152, 0.2);
    backdrop-filter: blur(10px);
}

.service-front::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(178, 205, 152, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.service-card:hover .service-front::before {
    transform: rotate(45deg) scale(1.2);
}

.service-back {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #b2cd98;
    transform: rotateY(180deg);
    color: #ffffff;
}

/* Icon Wrapper */
.service-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.service-icon-wrapper i {
    font-size: 3rem;
    color: #b2cd98;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(178, 205, 152, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
}

.service-card:hover .service-icon-wrapper i {
    transform: scale(1.1) rotate(5deg);
}

/* Service Content */
.service-front h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.service-front p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

.service-number {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(178, 205, 152, 0.1);
    line-height: 1;
}

/* Back Face Content */
.service-back h4 {
    font-size: 1.6rem;
    color: #b2cd98;
    margin-bottom: 20px;
}

.service-back p {
    margin-bottom: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

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

.service-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.service-features i {
    color: #b2cd98;
    margin-right: 10px;
    font-size: 0.9rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #b2cd98;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    gap: 15px;
    color: #9bb885;
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(178, 205, 152, 0.1) 0%, rgba(178, 205, 152, 0.05) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.services-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* Entrance Animations */
.service-card {
    opacity: 0;
    transform: translateY(50px);
    animation: serviceCardEnter 0.8s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes serviceCardEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Responsive */
@media (max-width: 767px) {
    .services-overview {
        padding: 80px 0;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        height: 380px;
    }
    
    .service-front,
    .service-back {
        padding: 30px 20px;
    }
    
    .service-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .service-icon-wrapper i {
        font-size: 2.5rem;
    }
    
    .service-front h3 {
        font-size: 1.5rem;
    }
    
    .service-number {
        font-size: 4rem;
    }
    
    .services-cta {
        padding: 30px 20px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 35px;
    }
    
    .service-card {
        height: 420px;
    }
}

/* Why Choose Us section - Stunning Side-by-Side Design */
.why-choose-us {
    padding: 120px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, rgba(178, 205, 152, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 80px;
    position: relative;
    color: #ffffff;
}

.section-title span {
    background: linear-gradient(135deg, #b2cd98 0%, #9bb885 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #b2cd98, #9bb885, transparent);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(17, 17, 17, 0.5) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(178, 205, 152, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #b2cd98, transparent, #9bb885);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(17, 17, 17, 0.9) 100%);
    border-radius: 19px;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(178, 205, 152, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(178, 205, 152, 0.1) 0%, rgba(178, 205, 152, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(178, 205, 152, 0.2) 0%, rgba(178, 205, 152, 0.1) 100%);
    transform: rotate(5deg) scale(1.1);
}

.feature-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #b2cd98 0%, #9bb885 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s ease;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-card:hover h4 {
    color: #b2cd98;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    transition: all 0.3s ease;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(178, 205, 152, 0.1);
    line-height: 1;
    transition: all 0.5s ease;
    pointer-events: none;
}

.feature-card:hover .feature-number {
    color: rgba(178, 205, 152, 0.2);
    transform: scale(1.2);
}

.cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.cta-wrapper .btn {
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-wrapper .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.6s ease;
    z-index: -1;
}

.cta-wrapper .btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Testimonials Carousel */
.testimonials-carousel {
    padding: 100px 0 80px;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.testimonials-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b2cd98, transparent);
}

.testimonials-carousel h2 {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.testimonials-carousel .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    text-align: center;
}

.testimonials-carousel h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #b2cd98, #9bb885);
    border-radius: 2px;
}

.carousel-container {
    width: 100%;
    padding: 40px 0;
}

.row {
    display: flex;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.row-content {
    display: flex;
    gap: 20px;
}

.row-top .row-content {
    animation: scrollLeft 480s linear infinite;
}

.row-bottom .row-content {
    animation: scrollRight 480s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.comment-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 24px;
    min-width: 380px;
    max-width: 380px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.comment-card:hover {
    background-color: #222;
    border-color: #444;
    transform: translateY(-2px);
}

.comment-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    background-color: #b0cd94;
    flex-shrink: 0;
}

.user-info {
    flex: 1;
}

.username {
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
}

.timestamp {
    font-size: 13px;
    color: #666;
}

.comment-text {
    color: #d0d0d0;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 8px;
}

.stars {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    gap: 2px;
}

.stars svg {
    width: 20px;
    height: 20px;
    fill: #b0cd94;
}

/* CTA Section with luxury styling */
.cta-section {
    background: linear-gradient(135deg, #b2cd98 0%, #9bb885 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="ctaPattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23ctaPattern)"/></svg>');
    opacity: 0.6;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 4rem;
    color: #000000;
    margin-bottom: 25px;
    font-weight: 200;
    letter-spacing: -2px;
}

.cta-content h2 span {
    color: #000000;
    opacity: 0.9;
}

.cta-content p {
    font-size: 1.4rem;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.cta-section .btn-primary {
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    font-weight: 500;
    min-width: 220px;
    padding: 20px 50px;
    font-size: 13px;
}

.cta-section .btn-primary:hover {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-outline {
    background: transparent;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.6);
    min-width: 220px;
    padding: 20px 50px;
    font-size: 13px;
}

.cta-section .btn-outline:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    border-color: #000000;
    transform: translateY(-4px);
}

/* Footer with luxury styling */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    color: #ffffff;
    padding: 100px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b2cd98, #9bb885, #b2cd98, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-section h3 {
    color: #b2cd98;
    margin-bottom: 30px;
    font-size: 1.8rem;
    position: relative;
    font-weight: 200;
    letter-spacing: 2px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 50px;
    height: 1px;
    background: #b2cd98;
}

.footer-section h4 {
    color: #b2cd98;
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #b2cd98;
    transition: width 0.4s ease;
}

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

.footer-section a:hover::before {
    width: 100%;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(178, 205, 152, 0.1);
    border-radius: 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(178, 205, 152, 0.2);
}

.social-links a:hover {
    background: #b2cd98;
    transform: translateY(-5px);
    border-color: #b2cd98;
    box-shadow: 0 10px 30px rgba(178, 205, 152, 0.3);
}

.social-links a i {
    color: #b2cd98;
    font-size: 1.3rem;
    transition: color 0.4s ease;
}

.social-links a:hover i {
    color: #000000;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.contact-info i {
    color: #b2cd98;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(178, 205, 152, 0.1);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 767px) {
    .why-choose-us {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .feature-icon i {
        font-size: 1.8rem;
    }

    .feature-card h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

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

    .feature-number {
        font-size: 3rem;
        top: 20px;
        right: 20px;
    }

    .cta-wrapper .btn {
        padding: 15px 35px;
        font-size: 14px;
    }
    
    /* Quote form mobile styles */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quote-form {
        height: auto;
        padding: 30px;
    }
    
    .quote-form h3 {
        font-size: 1.6rem;
    }
    
    .contact-form {
        gap: 18px;
    }
    
    .project-showcase {
        height: 300px;
    }
    
    .showcase-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .indicator {
        width: 40px;
        height: 3px;
    }
}

@media (min-width: 768px) {
    .trust-badges {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }

    .badge {
        padding: 18px 25px;
    }

    .badge span {
        font-size: 1rem;
    }

    .quote-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .service-row {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .services-zigzag {
        gap: 60px;
    }
    
    .service-photo {
        height: 350px;
    }

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

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

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-content h2 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    body {
        padding-top: 100px; /* Desktop header height */
    }

    /* Hide mobile header sections on desktop */
    .mobile-header-top,
    .mobile-header-bottom {
        display: none;
    }

    /* Show desktop header on desktop */
    .desktop-header {
        display: block;
    }

    .desktop-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px;
        position: relative;
    }

    .nav-desktop {
        display: block;
    }

    .header-buttons {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }

    /* Desktop hero adjustments */
    .hero {
        min-height: 70vh;
        padding: 60px 0 100px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .page-header {
        padding: 60px 0 60px;
    }

    .service-row {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    
    .services-zigzag {
        gap: 100px;
    }
    
    .service-photo {
        height: 400px;
    }

    .features-grid {
        gap: 50px;
    }

    .feature-card {
        padding: 60px 50px;
    }

    .cta-wrapper {
        margin-top: 60px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .cta-content h2 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}

@media (min-width: 1400px) {
    .hero h1 {
        font-size: 4rem;
    }

    .cta-content h2 {
        font-size: 4.5rem;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Feature animations - creates staggered fade-in effect */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-content > *:nth-child(4) {
    animation-delay: 0.6s;
}

.hero-content > *:nth-child(5) {
    animation-delay: 0.8s;
}

/* Smooth scrolling and performance */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .why-choose-us .feature {
        opacity: 1 !important;
        animation: none !important;
    }
    
    /* Keep carousel animations working even with reduced motion */
    .row-top .row-content,
    .row-bottom .row-content {
        animation-duration: 480s !important;
        animation-iteration-count: infinite !important;
    }
}

/* Projects Introduction Section */
.projects-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.projects-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(178, 205, 152, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.intro-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    margin-bottom: 30px;
    color: #ffffff;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -1px;
}

.intro-content h2 span {
    color: #b2cd98;
}

.intro-content > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 50px;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

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

.intro-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(178, 205, 152, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(178, 205, 152, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.intro-highlight:hover {
    background: rgba(178, 205, 152, 0.1);
    border-color: rgba(178, 205, 152, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(178, 205, 152, 0.1);
}

.highlight-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b2cd98 0%, #8fb670 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: #000000;
}

.highlight-content h4 {
    color: #b2cd98;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
}

/* Portfolio Filter Section */
.portfolio-filter {
    padding: 40px 0;
    background-color: #111111;
}

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

.filter-btn {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #333333;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #b2cd98;
    color: #000000;
    border-color: #b2cd98;
}

/* Portfolio Gallery */
.portfolio-gallery {
    padding: 80px 0;
    background-color: #000000;
}

.gallery-instruction {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-instruction p {
    color: rgba(178, 205, 152, 0.8);
    font-size: 1rem;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.gallery-instruction p:hover {
    opacity: 1;
}

.gallery-instruction i {
    color: #b2cd98;
    font-size: 0.9rem;
}

/* Gallery Cube Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
    }
    
    .gallery-info {
        transform: translateY(0);
    }
    
    .gallery-item:active {
        transform: translateY(-5px) scale(1.02);
    }
    
    .highlight-item:active {
        transform: translateY(-3px);
        background: rgba(178, 205, 152, 0.15);
    }
    
    .stat-item:active {
        transform: translateY(-3px);
        border-color: #b2cd98;
    }
}

/* Performance Optimizations for Mobile */
@media (max-width: 767px) {
    .gallery-item,
    .gallery-image,
    .gallery-overlay,
    .gallery-info {
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    .gallery-image img {
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent zoom on input focus */
    input, select, textarea {
        font-size: 16px !important;
    }
    
    /* Optimize touch targets */
    .filter-btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    .gallery-item {
        touch-action: manipulation;
    }
    
    .stat-item,
    .highlight-item {
        touch-action: manipulation;
    }
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(178, 205, 152, 0.2);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
}

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

.gallery-info {
    color: #ffffff;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    color: #b2cd98;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.gallery-info .project-type {
    color: rgba(178, 205, 152, 0.8);
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 400;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(178, 205, 152, 0.15);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.detail-item i {
    color: #b2cd98;
    font-size: 0.7rem;
}

.detail-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.project-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin: 0;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
}

/* Project Stats - Side by Side Layout */
.project-stats {
    padding: 80px 0;
    background-color: #111111;
}

.achievements-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.achievements-content {
    flex: 1;
}

.achievements-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    margin-bottom: 30px;
    color: #ffffff;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -1px;
}

.achievements-content h2 span {
    color: #b2cd98;
}

.achievements-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
}

.achievement-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(178, 205, 152, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(178, 205, 152, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(178, 205, 152, 0.1);
    border-color: rgba(178, 205, 152, 0.3);
    transform: translateX(10px);
}

.highlight-item i {
    color: #b2cd98;
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.highlight-text h4 {
    color: #b2cd98;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.highlight-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
}

.achievements-stats {
    flex: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-item {
    text-align: center;
    background-color: #000000;
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #b2cd98;
    box-shadow: 0 10px 30px rgba(178, 205, 152, 0.1);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #b2cd98;
    border-radius: 50%;
    margin-bottom: 20px;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #000000;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #b2cd98;
    margin-bottom: 8px;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
}

.stat-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-family: 'Montserrat', 'Neutraface', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
}

/* Gallery Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    background-color: #111111;
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    color: #ffffff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 25px;
}

.close:hover {
    color: #b2cd98;
}

.modal-content h3 {
    color: #b2cd98;
    margin-bottom: 20px;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.modal-info p {
    margin-bottom: 10px;
}

.modal-info strong {
    color: #b2cd98;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background-color: #111111;
}

.contact-info-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-methods {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 25px;
    background-color: #000000;
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: #b2cd98;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #b2cd98;
    border-radius: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.8rem;
    color: #000000;
}

.contact-details h3 {
    color: #b2cd98;
    margin-bottom: 10px;
}

.contact-details p {
    margin-bottom: 10px;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

.contact-details a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #b2cd98;
}

.contact-details address {
    font-style: normal;
    line-height: 1.6;
}

.hours p {
    margin-bottom: 5px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #000000;
}

.contact-wrapper {
    display: grid;
    gap: 60px;
    align-items: start;
}

.contact-form-container {
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: 20px;
    padding: 40px;
}

.contact-form-container h3 {
    margin-bottom: 10px;
}

.contact-form-container p {
    margin-bottom: 30px;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

.form-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #333333;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: inherit;
    margin-bottom: 20px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888888;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-container input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #333333;
    border-radius: 3px;
    position: relative;
}

.checkbox-container input:checked + .checkmark {
    background-color: #b2cd98;
    border-color: #b2cd98;
}

.checkbox-container input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-weight: bold;
}

/* Quick Contact */
.quick-contact {
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: 20px;
    padding: 40px;
}

.quick-contact h3 {
    margin-bottom: 30px;
    text-align: center;
}

.quick-contact-options {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.quick-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background-color: #000000;
    border: 1px solid #333333;
    border-radius: 15px;
    transition: border-color 0.3s ease;
}

.quick-option:hover {
    border-color: #b2cd98;
}

.quick-option i {
    font-size: 2rem;
    color: #b2cd98;
    width: 40px;
    text-align: center;
}

.quick-option h4 {
    color: #b2cd98;
    margin-bottom: 5px;
}

.quick-option p {
    margin-bottom: 15px;
    opacity: 0.8;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.quick-option .btn {
    padding: 8px 16px;
    font-size: 12px;
}

.emergency-contact {
    background-color: #1a0000;
    border: 1px solid #ff4444;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.emergency-contact h4 {
    color: #ff4444;
    margin-bottom: 10px;
}

.emergency-contact h4 i {
    margin-right: 10px;
}

.emergency-contact p {
    margin-bottom: 15px;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

.emergency-number {
    color: #ff4444;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.emergency-number:hover {
    color: #ffffff;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #111111;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.map-container {
    margin: 60px 0;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333333;
}

.map-content {
    text-align: center;
    padding: 40px;
}

.map-content i {
    font-size: 4rem;
    color: #b2cd98;
    margin-bottom: 20px;
}

.map-content h3 {
    color: #b2cd98;
    margin-bottom: 20px;
}

.map-content address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 25px;
}

.location-info {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.transport-info,
.parking-info {
    background-color: #000000;
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 30px;
}

.transport-info h4,
.parking-info h4 {
    color: #b2cd98;
    margin-bottom: 20px;
}

.transport-info h4 i,
.parking-info h4 i {
    margin-right: 10px;
}

.transport-info ul,
.parking-info ul {
    list-style: none;
    padding: 0;
}

.transport-info li,
.parking-info li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.transport-info li::before,
.parking-info li::before {
    content: '•';
    color: #b2cd98;
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #000000;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: #b2cd98;
}

.faq-item h4 {
    color: #b2cd98;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    margin: 0;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Our Story Mobile Responsive */
@media (max-width: 767px) {
    .our-story {
        padding: 60px 0;
    }
    
    .our-story .content-wrapper {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .our-story h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .our-story p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
        max-width: 300px;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .our-story .content-wrapper {
        max-width: 700px;
    }
    
    .stats {
        max-width: 500px;
    }
    
    /* Gallery Responsive - Tablet */
    .gallery-instruction {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-overlay {
        padding: 15px;
    }
    
    .gallery-info h3 {
        font-size: 1.1rem;
    }
    
    .project-description {
        font-size: 0.8rem;
    }
    
    /* Projects Introduction Responsive - Tablet */
    .projects-intro {
        padding: 70px 0;
    }
    
    .intro-content {
        padding: 0 30px;
    }
    
    .intro-highlights {
        gap: 30px;
    }
    
    .intro-highlight {
        padding: 25px;
    }
    
    /* Achievements Responsive - Tablet */
    .achievements-wrapper {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .achievements-content {
        max-width: 600px;
    }
    
    .highlight-item:hover {
        transform: translateY(-5px);
    }
}

/* Mobile Responsive - Enhanced */
@media (max-width: 767px) {
    /* Projects Introduction Mobile */
    .projects-intro {
        padding: 60px 0;
    }
    
    .intro-content {
        padding: 0 20px;
    }
    
    .intro-content h2 {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .intro-content > p {
        font-size: 1rem;
        margin-bottom: 40px;
        line-height: 1.6;
    }
    
    .intro-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .intro-highlight {
        padding: 20px;
        gap: 15px;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .intro-highlight:hover {
        transform: translateY(-3px);
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        margin-top: 0;
    }
    
    .highlight-icon i {
        font-size: 1.2rem;
    }
    
    .highlight-content h4 {
        font-size: 1.1rem;
        margin-bottom: 6px;
        text-align: center;
    }
    
    .highlight-content p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    /* Portfolio Filter Mobile */
    .portfolio-filter {
        padding: 40px 0 20px;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: auto;
        flex: 0 0 auto;
    }
    
    /* Gallery Mobile - Touch Optimized */
    .portfolio-gallery {
        padding: 40px 0;
    }
    
    /* Hide hover instruction on mobile */
    .gallery-instruction {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 30px;
    }
    
    .gallery-item {
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.2s ease;
    }
    
    .gallery-item:hover {
        transform: translateY(-3px) scale(1.01);
        box-shadow: 0 8px 25px rgba(178, 205, 152, 0.15);
    }
    
    .gallery-image img {
        transition: transform 0.3s ease;
    }
    
    .gallery-item:hover .gallery-image img {
        transform: scale(1.05);
    }
    
    /* Mobile Overlay - Always Visible on Touch */
    .gallery-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
        opacity: 1;
        padding: 10px;
        display: flex;
        align-items: flex-end;
    }
    
    .gallery-info {
        transform: translateY(0);
        width: 100%;
    }
    
    .gallery-info h3 {
        font-size: 0.9rem;
        margin-bottom: 4px;
        line-height: 1.2;
    }
    
    .gallery-info .project-type {
        font-size: 0.7rem;
        margin-bottom: 6px;
        opacity: 0.9;
    }
    
    .project-details {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        margin-bottom: 6px;
    }
    
    .detail-item {
        padding: 2px 5px;
        font-size: 0.6rem;
        border-radius: 8px;
        background: rgba(178, 205, 152, 0.2);
    }
    
    .detail-item i {
        font-size: 0.5rem;
        margin-right: 2px;
    }
    
    .project-description {
        font-size: 0.65rem;
        line-height: 1.2;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Page Header Mobile */
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    /* Achievements Mobile - Enhanced */
    .project-stats {
        padding: 50px 0;
    }
    
    .achievements-wrapper {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }
    
    .achievements-content {
        padding: 0 10px;
    }
    
    .achievements-content h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        line-height: 1.1;
    }
    
    .achievements-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .achievement-highlights {
        gap: 15px;
        margin-bottom: 10px;
    }
    
    .highlight-item {
        padding: 12px;
        gap: 12px;
        border-radius: 10px;
        background: rgba(178, 205, 152, 0.08);
        border: 1px solid rgba(178, 205, 152, 0.15);
        transition: all 0.2s ease;
    }
    
    .highlight-item:hover {
        transform: translateY(-2px);
        background: rgba(178, 205, 152, 0.12);
    }
    
    .highlight-item i {
        font-size: 1.1rem;
        margin-top: 2px;
    }
    
    .highlight-text h4 {
        font-size: 0.95rem;
        margin-bottom: 5px;
        line-height: 1.2;
    }
    
    .highlight-text p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Stats Grid Mobile - 2x2 Layout */
    .achievements-stats {
        padding: 0 10px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stat-item {
        padding: 15px 10px;
        border-radius: 12px;
        background-color: #0a0a0a;
        border: 1px solid #2a2a2a;
    }
    
    .stat-item:hover {
        transform: translateY(-2px);
        border-color: #b2cd98;
        box-shadow: 0 6px 20px rgba(178, 205, 152, 0.1);
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .stat-icon i {
        font-size: 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
        margin-bottom: 4px;
        line-height: 1;
    }
    
    .stat-item p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
        padding: 0 20px;
        line-height: 1.5;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        padding: 0 20px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.9rem;
        justify-content: center;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
        margin: 30px auto 0;
    }
    
    .gallery-item {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .gallery-overlay {
        padding: 12px;
    }
    
    .gallery-info h3 {
        font-size: 1rem;
    }
    
    .gallery-info .project-type {
        font-size: 0.8rem;
    }
    
    .project-description {
        font-size: 0.75rem;
        -webkit-line-clamp: 3;
    }
    
    .achievements-content h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 200px;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
    
    .filter-buttons {
        padding: 0 10px;
    }
    
    .filter-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
} 