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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Mobile menu backdrop */
.nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: -1;
}

/* Container and Grid */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    width: 100%;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    width: 100%;
}

.align-center {
    align-items: center;
}

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

.text-primary {
    color: #c9a96e !important;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-dark {
    background-color: #1a1a1a;
}

.bg-primary {
    background-color: #c9a96e;
}

.text-white {
    color: white !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

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

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

.btn-outline {
    background-color: transparent;
    color: #c9a96e;
    border-color: #c9a96e;
}

.btn-outline:hover {
    background-color: #c9a96e;
    color: white;
}

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

.btn-white:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-outline-white:hover {
    background-color: white;
    color: #c9a96e;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border-color: #25d366;
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    border-color: #128c7e;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
    width: 100%;
    overflow-x: hidden;
}

.section-header {
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-label {
    display: inline-block;
    color: #c9a96e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 14px;
}

.section-title {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: visible;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a1a1a;
}

.logo-img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.logo-text h1 {
    font-size: 24px;
    margin-bottom: 0;
    color: #1a1a1a;
}

.tagline {
    font-size: 12px;
    color: #c9a96e;
    font-style: italic;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #c9a96e;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c9a96e;
    transition: width 0.3s ease;
}

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dropdown-column h4 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 16px;
}

.dropdown-column a {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.dropdown-column a:hover {
    color: #c9a96e;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 15px 10px;
    z-index: 1002;
    position: relative;
    background: none;
    border: none;
    outline: none;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.nav-toggle:hover {
    background-color: rgba(201, 169, 110, 0.1);
    border-radius: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-nav-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-nav-btn.prev {
    left: 30px;
}

.hero-nav-btn.next {
    right: 30px;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

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

.indicator.active {
    background-color: #c9a96e;
    transform: scale(1.2);
}

/* About Intro Section */
.about-intro .about-content {
    padding-right: 40px;
}

.about-features {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-item i {
    font-size: 24px;
    color: #c9a96e;
    margin-right: 20px;
    margin-top: 5px;
}

.feature-item h4 {
    margin-bottom: 8px;
    color: #1a1a1a;
}

.feature-item p {
    color: #666;
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: #c9a96e;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.badge-number {
    font-size: 36px;
    font-weight: 700;
    display: block;
}

.badge-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #c9a96e;
    color: white;
}

.service-icon i {
    font-size: 32px;
    color: #c9a96e;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 25px;
    color: #666;
}

.service-link {
    color: #c9a96e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #b8956a;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Projects Section */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding: 0 15px;
}

.filter-btn {
    background-color: transparent;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 100px;
    text-align: center;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #c9a96e;
    border-color: #c9a96e;
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
}

.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-info {
    text-align: center;
    color: white;
    padding: 20px;
}

.project-info h3 {
    margin-bottom: 10px;
    color: white;
}

.project-info p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* Why Choose Us Section */
.why-choose-us .row {
    align-items: center;
}

.why-features {
    margin-top: 40px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.feature-number {
    font-size: 24px;
    font-weight: 700;
    color: #c9a96e;
    margin-right: 25px;
    min-width: 40px;
}

.feature-content h4 {
    color: white;
    margin-bottom: 10px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.why-image img {
    width: 100%;
    border-radius: 15px;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #c9a96e;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background-color: #c9a96e;
    transform: scale(1.1);
}

.step-icon i {
    font-size: 40px;
    color: #c9a96e;
    transition: color 0.3s ease;
}

.process-step:hover .step-icon i {
    color: white;
}

.process-step h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

/* Testimonials Section */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
}

.testimonial-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 30px;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ffc107;
    margin-right: 5px;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    color: #1a1a1a;
    font-size: 16px;
}

.author-info span {
    color: #666;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 3rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 0 0;
}

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

.footer-brand h3 {
    color: white;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #c9a96e;
    font-style: italic;
    margin-bottom: 20px;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-social h4 {
    color: white;
    margin-bottom: 20px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #c9a96e;
    transform: translateY(-3px);
}

.footer-section h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c9a96e;
}

.contact-info {
    space-y: 20px;
}

.contact-item {
    display: flex;
    lign-items: flex-start;
    margin-bottom: 20px;

}

.contact-item i {
    color: #c9a96e;
    margin-right: 15px;
    margin-top: 5px;
    font-size: 16px;
    min-width: 20px;
}

.contact-item p {
    color: #050505;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #c9a96e;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 24px;
}

.whatsapp-text {
    font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #c9a96e;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.back-to-top:hover {
    background-color: #b8956a;
    transform: translateY(-3px);
}

/* Utility Classes */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.space-y-20px > * + * {
    margin-top: 20px;
}

* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a96e;
}

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

.form-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.form-section-title {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.section-number {
    background-color: #c9a96e;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: 600;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 3px;
    margin-right: 12px;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #c9a96e;
    border-color: #c9a96e;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.btn-block {
    width: 100%;
}

.file-upload-area {
    border: 2px dashed #c9a96e;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    background-color: #fafafa;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.file-upload-area:hover {
    border-color: #b8956a;
    background-color: #f5f5f5;
}

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

.file-upload-content i {
    font-size: 48px;
    color: #c9a96e;
    margin-bottom: 15px;
}

.file-upload-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.file-upload-content span {
    font-size: 14px;
    color: #666;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/pattern.png') repeat;
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: white;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.breadcrumb a {
    color: #c9a96e;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-section {
    background-color: white;
}

.contact-info {
    padding-right: 30px;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #c9a96e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-content h4 {
    margin-bottom: 8px;
    color: #1a1a1a;
}

.contact-content p {
    margin-bottom: 0;
    color: #666;
}

.contact-content a {
    color: #c9a96e;
    text-decoration: none;
}

.contact-content a:hover {
    text-decoration: underline;
}

.social-contact {
    margin-top: 40px;
}

.social-contact h4 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-form-wrapper {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-form-header p {
    color: #666;
    margin-bottom: 0;
}

/* Map Styles */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    max-width: 300px;
}

.map-info h4 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.map-info p {
    margin-bottom: 20px;
    color: #666;
}

/* FAQ Styles */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h4 {
    margin-bottom: 0;
    color: #1a1a1a;
}

.faq-question i {
    color: #c9a96e;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Quote Page Styles */
.quote-form-wrapper {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.quote-form-header {
    background-color: #c9a96e;
    color: white;
    padding: 30px;
    text-align: center;
}

.quote-form-header h2 {
    color: white;
    margin-bottom: 10px;
}

.quote-form-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.quote-form {
    padding: 40px;
}

.quote-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.sidebar-card h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 18px;
}

.process-steps .process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.process-steps .step-number {
    width: 30px;
    height: 30px;
    background-color: #c9a96e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.process-steps .step-content h5 {
    margin-bottom: 5px;
    color: #1a1a1a;
    font-size: 14px;
}

.process-steps .step-content p {
    color: #666;
    font-size: 13px;
    margin-bottom: 0;
}

.included-list {
    list-style: none;
    padding: 0;
}

.included-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.included-list i {
    color: #28a745;
    margin-right: 10px;
    font-size: 12px;
}

.testimonial-card {
    background: linear-gradient(135deg, #c9a96e 0%, #b8956a 100%);
    color: white;
}

.testimonial-card .testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card .testimonial-author strong {
    color: white;
}

.testimonial-card .testimonial-author span {
    color: rgba(255, 255, 255, 0.8);
}

/* Additional Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-method {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.method-icon {
    width: 80px;
    height: 80px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    background-color: #c9a96e;
    color: white;
}

.method-icon i {
    font-size: 32px;
    color: #c9a96e;
    transition: color 0.3s ease;
}

.contact-method:hover .method-icon i {
    color: white;
}

.contact-method h4 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-method p {
    margin-bottom: 20px;
    color: #666;
}

/* Why Quote Section */
.why-quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-quote-item {
    text-align: center;
    padding: 30px 20px;
}

.why-icon {
    width: 70px;
    height: 70px;
    background-color: #c9a96e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 28px;
}

.why-quote-item h4 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.why-quote-item p {
    color: #666;
    margin-bottom: 0;
}

/* Timeline Styles */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e0e0e0;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    padding-left: 40px;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #c9a96e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.timeline-content {
    flex: 1;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.timeline-content h4 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.timeline-content p {
    color: #666;
    margin-bottom: 0;
}/* Prevent
 Horizontal Overflow */
* {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* Additional Grid Fixes */
.vm-grid,
.values-grid,
.team-grid,
.awards-grid,
.additional-services-grid,
.service-benefits,
.contact-methods,
.why-quote-grid {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
}

/* Hero Section Fixes */
.hero {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.hero-content {
    padding: 0 20px;
    max-width: 100%;
}

/* Footer Fixes */
.footer {
    width: 100%;
    overflow-x: hidden;
}

.footer-content {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
}

/* Form Section Fixes */
.form-section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.form-row {
    width: 100%;
    max-width: 100%;
}

/* Navigation Dropdown Fixes */
.dropdown-menu {
    max-width: calc(100vw - 40px);
    left: auto;
    right: 0;
}

/* Ensure all sections don't overflow */
section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Main content wrapper */
main {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Additional padding for mobile */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .services-grid,
    .projects-grid,
    .process-steps,
    .testimonials-slider {
        padding: 0 10px;
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .section-header {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .services-grid,
    .projects-grid,
    .process-steps,
    .testimonials-slider {
        padding: 0 5px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .section-header {
        padding: 0 10px;
    }
}/* 
Additional styles for new layout structure */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.vm-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.vm-card:hover .vm-icon {
    background-color: #c9a96e;
    color: white;
}

.vm-icon i {
    font-size: 32px;
    color: #c9a96e;
    transition: color 0.3s ease;
}

.vm-card:hover .vm-icon i {
    color: white;
}

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

.value-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: #c9a96e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 24px;
}

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

.team-member {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-overlay .social-links {
    display: flex;
    gap: 15px;
}

.member-overlay .social-links a {
    width: 40px;
    height: 40px;
    background-color: white;
    color: #c9a96e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-overlay .social-links a:hover {
    background-color: #c9a96e;
    color: white;
}

.member-info {
    padding: 25px 20px;
    text-align: center;
}

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

.member-role {
    color: #c9a96e;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.member-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}/* Service P
age Styles */
.service-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-type-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-type-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-type-card:hover .service-type-image img {
    transform: scale(1.1);
}

.service-type-content {
    padding: 30px 25px;
}

.service-type-content h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-type-content p {
    margin-bottom: 20px;
    color: #666;
}

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

.service-type-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.service-type-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c9a96e;
    font-weight: bold;
}

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

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    margin-bottom: 5px;
    color: white;
}

.portfolio-overlay p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-choose-item {
    text-align: center;
    padding: 30px 20px;
}

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

.why-choose-item:hover .why-icon {
    transform: scale(1.1);
}

.why-icon i {
    font-size: 32px;
}

.why-choose-item h4 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.why-choose-item p {
    color: #666;
    margin-bottom: 0;
}

/* Elements Grid */
.elements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.element-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.element-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.element-icon {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.element-card:hover .element-icon {
    background-color: #c9a96e;
    color: white;
}

.element-icon i {
    font-size: 24px;
    color: #c9a96e;
    transition: color 0.3s ease;
}

.element-card:hover .element-icon i {
    color: white;
}

/* Kitchen Styles Grid */
.kitchen-styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.kitchen-style-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.kitchen-style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.kitchen-style-image {
    height: 200px;
    overflow: hidden;
}

.kitchen-style-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kitchen-style-card:hover .kitchen-style-image img {
    transform: scale(1.1);
}

.kitchen-style-content {
    padding: 25px 20px;
    text-align: center;
}

.kitchen-style-content h4 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.kitchen-style-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 14px;
}

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

.benefit-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: #c9a96e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 24px;
}

/* Flooring Types Grid */
.flooring-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.flooring-type-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.flooring-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.flooring-type-image {
    height: 250px;
    overflow: hidden;
}

.flooring-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flooring-type-card:hover .flooring-type-image img {
    transform: scale(1.1);
}

.flooring-type-content {
    padding: 30px 25px;
}

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

.flooring-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.flooring-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c9a96e;
    font-weight: bold;
}

/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.application-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.application-icon {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.application-card:hover .application-icon {
    background-color: #c9a96e;
    color: white;
}

.application-icon i {
    font-size: 24px;
    color: #c9a96e;
    transition: color 0.3s ease;
}

.application-card:hover .application-icon i {
    color: white;
}

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

.waterproofing-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.waterproofing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.waterproofing-icon {
    width: 60px;
    height: 60px;
    background-color: #c9a96e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.waterproofing-icon i {
    font-size: 24px;
}

/* Materials Grid */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.material-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.material-icon {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.material-card:hover .material-icon {
    background-color: #c9a96e;
    color: white;
}

.material-icon i {
    font-size: 24px;
    color: #c9a96e;
    transition: color 0.3s ease;
}

.material-card:hover .material-icon i {
    color: white;
}

/* Standards Grid */
.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.standard-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.standard-icon {
    width: 60px;
    height: 60px;
    background-color: #c9a96e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.standard-icon i {
    font-size: 24px;
}
* Portfolio Page Styles */
.portfolio-stats {
    background-color: #f8f9fa;
}

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

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #c9a96e;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Portfolio Filter */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding: 0 15px;
}

.filter-btn {
    background-color: transparent;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 120px;
    text-align: center;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #c9a96e;
    border-color: #c9a96e;
    color: white;
    transform: translateY(-2px);
}

/* Enhanced Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.95) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 30px;
}

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

.portfolio-info {
    text-align: center;
    color: white;
}

.portfolio-info h3 {
    margin-bottom: 15px;
    color: white;
    font-size: 1.5rem;
}

.portfolio-info p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.portfolio-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.portfolio-meta span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-type {
    background-color: rgba(201, 169, 110, 0.8) !important;
}

.project-area {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.portfolio-view {
    transition: all 0.3s ease;
}

.portfolio-view:hover {
    background-color: white;
    color: #c9a96e;
    transform: translateY(-2px);
}

/* Project Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c9a96e, #b8956a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c9a96e, #b8956a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

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

.category-icon i {
    font-size: 32px;
}

.category-card h4 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.category-count {
    background-color: #f8f9fa;
    color: #c9a96e;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}

/* Portfolio Testimonials */
.portfolio-testimonials .testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-testimonials .testimonial-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-testimonials .testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 80px;
    color: #c9a96e;
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
}

.portfolio-testimonials .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Load More Button */
#loadMoreBtn {
    transition: all 0.3s ease;
}

#loadMoreBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

/* Portfolio Animation Effects */
@keyframes portfolioFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-item.fade-in {
    animation: portfolioFadeIn 0.6s ease-out forwards;
}

/* Portfolio Responsive Adjustments */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .portfolio-filter {
        gap: 10px;
        padding: 0 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 100px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .portfolio-info h3 {
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .portfolio-overlay {
        padding: 20px;
    }
    
    .portfolio-info p {
        font-size: 14px;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon i {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
}
/* Enhanced Process Section Styles */
.process-overview {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.process-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23c9a96e" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23c9a96e" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.process-overview .container {
    position: relative;
    z-index: 1;
}

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

.process-step {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(201, 169, 110, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 4px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c9a96e 0%, #d4b574 50%, #c9a96e 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(201, 169, 110, 0.2);
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c9a96e;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(201, 169, 110, 0.2);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #c9a96e 50%, transparent 100%);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c9a96e 0%, #d4b574 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(201, 169, 110, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(-45deg);
    transition: transform 0.6s ease;
}

.process-step:hover .step-icon::before {
    transform: rotate(-45deg) translateX(100%);
}

.step-icon i {
    font-size: 32px;
    color: white;
    z-index: 1;
    position: relative;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(201, 169, 110, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.step-content {
    text-align: center;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #c9a96e 0%, transparent 100%);
    transform: translateY(-50%);
    opacity: 0.6;
}

.process-step:last-child .step-connector {
    display: none;
}

/* Responsive Process Steps */
@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-step {
        padding: 30px 25px;
    }
    
    .step-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .process-step {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .step-number {
        font-size: 1.8rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 24px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-content p {
        font-size: 14px;
    }
}

/* Animation for process steps */
.process-step.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.process-step.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delay */
.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.2s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.4s; }
.process-step:nth-child(5) { transition-delay: 0.5s; }
.process-step:nth-child(6) { transition-delay: 0.6s; }
/* Our Projects Section Styles */
.our-projects {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.our-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.our-projects .container {
    position: relative;
    z-index: 1;
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.project-location {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.project-location:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(201, 169, 110, 0.2);
}

.project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.project-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-tags .tag {
    background: rgba(201, 169, 110, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.project-details {
    padding: 30px;
}

.location-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.location-info i {
    color: #c9a96e;
    font-size: 20px;
    margin-top: 5px;
}

.location-info h4 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

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

.project-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.project-stats .stat {
    text-align: center;
    flex: 1;
}

.project-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c9a96e;
    font-family: 'Playfair Display', serif;
}

.project-stats .stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Projects Summary */
.projects-summary {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #c9a96e 0%, #d4b574 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.projects-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 0;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.summary-stat {
    text-align: center;
    color: white;
}

.summary-stat .stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.summary-stat .stat-icon i {
    font-size: 32px;
    color: white;
}

.summary-stat .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.summary-stat .stat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .projects-showcase {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .projects-showcase {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .project-location {
        border-radius: 15px;
    }
    
    .project-image {
        height: 250px;
    }
    
    .project-overlay {
        padding: 20px;
    }
    
    .project-details {
        padding: 25px 20px;
    }
    
    .project-stats {
        gap: 15px;
    }
    
    .project-stats .stat-number {
        font-size: 1.3rem;
    }
    
    .summary-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .summary-stat .stat-number {
        font-size: 2.5rem;
    }
    
    .projects-summary {
        margin-top: 60px;
        padding: 40px 20px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .projects-showcase {
        gap: 20px;
    }
    
    .project-image {
        height: 220px;
    }
    
    .project-details {
        padding: 20px 15px;
    }
    
    .location-info {
        gap: 12px;
    }
    
    .location-info h4 {
        font-size: 1.1rem;
    }
    
    .project-stats {
        gap: 10px;
    }
    
    .project-stats .stat-number {
        font-size: 1.2rem;
    }
    
    .project-stats .stat-label {
        font-size: 11px;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .summary-stat .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .summary-stat .stat-icon i {
        font-size: 24px;
    }
    
    .summary-stat .stat-number {
        font-size: 2rem;
    }
    
    .summary-stat .stat-label {
        font-size: 14px;
    }
}

/* Animation for project cards */
.project-location.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.project-location.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delay for project cards */
.project-location:nth-child(1) { transition-delay: 0.1s; }
.project-location:nth-child(2) { transition-delay: 0.2s; }
.project-location:nth-child(3) { transition-delay: 0.3s; }
.project-location:nth-child(4) { transition-delay: 0.4s; }
/* Client Satisfaction Video Section */
.client-satisfaction-video {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.client-satisfaction-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(201, 169, 110, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.client-satisfaction-video .container {
    position: relative;
    z-index: 1;
}

.client-satisfaction-video .section-label {
    color: #c9a96e !important;
}

.video-showcase {
    margin-top: 60px;
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 25px rgba(0, 0, 0, 0.2);
}

.video-player {
    position: relative;
    width: 100%;
    min-height: 500px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.video-player video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #c9a96e 0%, #d4b574 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.4);
}

.play-button i {
    font-size: 32px;
    color: white;
    margin-left: 5px;
}

.video-info {
    text-align: center;
    color: white;
}

.video-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.video-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.video-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.video-stats i {
    color: #c9a96e;
}

/* Custom Video Controls */
.video-controls-custom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-player:hover .video-controls-custom {
    opacity: 1;
}

.progress-container {
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c9a96e 0%, #d4b574 100%);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.controls-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #c9a96e;
}

.volume-slider {
    width: 80px;
}

.volume-slider input {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.time-display {
    color: white;
    font-size: 14px;
    font-family: monospace;
}

/* Video Highlights */
.video-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 169, 110, 0.4);
    transform: translateY(-5px);
}

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

.highlight-icon i {
    font-size: 24px;
    color: white;
}

.highlight-content h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Video Testimonials */
.video-testimonials {
    margin-top: 40px;
}

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

.testimonial-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 169, 110, 0.3);
}

.testimonial-video-thumb {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-mini {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: rgba(201, 169, 110, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-item:hover .play-mini {
    opacity: 1;
}

.play-mini i {
    font-size: 10px;
    color: white;
    margin-left: 1px;
}

.testimonial-content h5 {
    color: white;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.testimonial-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #c9a96e;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-container {
        margin: 0 auto 40px;
        border-radius: 15px;
    }
    
    .video-player,
    .video-player video {
        border-radius: 15px;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .play-button i {
        font-size: 24px;
    }
    
    .video-info h3 {
        font-size: 1.5rem;
    }
    
    .video-info p {
        font-size: 1rem;
    }
    
    .video-stats {
        gap: 20px;
    }
    
    .video-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-item {
        padding: 20px;
    }
    
    .testimonial-preview {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .video-container {
        border-radius: 10px;
    }
    
    .video-player,
    .video-player video {
        border-radius: 10px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 20px;
    }
    
    .video-info h3 {
        font-size: 1.3rem;
    }
    
    .video-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .controls-left {
        gap: 10px;
    }
    
    .volume-slider {
        width: 60px;
    }
}