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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: #FAF8F4;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Main Header */
/* Main Header */
:root {
    --header-height: 110px;
}

.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: height 0.3s ease;
}

.header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    /* Horizontal padding only */
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-section .logo-emblem {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.logo-section .logo-emblem img {
    display: block;
    height: 180px; /* Reduced base desktop height slightly to be safer */
    width: auto;
    max-height: calc(var(--header-height) + 60px); /* Allow slight overflow if intended but controlled */
    transition: height 0.3s ease;
}

/* Navigation Links */
.main-nav {
    display: flex;
    gap: 25px;
    align-items: center;
    height: 100%;
}

.main-nav .nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    font-family: inherit;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    height: 100%;
    /* Vertical alignment consistent */
}

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

/* CTA & Mobile Toggle Group */
.header-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-cta {
    display: flex;
    align-items: center;
}

.cta-button {
    background-color: #bfa159;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    font-family: inherit;
    font-size: 14px;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #a88945;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #333;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.main-nav.open {
    display: flex;
}

/* Mobile Sidebar - Right Side Sliding */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: none;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background-color: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    overflow-y: auto;
    display: none;
}

.mobile-sidebar.active {
    right: 0;
}

/* Show sidebar only on mobile/tablet */
@media (max-width: 1024px) {
    .mobile-sidebar-overlay {
        display: block;
    }

    .mobile-sidebar {
        display: flex;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .mobile-sidebar {
        width: 380px;
        max-width: 90%;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .mobile-sidebar {
        width: 320px;
        max-width: 85%;
    }

    .sidebar-content {
        padding: 25px 20px;
        gap: 25px;
    }

    .sidebar-nav-link {
        font-size: 15px;
        padding: 14px 0;
    }

    .sidebar-section-heading {
        font-size: 13px;
    }

    .sidebar-contact-item,
    .sidebar-address-text {
        font-size: 14px;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .mobile-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .sidebar-content {
        padding: 20px 15px;
        gap: 20px;
    }

    .sidebar-nav-link {
        font-size: 14px;
        padding: 12px 0;
    }
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
}

.sidebar-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.sidebar-close:hover {
    color: #bfa159;
}

.sidebar-content {
    flex: 1;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-nav-link {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.sidebar-nav-link:hover,
.sidebar-nav-link.active {
    color: #bfa159;
    padding-left: 10px;
}

.sidebar-nav-link:last-child {
    border-bottom: none;
}

.sidebar-divider {
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
    margin: 10px 0;
}

.sidebar-contact-section,
.sidebar-address-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-section-heading {
    font-size: 14px;
    font-weight: 700;
    color: #3D2817;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

.sidebar-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-contact-item {
    margin: 0;
    font-size: 15px;
    color: #555;
    font-family: 'Arial', sans-serif;
}

.sidebar-link {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-link:hover {
    color: #bfa159;
}

.sidebar-address-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

.sidebar-social-section {
    margin-top: auto;
    padding-top: 20px;
}

.sidebar-social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sidebar-social-icon {
    color: #555;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-social-icon:hover {
    color: #bfa159;
    transform: scale(1.1);
}

/* Responsive Header */
@media (max-width: 1200px) {
    .header-container {
        max-width: 1000px;
    }
    .main-nav {
        gap: 15px;
    }
    .main-nav .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    :root {
        --header-height: 95px;
    }

    .main-nav {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-container {
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 25px;
    }

    .header-cta-group {
        display: flex;
        align-items: center;
        gap: 15px;
        order: 2;
    }

    .logo-section {
        order: 1;
        flex: 1;
        display: flex;
        justify-content: flex-start;
    }

    .logo-section .logo-emblem img {
        height: 85px; /* Reduced from 100px to fit in 95px header */
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 85px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .header-cta-group {
        display: flex;
        align-items: center;
        gap: 12px;
        order: 2;
    }

    .logo-section {
        order: 1;
        flex: 1;
        display: flex;
        justify-content: flex-start;
    }

    .logo-section .logo-emblem img {
        height: 75px; /* Reduced to fit in 85px header */
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 75px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-container {
        max-width: 100%;
        padding: 0 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-cta-group {
        display: flex;
        align-items: center;
        gap: 10px;
        order: 2;
    }

    .logo-section {
        order: 1;
        flex: 1;
        display: flex;
        justify-content: flex-start;
    }

    .logo-section .logo-emblem img {
        height: 65px; /* Reduced to fit in 75px header */
    }

    .cta-button {
        padding: 6px 12px;
        font-size: 12px;
    }

    .header-cta-group {
        gap: 8px;
    }
}

/* Video Hero Section */
.video-hero {
    position: relative;
    height: calc(100vh - var(--header-height));
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-color: #000;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.video-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 40px;
}

.video-hero-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #C9B37E;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpHero 1s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
}

.video-hero-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpHero 1s cubic-bezier(0.2, 0.6, 0.2, 1) forwards 0.2s;
}

.video-hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpHero 1s cubic-bezier(0.2, 0.6, 0.2, 1) forwards 0.4s;
    flex-wrap: wrap;
}

.video-hero-btns .cta-button {
    padding: 18px 45px;
    font-size: 15px;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-hero-btns .cta-button.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.video-hero-btns .cta-button.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .video-hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .video-hero-btns .cta-button {
        width: 100%;
        max-width: 280px;
        /* Ensure buttons aren't too wide */
        padding: 15px 30px;
        /* Reduce padding slightly */
    }
}

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

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    bottom: 30px;
}

.scroll-down svg {
    animation: bounceHero 2s infinite;
}

@keyframes bounceHero {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Hero Section / Carousel */
.hero-section {
    width: 100%;
    background-color: #FAF8F4;
    padding: 40px 0 50px;
    position: relative;
}

.hero-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px 40px;
}

.hero-content .welcome-text {
    font-size: 15px;
    color: #3D2817;
    font-weight: 400;
    letter-spacing: 0.8px;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.hero-content .welcome-text strong {
    font-weight: 700;
    color: #1A1A1A;
}

.hero-title-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
}

.hero-title-bar {
    width: 3px;
    height: 75px;
    background-color: #C9B37E;
    flex-shrink: 0;
}

.hero-title {
    font-size: 36px;
    font-weight: 400;
    color: #C9B37E;
    letter-spacing: 1.5px;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.4;
    text-transform: none;
    margin: 0;
}

.carousel-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-arrow {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
}

.carousel-wrapper {
    flex: 1;
    overflow: visible;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: 100%;
}

.carousel-slide {
    flex: 1;
    min-width: 0;
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide.active .carousel-image-placeholder {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.18);
    transform: scale(1.02);
}

.carousel-slide:hover .carousel-image-placeholder {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.2);
}

.carousel-image-placeholder {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #3D2817;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background-color: #FFFFFF;
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 2px #3D2817;
}

.indicator:hover {
    background-color: rgba(61, 40, 23, 0.6);
}

/* About Us Section */
.about-section {
    width: 100%;
    background-color: #FAFAF5;
    padding: 100px 0;
}

.about-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

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

.about-title-bar {
    width: 4px;
    height: 80px;
    background-color: #C9B37E;
    flex-shrink: 0;
    border-radius: 2px;
}

.about-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-family: 'Arial', sans-serif;
}

.title-main {
    font-size: 48px;
    font-weight: 400;
    color: #3D2817;
    letter-spacing: 0.5px;
    line-height: 1;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.title-sub {
    font-size: 36px;
    font-weight: 700;
    color: #3D2817;
    letter-spacing: 0.5px;
    line-height: 1;
    font-family: 'Arial', sans-serif;
}

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

.about-text-column {
    padding-top: 10px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-bottom: 20px;
}

.about-description:last-child {
    margin-bottom: 0;
}

.about-progress-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 10px;
}

.about-stats-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 10px;
}

.stat-item {
    width: 100%;
}

.stat-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #3D2817;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
}

.stat-percentage {
    font-size: 14px;
    color: #3D2817;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(61, 40, 23, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #C9B37E;
    border-radius: 4px;
    transition: width 1s ease;
}

.stat-number-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 38px;
    font-weight: 300;
    color: #C9B37E;
    font-family: 'Arial', sans-serif;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 5px;
}

.stat-number-label {
    font-size: 14px;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.stat-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(61, 40, 23, 0.15);
    margin-top: 15px;
}

/* Services Section */
.services-section {
    width: 100%;
    background-color: #FAF8F4;
    padding: 80px 0;
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
}

.services-top-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.services-left-content {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.services-divider-top,
.services-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(61, 40, 23, 0.15);
    margin: 0;
}

.portfolio-button {
    background-color: #C9B37E;
    color: #3D2817;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    text-align: center;
    margin: 20px 0;
    display: inline-block;
}

.portfolio-button:hover {
    background-color: #B8A06D;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(201, 179, 126, 0.4);
}

.portfolio-button:active {
    transform: translateY(-1px) scale(1);
}

.services-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-top: 0;
    flex-shrink: 0;
}

/* Services Image Container */
.services-image-container {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    min-height: 0;
    position: relative;
    display: block;
    height: 0;
}

.service-image {
    position: absolute;
    width: 500px;
    max-width: 500px;
    opacity: 0;
    transform: scale(0.8) translateX(-20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 100;
    top: 0;
    left: 100%;
    margin-left: 40px;
}

.service-image.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    pointer-events: auto;
    z-index: 101;
}

.service-image .image-placeholder {
    width: 100%;
    height: 280px;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image.active .image-placeholder {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.service-image .image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.2s;
}

.service-image.active .image-label {
    opacity: 1;
    transform: translateY(0);
}

.services-title {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.services-title-small {
    font-size: 32px;
    font-weight: 400;
    color: #3D2817;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1;
}

.services-title-large {
    font-size: 48px;
    font-weight: 700;
    color: #3D2817;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1;
}

.services-title-bar {
    width: 4px;
    height: 60px;
    background-color: #C9B37E;
    flex-shrink: 0;
    margin-left: auto;
}


.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.service-item:hover {
    padding-left: 10px;
}

.service-item:hover .service-number {
    color: #B8A06D;
    transform: scale(1.1);
}

.service-item:hover .service-name {
    color: #C9B37E;
}

.service-number {
    font-size: 18px;
    font-weight: 400;
    color: #C9B37E;
    font-family: 'Arial', sans-serif;
    min-width: 45px;
    transition: all 0.3s ease;
}

.service-name {
    font-size: 22px;
    font-weight: 700;
    color: #3D2817;
    font-family: 'Georgia', 'Times New Roman', serif;
    flex: 1;
    transition: all 0.3s ease;
}

.service-item .service-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(61, 40, 23, 0.15);
    transition: all 0.3s ease;
}

.service-item:first-child .service-divider {
    top: 0;
}

.service-item:last-child .service-divider {
    bottom: 0;
    top: auto;
}

.service-item:hover .service-divider {
    background-color: rgba(201, 179, 126, 0.4);
    height: 2px;
}

/* Crafting Dreams Section */
.crafting-section {
    width: 100%;
    background-color: #FAF8F4;
    padding: 100px 0;
}

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

.crafting-header {
    display: flex;
    align-items: baseline;
    gap: 25px;
    margin-bottom: 40px;
}

.crafting-title-bar {
    width: 4px;
    height: 80px;
    background-color: #C9B37E;
    flex-shrink: 0;
}

.crafting-title {
    font-size: 48px;
    font-weight: 400;
    color: #3D2817;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.crafting-content {
    max-width: 900px;
}

.crafting-description {
    font-size: 17px;
    line-height: 1.9;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-bottom: 35px;
}

.crafting-description strong {
    font-weight: 700;
    color: #1A1A1A;
}

.enquire-button {
    background-color: #C9B37E;
    color: #3D2817;
    border: none;
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquire-button:hover {
    background-color: #B8A06D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 179, 126, 0.4);
}

/* Founders Section */
.founders-section {
    width: 100%;
    background-color: #FAF8F4;
    padding: 80px 0;
}

.founders-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(61, 40, 23, 0.15);
    margin-bottom: 60px;
}

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

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    justify-items: center;
    align-items: start;
}

.founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
}

.founder-image {
    width: 180px;
    height: 180px;
    margin-bottom: 25px;
}

.founder-image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.founder-initial {
    font-size: 48px;
    font-weight: 600;
    color: white;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.founder-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.founder-name {
    font-size: 24px;
    font-weight: 600;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

.founder-title {
    font-size: 15px;
    font-weight: 400;
    color: #3D2817;
    opacity: 0.7;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

/* Latest Projects Section */
.projects-section {
    width: 100%;
    background-color: #FAF8F4;
    padding: 80px 0 100px;
}

.projects-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(61, 40, 23, 0.15);
    margin-bottom: 60px;
}

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

.projects-header {
    display: flex;
    align-items: baseline;
    gap: 25px;
    margin-bottom: 40px;
}

.projects-title-bar {
    width: 4px;
    height: 80px;
    background-color: #C9B37E;
    flex-shrink: 0;
}

.projects-title {
    font-size: 48px;
    font-weight: 400;
    color: #3D2817;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.projects-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.projects-description {
    font-size: 17px;
    line-height: 1.9;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    flex: 1;
    max-width: 700px;
}

.more-projects-button {
    background-color: #C9B37E;
    color: #3D2817;
    border: none;
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.more-projects-button:hover {
    background-color: #B8A06D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 179, 126, 0.4);
}

/* Portfolio Carousel Section */
.portfolio-carousel-section {
    width: 100%;
    background-color: #FAF8F4;
    padding: 100px 0;
}

.portfolio-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.portfolio-carousel-arrow {
    background-color: #FAF8F4;
    border: 1px solid rgba(61, 40, 23, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    color: #3D2817;
}

.portfolio-carousel-arrow:hover {
    background-color: #C9B37E;
    border-color: #C9B37E;
    color: white;
    transform: scale(1.1);
}

.portfolio-carousel-wrapper {
    flex: 1;
    overflow: visible;
}

.portfolio-carousel-track {
    display: flex;
    gap: 30px;
}

.portfolio-slide {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.portfolio-image-placeholder {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.portfolio-slide:hover .portfolio-image-placeholder {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.portfolio-image-content {
    text-align: center;
    z-index: 2;
}

.portfolio-room-label {
    color: #3D2817;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.portfolio-location {
    font-size: 14px;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    text-align: center;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

/* Client Testimonial Section */
.testimonial-section {
    width: 100%;
    background-color: #FAF8F4;
    padding: 80px 0 100px;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.testimonial-heading {
    font-size: 42px;
    font-weight: 700;
    color: #C9B37E;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 800px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.avatar-initial {
    font-size: 24px;
    font-weight: 600;
    color: white;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonial-author-name {
    font-size: 18px;
    font-weight: 600;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
}

/* About Us Page Styles */
.about-main-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 100px 0;
}

.about-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-main-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-kicker {
    font-size: 14px;
    color: #6B5B3A;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

.about-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #C9B37E;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.about-description-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-description-text {
    font-size: 15px;
    line-height: 1.8;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    margin: 0;
    letter-spacing: 0.2px;
}

.about-progress-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.about-progress-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-progress-label {
    font-size: 14px;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

.about-progress-percent {
    font-size: 14px;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.about-progress-bar {
    width: 100%;
    height: 6px;
    background-color: #E5E0D6;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.about-progress-fill {
    height: 100%;
    background-color: #C9B37E;
    border-radius: 3px;
    transition: width 1s ease-in-out;
}

.about-founder-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.about-founder-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-founder-name {
    font-size: 18px;
    font-weight: 700;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

.about-founder-role {
    font-size: 13px;
    color: #6B5B3A;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

.about-contact-button {
    background-color: #C9B37E;
    color: #FFFFFF;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.about-contact-button:hover {
    background-color: #B8A06D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-main-right {
    width: 100%;
}

.about-main-image {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F5F5F0 0%, #E8E8E3 50%, #D4C5B0 100%);
    position: relative;
    overflow: hidden;
}

.about-image-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-arch-model {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    border-radius: 8px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.about-blueprints {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(59, 130, 246, 0.1) 2px, rgba(59, 130, 246, 0.1) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(59, 130, 246, 0.1) 2px, rgba(59, 130, 246, 0.1) 4px);
    opacity: 0.3;
    z-index: 1;
}

/* Founder Words Section */
.founder-words-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 80px 0;
    position: relative;
    overflow: visible;
}

.founder-words-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
}

.founder-words-top-line {
    width: 100vw;
    height: 1px;
    background-color: #C9B37E;
    margin-bottom: 40px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    left: 0;
    right: 0;
}

.founder-words-top-line::after {
    content: '';
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #C9B37E;
    border-radius: 50%;
}

.founder-words-content {
    text-align: center;
    position: relative;
    padding: 0 40px;
}

.founder-words-title-bar {
    position: absolute;
    left: 0;
    top: -20px;
    width: 6px;
    height: 80px;
    background-color: #C9B37E;
    z-index: 1;
}

.founder-words-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 38px;
    font-weight: 400;
    color: #C9B37E;
    margin: 0 0 30px 0;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.founder-words-text-block {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.founder-words-text {
    font-size: 16px;
    line-height: 1.9;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    margin: 0 0 20px 0;
    letter-spacing: 0.2px;
}

.founder-words-text strong {
    font-weight: 700;
    color: #3D2817;
}

.founder-words-quote {
    font-size: 16px;
    line-height: 1.9;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    font-style: italic;
    margin: 0;
    text-align: center;
    letter-spacing: 0.2px;
}

.founder-words-bottom-line {
    width: 100vw;
    height: 1px;
    background-color: #C9B37E;
    margin-top: 40px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    left: 0;
    right: 0;
}

.founder-words-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #C9B37E;
    border-radius: 50%;
}

/* Achievements Section */
.achievements-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 80px 0 100px;
    position: relative;
}

.achievements-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.achievements-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
}

.achievements-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: 0.5px;
    text-align: center;
}

.achievements-title-bar {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 100px;
    background-color: #C9B37E;
    z-index: 1;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.achievement-number {
    font-size: 36px;
    font-weight: 700;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    line-height: 1;
    margin: 0;
}

.achievement-label {
    font-size: 14px;
    color: #6B5B3A;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.2px;
}

/* About Testimonials Section */
.about-testimonials-section {
    width: 100%;
    background-color: #FAF8F4;
    padding: 100px 0;
}

.about-testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.about-testimonials-kicker {
    font-size: 14px;
    color: #1A1A1A;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.about-testimonials-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 42px;
    font-weight: 400;
    color: #C9B37E;
    margin: 0 0 40px 0;
    letter-spacing: 0.5px;
}

.about-testimonials-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.about-testimonials-quote-icon {
    font-size: 120px;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #C9B37E;
    line-height: 1;
    margin: 0;
    font-weight: 400;
}

.about-testimonials-text {
    font-size: 18px;
    line-height: 1.8;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin: 0;
    letter-spacing: 0.2px;
}

.about-testimonials-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.about-testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: #D0D0D0;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.about-testimonial-dot.active {
    background-color: #2563EB;
    width: 12px;
    height: 12px;
}

.about-testimonials-profiles {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.about-testimonial-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.about-testimonial-profile.active {
    opacity: 1;
}

.about-testimonial-triangle {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #C9B37E;
    margin-bottom: -5px;
    z-index: 2;
}

.about-testimonial-avatar {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.about-avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-avatar-placeholder.active {
    border: 3px solid #C9B37E;
    box-shadow: 0 6px 20px rgba(201, 179, 126, 0.3);
}

.about-avatar-initial {
    font-size: 32px;
    font-weight: 600;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
}

.about-testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: #C9B37E;
    font-family: 'Arial', sans-serif;
    margin: 0;
    letter-spacing: 0.3px;
}

.about-testimonial-role {
    font-size: 14px;
    color: #6B5B3A;
    font-family: 'Arial', sans-serif;
    margin: 0;
    letter-spacing: 0.2px;
}

.about-testimonial-stars {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-top: 5px;
}

.about-star {
    font-size: 16px;
    color: #C9B37E;
    line-height: 1;
}

.about-content-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 80px 0;
}

.about-content-section.alt-bg {
    background-color: #FAF8F4;
}

.about-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.about-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.about-section-title-bar {
    width: 4px;
    height: 60px;
    background-color: #C9B37E;
}

.about-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #3D2817;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin: 0;
    letter-spacing: 0.5px;
}

.about-section-content {
    max-width: 900px;
}

.about-section-text {
    font-size: 16px;
    line-height: 1.9;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    margin: 0 0 25px 0;
    letter-spacing: 0.3px;
}

.about-section-text:last-child {
    margin-bottom: 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.why-choose-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(201, 179, 126, 0.1);
    border-radius: 8px;
}

.why-choose-title {
    font-size: 22px;
    font-weight: 600;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    margin: 0;
    letter-spacing: 0.3px;
}

.why-choose-text {
    font-size: 15px;
    line-height: 1.8;
    color: #6B5B3A;
    font-family: 'Arial', sans-serif;
    margin: 0;
    letter-spacing: 0.2px;
}

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

.value-item {
    padding: 30px;
    background-color: #FAF8F4;
    border-radius: 8px;
    border-left: 4px solid #C9B37E;
}

.value-title {
    font-size: 24px;
    font-weight: 600;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    margin: 0 0 15px 0;
    letter-spacing: 0.3px;
}

.value-text {
    font-size: 15px;
    line-height: 1.8;
    color: #6B5B3A;
    font-family: 'Arial', sans-serif;
    margin: 0;
    letter-spacing: 0.2px;
}

.about-cta-section {
    width: 100%;
    background: linear-gradient(135deg, #C9B37E 0%, #B8A06D 100%);
    padding: 100px 0;
    text-align: center;
}

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

.about-cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #1A1A1A;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

.about-cta-text {
    font-size: 18px;
    line-height: 1.8;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    margin: 0 0 40px 0;
    letter-spacing: 0.3px;
}

.about-cta-button {
    display: inline-block;
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 2px solid #1A1A1A;
}

.about-cta-button:hover {
    background-color: transparent;
    color: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Us Tab */
.contact-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    background-color: #C9B37E;
    padding: 18px 45px;
    border-radius: 0 0 10px 10px;
    z-index: 998;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-tab:hover {
    background-color: #C19B26;
    padding-right: 50px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

.contact-tab-text {
    color: #3D2817;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    white-space: nowrap;
}

/* FAQ Section */
.faq-section {
    width: 100%;
    background-color: #FAF8F4;
    padding: 100px 0;
    position: relative;
}

.faq-border-top,
.faq-border-bottom {
    width: 100%;
    height: 1px;
    background-color: #C9B37E;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 60px;
    background-color: #FAF8F4;
    border: 1px solid #C9B37E;
}

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

.faq-title {
    font-size: 42px;
    font-weight: 400;
    color: #C9B37E;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.faq-title-divider {
    width: 80px;
    height: 1px;
    background-color: #C9B37E;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #C9B37E;
}

.faq-item:first-child {
    border-top: 1px solid #C9B37E;
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 17px;
    font-weight: 500;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    flex: 1;
    padding-right: 20px;
}

.faq-chevron {
    width: 16px;
    height: 16px;
    color: #3D2817;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-question:hover {
    padding-left: 10px;
}

.faq-question:hover span {
    color: #C9B37E;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0;
}

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

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    opacity: 0.8;
}

/* Before & After Slider Section */
.before-after-section {
    width: 100%;
    background-color: #FAF8F4;
    padding: 100px 0;
}

.before-after-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.before-after-title {
    font-size: 42px;
    font-weight: 400;
    color: #C9B37E;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.before-after-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.before-after-slider:active {
    cursor: grabbing;
}

.before-after-image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.before-image {
    left: 0;
    width: 50%;
    z-index: 1;
}

.after-image {
    right: 0;
    width: 100%;
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.image-label {
    position: absolute;
    top: 20px;
    z-index: 10;
    background-color: rgba(61, 40, 23, 0.8);
    color: white;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
}

.before-label {
    left: 20px;
}

.after-label {
    right: 20px;
}

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

.room-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.room-window {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, #E0E0E0 0%, #C0C0C0 100%);
    border: 3px solid #3D2817;
    border-radius: 4px;
}

.room-floor {
    width: 100%;
    height: 40%;
    background: repeating-linear-gradient(90deg,
            #D4AF37 0px,
            #D4AF37 100px,
            #C9B37E 100px,
            #C9B37E 200px);
    background-size: 200px 100%;
}

.room-content.decorated {
    background: linear-gradient(180deg, rgba(255, 240, 245, 0.3) 0%, transparent 30%);
}

.room-curtains {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, #C9B37E 0%, #B8A06D 100%);
    border-radius: 0 0 4px 4px;
    box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.1);
}

.room-console {
    position: absolute;
    bottom: 40%;
    left: 10%;
    width: 80%;
    height: 15%;
    background: linear-gradient(180deg, #FAF8F4 0%, #F5F5F0 100%);
    border-radius: 8px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.room-mirrors {
    position: absolute;
    bottom: 55%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 5;
}

.mirror {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #FAF8F4 0%, #E8E8E3 100%);
    border: 3px solid #C9B37E;
    box-shadow: 0 0 20px rgba(201, 179, 126, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.8);
}

.room-ceiling {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(180deg, #FAF8F4 0%, rgba(255, 240, 245, 0.4) 100%);
    border-bottom: 2px solid rgba(201, 179, 126, 0.3);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: #C9B37E;
    z-index: 20;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.handle-line {
    width: 100%;
    height: 100%;
    background-color: #C9B37E;
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: white;
    border: 2px solid #C9B37E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: grab;
}

.handle-circle:active {
    cursor: grabbing;
}

.handle-arrow {
    width: 12px;
    height: 12px;
    color: #3D2817;
    flex-shrink: 0;
}

/* Contact Us Section */
.contact-section {
    width: 100%;
    background-color: #FAF8F4;
    padding: 0;
    min-height: 600px;
    margin-bottom: 0;
}

.contact-container {
    display: flex;
    width: 100%;
    min-height: 600px;
}

.contact-image-side {
    width: 60%;
    position: relative;
    overflow: hidden;
}

.contact-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 600px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.contact-room-content {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 40px;
}

.contact-room-sofa {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(135deg, #E8E8E3 0%, #D4C5B0 100%);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.contact-room-plant {
    position: absolute;
    bottom: 45%;
    left: 40px;
    width: 80px;
    height: 200px;
    background: linear-gradient(135deg, #4A7C59 0%, #5A8C69 100%);
    border-radius: 40px 40px 0 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}

.contact-room-wall {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55%;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.contact-wall-slats {
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, #8B6F47 0%, #6B4F27 100%);
    border-radius: 4px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-wall-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6B4F27 0%, #4A2F17 100%);
    margin: 0 40px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.contact-wall-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
}

.contact-wall-panels {
    flex: 1;
    height: 100%;
    background: linear-gradient(135deg, #F5F5F0 0%, #E8E8E3 100%);
    border-radius: 4px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact-wall-panels::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
}

.contact-info-side {
    width: 40%;
    background-color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.contact-info-content {
    width: 100%;
    max-width: 500px;
}

.contact-title {
    font-size: 56px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    margin-bottom: 60px;
    line-height: 1.1;
    letter-spacing: 2px;
}

.contact-title-part {
    display: inline-block;
    color: #FFFFFF;
}

.contact-title-part.gold {
    color: #C9B37E;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-label {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.contact-details {
    font-size: 15px;
    font-weight: 400;
    color: #E0E0E0;
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Services Page Styles */

/* Services Hero Section */
.services-hero-section {
    width: 100%;
    background-color: #FAF8F4;
    padding: 120px 0 80px;
}

.services-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.services-hero-content {
    max-width: 800px;
}

.services-hero-title-bar {
    width: 4px;
    height: 80px;
    background-color: #C9B37E;
    margin-bottom: 30px;
    border-radius: 2px;
}

.services-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.services-hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    max-width: 700px;
}

/* Services Listing Section */
.services-listing-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 100px 0;
    margin-bottom: 0;
}

.services-listing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.services-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-image-card {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.service-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.35s ease-in-out;
    z-index: 2;
    pointer-events: none;
}

.service-image-card:hover::before {
    background-color: rgba(0, 0, 0, 0.4);
}

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

.service-image-content {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 30px;
}

.service-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(250, 248, 244, 0.98);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 60px;
    transition: bottom 0.35s ease-in-out, transform 0.35s ease-in-out, background 0.35s ease-in-out, padding 0.35s ease-in-out;
    z-index: 10;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.service-image-card:hover .service-text-overlay {
    bottom: 50%;
    transform: translateY(50%);
    background: rgba(255, 255, 255, 0.98);
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.service-arrow-icon-top {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background-color: #C9B37E;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-arrow-icon-top svg path {
    stroke: #FFFFFF;
}

.service-image-card:hover .service-arrow-icon-top {
    transform: translateY(-3px);
    background-color: #B8A06D;
}

.service-overlay-title {
    font-size: 14px;
    font-weight: 600;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.service-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-overlay-description {
    font-size: 13px;
    line-height: 1.6;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    margin: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.35s ease-in-out 0.1s, max-height 0.35s ease-in-out, margin 0.35s ease-in-out;
}

.service-image-card:hover .service-overlay-description {
    opacity: 0.85;
    max-height: 100px;
    margin-top: 8px;
}

.service-arrow-icon {
    width: 32px;
    height: 32px;
    background-color: #E8D4B0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out, background-color 0.35s ease-in-out;
}

.service-arrow-icon svg path {
    stroke: #FFFFFF;
}

.service-image-card:hover .service-arrow-icon {
    opacity: 1;
    transform: translateY(0);
    background-color: #E8D4B0;
}

.service-arrow-icon-top {
    display: none;
}

/* Service Image Placeholders */
.service-3d-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-3d-cube {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #C9B37E 0%, #B8A06D 100%);
    transform: rotate(45deg);
    box-shadow: 0 10px 30px rgba(201, 179, 126, 0.3);
}

.service-3d-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 20px,
            rgba(201, 179, 126, 0.1) 20px,
            rgba(201, 179, 126, 0.1) 22px);
}

.service-building-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.service-building-roof {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 100px solid #8B6F47;
}

.service-building-walls {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 150px;
    background: linear-gradient(135deg, #A68B5B 0%, #8B6F47 100%);
    border-radius: 4px 4px 0 0;
}

.service-blueprint {
    position: absolute;
    bottom: 30px;
    left: 20px;
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #E8E8E3 0%, #D4C5B0 100%);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-bedroom-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.service-bed {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 35%;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F0 100%);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-nightstand {
    position: absolute;
    bottom: 15%;
    width: 12%;
    height: 20%;
    background: linear-gradient(135deg, #E8E8E3 0%, #D4C5B0 100%);
    border-radius: 4px;
}

.service-nightstand.left {
    left: 8%;
}

.service-nightstand.right {
    right: 8%;
}

.service-artwork {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 30%;
    background: linear-gradient(135deg, #D4AF37 0%, #C9B37E 50%, #3D2817 100%);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.service-wall-slats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20%;
    background: repeating-linear-gradient(90deg,
            #E8E8E3 0px,
            #E8E8E3 20px,
            #D4C5B0 20px,
            #D4C5B0 22px);
}

.service-salon-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.service-salon-chair {
    width: 25%;
    height: 40%;
    background: linear-gradient(135deg, #E8E8E3 0%, #D4C5B0 100%);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-salon-mirror {
    width: 35%;
    height: 60%;
    background: linear-gradient(135deg, #F5F5F0 0%, #E8E8E3 100%);
    border-radius: 8px;
    border: 3px solid #C9B37E;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-salon-lighting {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 8%;
    background: linear-gradient(135deg, #C9B37E 0%, #B8A06D 100%);
    border-radius: 4px;
}

.service-dressing-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-mirror-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, #F5F5F0 0%, #E8E8E3 100%);
    border: 4px solid #C9B37E;
    box-shadow: 0 0 30px rgba(201, 179, 126, 0.4);
    position: relative;
}

.service-mirror-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 179, 126, 0.2) 0%, transparent 70%);
}

.service-vanity {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 15%;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F0 100%);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-curtains {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 25%;
    background: linear-gradient(135deg, #8B6F47 0%, #6B4F27 100%);
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
}

.service-kitchen-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.service-kitchen-cabinets {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(135deg, #6B4F27 0%, #4A2F17 100%);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-kitchen-counter {
    position: absolute;
    bottom: 40%;
    left: 0;
    right: 0;
    height: 8%;
    background: linear-gradient(135deg, #E8E8E3 0%, #D4C5B0 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-kitchen-sink {
    position: absolute;
    bottom: 42%;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 6%;
    background: linear-gradient(135deg, #C0C0C0 0%, #A0A0A0 100%);
    border-radius: 4px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Load More Button */
.services-load-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.services-load-more-button {
    background-color: #E8D4B0;
    color: #3D2817;
    border: none;
    padding: 14px 45px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-load-more-button:hover {
    background-color: #D4C5B0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 212, 176, 0.4);
}

/* Want to Hire Us CTA Section */
.hire-us-cta-section {
    width: 100%;
    min-height: 66.67vh;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    overflow: hidden;
    margin-bottom: 0;
}

.hire-us-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 80px,
            rgba(255, 255, 255, 0.08) 80px,
            rgba(255, 255, 255, 0.08) 82px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 120px,
            rgba(255, 255, 255, 0.08) 120px,
            rgba(255, 255, 255, 0.08) 122px);
    pointer-events: none;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

.hire-us-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hire-us-title {
    font-size: 48px;
    font-weight: 400;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.2;
    letter-spacing: 2px;
    margin: 0;
}

.hire-us-text-white {
    color: #FFFFFF;
}

.hire-us-text-gold {
    color: #D4AF37;
}

.hire-us-button {
    background-color: #D4AF37;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 16px 50px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hire-us-button:hover {
    background-color: #C19B26;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Services Stats Section */
.services-stats-section {
    width: 100%;
    min-height: 33.33vh;
    background-color: #FFFFFF;
    padding: 80px 60px;
    margin-bottom: 0;
}

.services-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.services-stats-title {
    font-size: 48px;
    font-weight: 400;
    color: #D4AF37;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-align: center;
    margin: 0;
    letter-spacing: 1px;
}

.services-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    width: 100%;
    max-width: 1200px;
}

.services-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.services-stat-number {
    font-size: 56px;
    font-weight: 400;
    color: #D4AF37;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1;
    margin: 0;
}

.services-stat-label {
    font-size: 15px;
    font-weight: 400;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    line-height: 1.4;
    margin: 0;
}

/* Why Choose Our Services Section */
.why-choose-services-section {
    width: 100%;
    background-color: #FAF8F4;
    padding: 100px 0;
}

.why-choose-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.why-choose-services-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 60px;
}

.why-choose-services-title-bar {
    width: 4px;
    height: 80px;
    background-color: #C9B37E;
    flex-shrink: 0;
    border-radius: 2px;
}

.why-choose-services-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-family: 'Arial', sans-serif;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.why-choose-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-choose-number {
    font-size: 48px;
    font-weight: 300;
    color: #C9B37E;
    font-family: 'Arial', sans-serif;
    line-height: 1;
    letter-spacing: -2px;
}

.why-choose-heading {
    font-size: 22px;
    font-weight: 600;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    margin: 0;
    line-height: 1.3;
}

.why-choose-text {
    font-size: 16px;
    line-height: 1.7;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    opacity: 0.85;
    margin: 0;
}

/* How We Work Section */
.how-we-work-section {
    width: 100%;
    background-color: #FAFAF5;
    padding: 100px 0;
}

.how-we-work-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.how-we-work-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 60px;
}

.how-we-work-title-bar {
    width: 4px;
    height: 80px;
    background-color: #C9B37E;
    flex-shrink: 0;
    border-radius: 2px;
}

.how-we-work-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-family: 'Arial', sans-serif;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.process-step-number {
    width: 60px;
    height: 60px;
    background-color: #C9B37E;
    color: #3D2817;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    flex-shrink: 0;
}

.process-step-content {
    flex: 1;
    padding-top: 8px;
}

.process-step-title {
    font-size: 24px;
    font-weight: 600;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-step-description {
    font-size: 16px;
    line-height: 1.7;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    opacity: 0.85;
    margin: 0;
}

/* Services CTA Section */
.services-cta-section {
    width: 100%;
    background-color: #3D2817;
    padding: 100px 0;
}

.services-cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.services-cta-content {
    text-align: center;
}

.services-cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.services-cta-description {
    font-size: 18px;
    line-height: 1.8;
    color: #E0E0E0;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.services-cta-button {
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.services-cta-button.primary {
    background-color: #C9B37E;
    color: #3D2817;
    border: none;
}

.services-cta-button.primary:hover {
    background-color: #B8A06D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 179, 126, 0.4);
}

.services-cta-button.secondary {
    background-color: transparent;
    color: #C9B37E;
    border: 2px solid #C9B37E;
}

.services-cta-button.secondary:hover {
    background-color: rgba(201, 179, 126, 0.1);
    transform: translateY(-2px);
}

/* Contact Page Styles */

/* Client Services Enquiry Form Section */
.enquiry-form-section {
    width: 100%;
    background-color: #FAF8F4;
    padding: 100px 0;
    margin-bottom: 0;
}

.enquiry-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.enquiry-form-title {
    font-size: 48px;
    font-weight: 400;
    color: #D4AF37;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.enquiry-form-subtitle {
    font-size: 16px;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
    opacity: 0.8;
}

.enquiry-form {
    max-width: 1000px;
    margin: 0 auto;
}

.enquiry-form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.enquiry-form-row:last-of-type {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 25px;
}

.enquiry-form-row.full-width {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
}

textarea.enquiry-form-input {
    min-height: 150px;
    resize: vertical;
}

.enquiry-form-group {
    width: 100%;
}

.enquiry-form-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(61, 40, 23, 0.25);
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    color: #3D2817;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.enquiry-form-input:focus {
    outline: none;
    border-color: #C9B37E;
    box-shadow: 0 0 0 2px rgba(201, 179, 126, 0.1);
}

.enquiry-form-input::placeholder {
    color: rgba(61, 40, 23, 0.5);
}

.enquiry-form-submit-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.enquiry-submit-button {
    background-color: #D4AF37;
    color: #FFFFFF;
    border: 1px solid #C19B26;
    padding: 16px 50px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-submit-button:hover {
    background-color: #C19B26;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Map and Contact Info Section */
.contact-map-info-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 0;
    margin-bottom: 0;
}

.contact-map-info-container {
    display: flex;
    width: 100%;
    min-height: 500px;
}

.contact-map-side {
    width: 60%;
    position: relative;
    overflow: hidden;
}

.contact-map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
}

.contact-map-iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    display: block;
}

.contact-info-side-map {
    width: 40%;
    background-color: #FFFFFF;
    padding: 60px 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-left: 1px solid rgba(61, 40, 23, 0.1);
}

.contact-info-map-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-map-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
}

.contact-info-map-item:first-child {
    padding-top: 0;
}

.contact-info-map-item:last-child {
    padding-bottom: 0;
}

.contact-info-map-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(61, 40, 23, 0.12);
    margin: 0;
}

.contact-info-map-label {
    font-size: 12px;
    font-weight: 600;
    color: #A68B5B;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.contact-info-map-value {
    font-size: 15px;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* Contact Information Footer Section */
.contact-info-section-footer {
    width: 100%;
    background-color: #FFFFFF;
    padding: 0;
    position: relative;
    margin-bottom: 0;
}

.contact-info-footer-container {
    display: flex;
    width: 100%;
    min-height: 500px;
}

.contact-abstract-side {
    width: 40%;
    background-color: #FAF8F4;
    position: relative;
    overflow: hidden;
}

.contact-abstract-design {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
}

.abstract-shape-1 {
    grid-column: 1;
    grid-row: 1;
    background-color: #5A4A3A;
    width: 100%;
    height: 100%;
}

.abstract-shape-2 {
    grid-column: 2;
    grid-row: 1;
    background-color: #E8E0D0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.abstract-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #6B5B4A, #4A3A2A);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.3), inset -5px 5px 15px rgba(255, 255, 255, 0.1);
}

.abstract-shape-3 {
    grid-column: 1 / 3;
    grid-row: 2;
    background-color: #D4C5B0;
    width: 100%;
    height: 100%;
}

.contact-info-footer-side {
    width: 60%;
    background-color: #2C2C2C;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

.contact-info-footer-title {
    font-size: 56px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 2px;
}

.contact-title-white {
    color: #FFFFFF;
}

.contact-title-gold {
    color: #C9B37E;
}

.contact-info-footer-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-info-footer-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-footer-label {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.contact-info-footer-text {
    font-size: 15px;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* Portfolio Page Styles */

/* Portfolio Hero Section */
.portfolio-hero-section {
    width: 100%;
    background-color: #FAF8F4;
    padding: 100px 0 80px;
}

.portfolio-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.portfolio-hero-content {
    max-width: 800px;
}

.portfolio-hero-title-bar {
    width: 4px;
    height: 80px;
    background-color: #C9B37E;
    margin-bottom: 30px;
    border-radius: 2px;
}

.portfolio-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.portfolio-hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    max-width: 700px;
}

/* Portfolio Filter Section */
.portfolio-filter-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 40px 0;
    border-bottom: 1px solid rgba(61, 40, 23, 0.1);
}

.portfolio-filter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.portfolio-filter-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.portfolio-filter-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6B5B3A;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 2px solid transparent;
}

.portfolio-filter-btn:hover {
    color: #C9B37E;
}

.portfolio-filter-btn.active {
    color: #C9B37E;
    border-bottom-color: #C9B37E;
}

/* Portfolio Grid Section */
.portfolio-grid-section {
    width: 100%;
    background-color: #FAF8F4;
    padding: 80px 0 100px;
}

.portfolio-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

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

.portfolio-item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-item-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.portfolio-item:hover .portfolio-item-image {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.2);
}

.portfolio-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
}

.portfolio-item-label {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.portfolio-item-category {
    font-size: 13px;
    font-weight: 400;
    font-family: 'Arial', sans-serif;
    color: #C9B37E;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-item-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.portfolio-item-title {
    font-size: 20px;
    font-weight: 600;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    margin: 0;
    letter-spacing: 0.3px;
}

.portfolio-item-location {
    font-size: 14px;
    color: #6B5B3A;
    font-family: 'Arial', sans-serif;
    margin: 0;
    letter-spacing: 0.2px;
}

/* Portfolio Showcase Section */
.portfolio-showcase-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 100px 0;
}

.portfolio-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.portfolio-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.portfolio-showcase-item.portfolio-showcase-reverse {
    direction: rtl;
}

.portfolio-showcase-item.portfolio-showcase-reverse>* {
    direction: ltr;
}

.portfolio-showcase-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.portfolio-showcase-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-showcase-image-content {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 40px;
}

.portfolio-showcase-night-scene {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 50%, #3D3D3D 100%);
    border-radius: 8px;
    position: relative;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    overflow: hidden;
}

.portfolio-showcase-night-scene::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(61, 61, 61, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    border-radius: 8px 8px 0 0;
}

.portfolio-showcase-night-scene::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(44, 44, 44, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
    border-radius: 0 0 8px 8px;
    box-shadow: inset 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Add decorative elements for night scene */
.portfolio-showcase-night-scene {
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 50%, #3D3D3D 100%);
}

.portfolio-showcase-kitchen-scene {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F5F5F0 0%, #E8E8E3 100%);
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    overflow: hidden;
}

.portfolio-showcase-kitchen-scene::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #90CAF9 100%);
    border-radius: 8px 8px 0 0;
    box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.portfolio-showcase-kitchen-scene::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12%;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F0 100%);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
}

/* Add window and cabinet details */
.portfolio-showcase-kitchen-scene {
    background-image:
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 45%, rgba(255, 255, 255, 0.3) 55%, transparent 100%),
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(0, 0, 0, 0.02) 20px, rgba(0, 0, 0, 0.02) 22px),
        linear-gradient(135deg, #F5F5F0 0%, #E8E8E3 100%);
}

.portfolio-showcase-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
}

.portfolio-showcase-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    font-family: 'Arial', sans-serif;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.portfolio-showcase-description {
    font-size: 16px;
    line-height: 1.8;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.2px;
    opacity: 0.9;
}

.portfolio-showcase-button {
    background-color: #D4AF37;
    color: #FFFFFF;
    border: none;
    padding: 14px 35px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.portfolio-showcase-button:hover {
    background-color: #C19B26;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.portfolio-showcase-button:active {
    transform: translateY(0);
}

/* Portfolio Stats Section */
.portfolio-stats-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 80px 0;
}

.portfolio-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.portfolio-stats-title {
    font-size: 42px;
    font-weight: 400;
    color: #C9B37E;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.portfolio-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.portfolio-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.portfolio-stat-number {
    font-size: 56px;
    font-weight: 400;
    color: #D4AF37;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1;
    margin: 0;
}

.portfolio-stat-label {
    font-size: 15px;
    font-weight: 400;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    line-height: 1.4;
    margin: 0;
}

/* Footer */
.main-footer {
    width: 100%;
    background-color: #000000;
    padding: 10px 0;
    margin-top: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-copyright {
    font-size: 13px;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.footer-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-policy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    letter-spacing: 0.3px;
}

.footer-policy-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.footer-policy:hover {
    color: #C9B37E;
    transform: translateY(-1px);
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 200px;
}

.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    width: 20px;
    height: 20px;
    color: #FFFFFF;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: #C9B37E;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

/* Scroll to Top Button */
.scroll-to-top-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #D4AF37;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top-button:hover {
    background-color: #C19B26;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.scroll-to-top-button svg {
    width: 20px;
    height: 20px;
}

.scroll-to-top-button svg path {
    stroke: #FFFFFF;
    stroke-width: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-header {
        height: 110px;
        min-height: 110px;
        max-height: 110px;
    }

    .header-container {
        padding: 0 30px;
        gap: 30px;
        height: 110px;
        min-height: 110px;
        max-height: 110px;
    }

    .main-nav {
        gap: 25px;
    }

    .nav-link {
        font-size: 12px;
    }
}

@media (max-width: 968px) {
    .main-header {
        height: auto;
        min-height: 90px;
        padding: 20px 0;
    }

    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
        height: auto;
        min-height: 90px;
        padding: 0 30px;
        align-content: flex-start;
    }

    .logo-section {
        order: 1;
        width: auto;
        justify-content: flex-start;
        margin-bottom: 0;
        height: auto;
        min-height: auto;
    }

    .main-nav {
        order: 2;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        height: auto;
        min-height: auto;
        margin-left: 0;
    }

    .cta-button {
        order: 3;
        width: 100%;
        max-width: 200px;
    }

    .carousel-container {
        padding: 0 30px;
    }

    .carousel-slide {
        min-width: 50%;
    }

    .carousel-image-placeholder {
        height: 400px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-progress-column {
        order: 2;
    }

    .about-stats-column {
        order: 3;
    }

    .about-container {
        padding: 0 40px;
    }

    /* Services Page Responsive */
    .services-hero-container,
    .services-listing-container,
    .why-choose-services-container,
    .how-we-work-container,
    .services-cta-container {
        padding: 0 40px;
    }

    .services-hero-title {
        font-size: 34px;
    }

    .services-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-image-card {
        height: 380px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }

    /* Contact Page Tablet */
    .enquiry-form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .enquiry-form-row:last-of-type {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-map-info-container {
        flex-direction: column;
    }

    .contact-map-side {
        width: 100%;
    }

    .contact-info-side-map {
        width: 100%;
        padding: 50px 40px;
        border-left: none;
        border-top: 1px solid rgba(61, 40, 23, 0.1);
    }

    /* Contact Info Footer Section Tablet */
    .contact-info-footer-container {
        flex-direction: column;
    }

    .contact-abstract-side {
        width: 100%;
        min-height: 350px;
    }

    .contact-abstract-design {
        min-height: 350px;
    }

    .abstract-circle {
        width: 150px;
        height: 150px;
    }

    .contact-info-footer-side {
        width: 100%;
        padding: 60px 50px;
    }

    .contact-info-footer-title {
        font-size: 48px;
    }

    /* Hire Us CTA Section Tablet */
    .hire-us-title {
        font-size: 36px;
    }

    /* Stats Section Tablet */
    .services-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    /* Portfolio Page Tablet */
    .portfolio-hero-container,
    .portfolio-filter-container,
    .portfolio-grid-container,
    .portfolio-showcase-container,
    .portfolio-stats-container {
        padding: 0 40px;
    }

    .portfolio-hero-title {
        font-size: 34px;
    }

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

    .portfolio-item-image {
        height: 350px;
    }

    .portfolio-showcase-section {
        padding: 80px 0;
    }

    .portfolio-showcase-container {
        gap: 80px;
    }

    .portfolio-showcase-item {
        gap: 50px;
    }

    .portfolio-showcase-image {
        min-height: 400px;
    }

    .portfolio-showcase-image-placeholder {
        min-height: 400px;
    }

    .portfolio-showcase-title {
        font-size: 42px;
    }

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

@media (max-width: 640px) {
    .welcome-text {
        font-size: 12px;
        padding: 0 20px;
    }

    .main-nav {
        gap: 15px;
    }

    .nav-link {
        font-size: 11px;
    }

    .logo-main {
        font-size: 20px;
    }

    .logo-sub {
        font-size: 12px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .hero-title-container {
        padding: 0 20px 30px;
    }

    .carousel-container {
        padding: 0 20px;
        gap: 10px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-slide {
        min-width: 100%;
    }

    .carousel-image-placeholder {
        height: 300px;
    }

    .about-container {
        padding: 0 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-progress-column {
        order: 2;
    }

    .about-stats-column {
        order: 3;
    }

    .title-main {
        font-size: 36px;
    }

    .title-sub {
        font-size: 28px;
    }

    .stat-number {
        font-size: 48px;
    }

    /* Mobile: Convert to horizontal button at bottom */
    .contact-tab {
        position: fixed;
        right: auto;
        left: 50%;
        bottom: 20px;
        top: auto;
        transform: translateX(-50%) rotate(0deg);
        padding: 12px 30px;
        border-radius: 30px;
        min-width: 160px;
        max-width: calc(100% - 40px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .contact-tab:hover {
        transform: translateX(-50%) rotate(0deg) translateY(-2px);
        padding-right: 30px;
        padding-left: 30px;
    }

    .contact-tab-text {
        font-size: 12px;
        letter-spacing: 1.5px;
        text-align: center;
    }

    .crafting-container,
    .founders-container,
    .projects-container {
        padding: 0 30px;
    }

    /* Services Page Mobile */
    .services-listing-container {
        padding: 0 20px;
    }

    .services-image-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-image-card {
        height: 300px;
    }

    .service-overlay-title {
        font-size: 14px;
    }

    .service-overlay-description {
        font-size: 13px;
    }

    .services-load-more-button {
        padding: 14px 40px;
        font-size: 14px;
    }

    /* Contact Page Mobile */
    .enquiry-form-container {
        padding: 0 30px;
    }

    .enquiry-form-title {
        font-size: 32px;
    }

    .enquiry-form-subtitle {
        font-size: 14px;
    }

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

    .enquiry-form-row:last-of-type {
        grid-template-columns: 1fr;
    }

    .enquiry-submit-button {
        padding: 14px 40px;
        font-size: 14px;
    }

    .contact-map-info-container {
        flex-direction: column;
    }

    .contact-map-side {
        width: 100%;
        min-height: 400px;
    }

    .contact-map-iframe,
    .contact-map-wrapper {
        min-height: 400px;
    }

    .contact-info-side-map {
        width: 100%;
        padding: 40px 30px;
        border-left: none;
        border-top: 1px solid rgba(61, 40, 23, 0.1);
    }

    .contact-info-map-content {
        gap: 30px;
    }

    /* Contact Info Footer Section Mobile */
    .contact-info-footer-container {
        flex-direction: column;
        min-height: auto;
    }

    .contact-abstract-side {
        width: 100%;
        min-height: 300px;
    }

    .contact-abstract-design {
        min-height: 300px;
    }

    .abstract-circle {
        width: 120px;
        height: 120px;
    }

    .contact-info-footer-side {
        width: 100%;
        padding: 50px 30px;
        gap: 40px;
    }

    .contact-info-footer-title {
        font-size: 36px;
    }

    .contact-info-footer-content {
        gap: 30px;
    }

    /* Hire Us CTA Section Mobile */
    .hire-us-cta-section {
        min-height: 50vh;
        padding: 60px 30px;
    }

    .hire-us-title {
        font-size: 42px;
    }

    .hire-us-button {
        padding: 14px 40px;
        font-size: 14px;
    }

    /* Stats Section Mobile */
    .services-stats-section {
        padding: 60px 30px;
    }

    .services-stats-title {
        font-size: 36px;
    }

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

    .services-stat-number {
        font-size: 42px;
    }

    .services-stat-label {
        font-size: 14px;
    }

    /* Disable hover effects on mobile - keep cards static */
    .service-image-card::before {
        display: none;
    }

    .service-text-overlay {
        position: absolute;
        bottom: 0;
        opacity: 1;
        transform: none;
    }

    .service-image-card:hover .service-text-overlay {
        bottom: 0;
        transform: none;
        opacity: 1;
    }

    .service-arrow-icon {
        opacity: 1;
    }

    .service-image-card:hover .service-arrow-icon {
        opacity: 1;
    }

    .crafting-title,
    .projects-title {
        font-size: 32px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .founder-image {
        width: 150px;
        height: 150px;
    }

    .founder-name {
        font-size: 20px;
    }

    .projects-content {
        flex-direction: column;
        gap: 25px;
    }

    /* Portfolio Page Mobile */
    .portfolio-hero-container,
    .portfolio-filter-container,
    .portfolio-grid-container,
    .portfolio-showcase-container,
    .portfolio-stats-container {
        padding: 0 30px;
    }

    .portfolio-hero-title {
        font-size: 42px;
    }

    .portfolio-hero-description {
        font-size: 16px;
    }

    .portfolio-filter-buttons {
        gap: 15px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .portfolio-filter-btn {
        font-size: 12px;
        padding: 10px 18px;
        white-space: nowrap;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .portfolio-item-image {
        height: 300px;
    }

    .portfolio-showcase-section {
        padding: 60px 0;
    }

    .portfolio-showcase-container {
        gap: 60px;
    }

    .portfolio-showcase-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-showcase-item.portfolio-showcase-reverse {
        direction: ltr;
    }

    .portfolio-showcase-image {
        min-height: 300px;
        order: 1;
    }

    .portfolio-showcase-image-placeholder {
        min-height: 300px;
    }

    .portfolio-showcase-content {
        order: 2;
        padding: 0;
    }

    .portfolio-showcase-title {
        font-size: 36px;
    }

    .portfolio-showcase-description {
        font-size: 15px;
    }

    .portfolio-showcase-button {
        padding: 12px 30px;
        font-size: 13px;
    }

    .portfolio-stats-title {
        font-size: 36px;
    }

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

    .portfolio-stat-number {
        font-size: 42px;
    }

    .portfolio-stat-label {
        font-size: 14px;
    }

    /* Services Page Responsive */
    .services-hero-container,
    .services-listing-container,
    .why-choose-services-container,
    .how-we-work-container,
    .services-cta-container {
        padding: 0 30px;
    }

    .services-hero-title {
        font-size: 42px;
    }

    .services-hero-description {
        font-size: 16px;
    }

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

    .service-image-card {
        height: 350px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
    }

    .process-step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .services-cta-title {
        font-size: 36px;
    }

    .services-cta-description {
        font-size: 16px;
    }

    .services-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-cta-button {
        width: 100%;
        max-width: 300px;
    }

    .scroll-to-top-button {
        right: 15px;
        bottom: 20px;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top-button svg {
        width: 18px;
        height: 18px;
    }

    .portfolio-carousel-container {
        padding: 0 20px;
        gap: 10px;
    }

    .faq-container {
        padding: 40px 30px;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .portfolio-carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .portfolio-slide {
        min-width: 100%;
    }

    .portfolio-image-placeholder {
        height: 350px;
    }

    .testimonial-container {
        padding: 0 30px;
    }

    .testimonial-heading {
        font-size: 32px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .faq-container {
        padding: 40px 30px;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .before-after-container {
        padding: 0 30px;
    }

    .before-after-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .before-after-slider {
        height: 450px;
    }

    .handle-circle {
        width: 40px;
        height: 40px;
    }

    .handle-arrow {
        width: 10px;
        height: 10px;
    }

    .footer-container {
        padding: 0 30px;
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-copyright,
    .footer-policy {
        font-size: 13px;
    }

    .main-footer {
        padding: 40px 0;
    }

    /* Portfolio Page Responsive */
    .portfolio-hero-container,
    .portfolio-filter-container,
    .portfolio-grid-container,
    .portfolio-stats-container {
        padding: 0 40px;
    }

    .portfolio-hero-title {
        font-size: 34px;
    }

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

    .portfolio-item-image {
        height: 350px;
    }

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

    /* About Us Page Responsive */
    .about-main-section {
        padding: 80px 0;
    }

    .about-main-container {
        padding: 0 40px;
    }

    .about-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-main-title {
        font-size: 36px;
    }

    .about-main-image {
        height: 500px;
    }

    .about-founder-block {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Founder Words & Achievements Responsive */
    .founder-words-container {
        padding: 0 40px;
    }

    .founder-words-top-line,
    .founder-words-bottom-line {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .founder-words-title {
        font-size: 34px;
    }

    .founder-words-content {
        padding: 0 20px;
    }

    .achievements-title {
        font-size: 36px;
    }

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

    .achievement-number {
        font-size: 34px;
    }

    /* About Testimonials Responsive */
    .about-testimonials-section {
        padding: 80px 0;
    }

    .about-testimonials-container {
        padding: 0 40px;
    }

    .about-testimonials-title {
        font-size: 36px;
    }

    .about-testimonials-quote-icon {
        font-size: 100px;
    }

    .about-testimonials-text {
        font-size: 16px;
    }

    .about-testimonials-profiles {
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .about-main-section {
        padding: 60px 0;
    }

    .about-main-container {
        padding: 0 30px;
    }

    .about-main-title {
        font-size: 28px;
    }

    .about-description-text {
        font-size: 14px;
    }

    .about-progress-label,
    .about-progress-percent {
        font-size: 13px;
    }

    .about-main-image {
        height: 400px;
    }

    .about-arch-model {
        width: 250px;
        height: 250px;
    }

    .about-founder-name {
        font-size: 16px;
    }

    .about-founder-role {
        font-size: 12px;
    }

    .about-contact-button {
        padding: 10px 24px;
        font-size: 13px;
    }

    /* Founder Words Responsive */
    .founder-words-section {
        padding: 60px 0;
    }

    .founder-words-container {
        padding: 0 30px;
    }

    .founder-words-top-line,
    .founder-words-bottom-line {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .founder-words-title {
        font-size: 32px;
    }

    .founder-words-text,
    .founder-words-quote {
        font-size: 15px;
    }

    .about-section-title-bar {
        height: 40px;
    }

    .about-section-title {
        font-size: 28px;
    }

    .about-section-text {
        font-size: 15px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-icon {
        width: 50px;
        height: 50px;
    }

    .why-choose-title {
        font-size: 20px;
    }

    .why-choose-text {
        font-size: 14px;
    }

    .value-item {
        padding: 25px;
    }

    .value-title {
        font-size: 20px;
    }

    .value-text {
        font-size: 14px;
    }

    .about-cta-section {
        padding: 60px 0;
    }

    .about-cta-title {
        font-size: 28px;
    }

    .about-cta-text {
        font-size: 15px;
    }

    .about-cta-button {
        padding: 14px 30px;
        font-size: 15px;
    }

    .about-cta-container {
        padding: 0 30px;
    }

    .contact-container {
        flex-direction: column;
        min-height: auto;
    }

    .contact-image-side {
        width: 100%;
        min-height: 400px;
    }

    .contact-image-placeholder {
        min-height: 400px;
    }

    .contact-info-side {
        width: 100%;
        padding: 60px 40px;
    }

    .contact-title {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .contact-info-grid {
        gap: 35px;
    }
}

/* Blog Page Styles */

/* Blog Hero Section */
.blog-hero-section {
    width: 100%;
    background-color: #FAF8F4;
    padding: 80px 0 60px;
    position: relative;
}

.blog-hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.blog-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.blog-hero-kicker {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: #C9B37E;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: 'Arial', sans-serif;
}

.blog-hero-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.blog-hero-title-bar {
    width: 4px;
    height: 60px;
    background-color: #C9B37E;
    flex-shrink: 0;
    border-radius: 2px;
}

.blog-hero-title {
    font-size: 36px;
    font-weight: 400;
    color: #3D2817;
    letter-spacing: 1px;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.2;
    margin: 0;
}

.blog-hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Posts Section */
.blog-posts-section {
    width: 100%;
    background-color: #FAFAF5;
    padding: 80px 0 100px;
}

.blog-posts-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-post-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.blog-post-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post-card:hover .blog-image-placeholder {
    transform: scale(1.08);
}

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-post-card:hover .blog-image-overlay {
    opacity: 1;
}

.blog-category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(201, 179, 126, 0.95);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.blog-post-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.blog-post-date,
.blog-post-read-time {
    font-size: 12px;
    color: #8B7355;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.blog-meta-divider {
    color: #C9B37E;
    font-size: 12px;
}

.blog-post-title {
    font-size: 22px;
    font-weight: 600;
    color: #3D2817;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.blog-post-card:hover .blog-post-title {
    color: #C9B37E;
}

.blog-post-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #5D4E3A;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #C9B37E;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-read-more:hover {
    gap: 12px;
    color: #B8A06D;
}

.blog-read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover svg {
    transform: translateX(3px);
}

/* Blog Newsletter Section */
.blog-newsletter-section {
    width: 100%;
    background-color: #E8E8E3;
    padding: 80px 0;
}

.blog-newsletter-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.blog-newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-newsletter-title-bar {
    width: 4px;
    height: 50px;
    background-color: #C9B37E;
    margin: 0 auto 25px;
    border-radius: 2px;
}

.blog-newsletter-title {
    font-size: 32px;
    font-weight: 400;
    color: #3D2817;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-newsletter-text {
    font-size: 16px;
    line-height: 1.7;
    color: #3D2817;
    font-family: 'Arial', sans-serif;
    margin-bottom: 35px;
}

.blog-newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto;
}

.blog-newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(61, 40, 23, 0.15);
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    color: #3D2817;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    outline: none;
}

.blog-newsletter-input:focus {
    border-color: #C9B37E;
    box-shadow: 0 0 0 3px rgba(201, 179, 126, 0.1);
}

.blog-newsletter-input::placeholder {
    color: #8B7355;
}

.blog-newsletter-button {
    background-color: #C9B37E;
    color: #FFFFFF;
    border: none;
    padding: 15px 35px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.blog-newsletter-button:hover {
    background-color: #B8A06D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 179, 126, 0.3);
}

.blog-newsletter-button:active {
    transform: translateY(0);
}

/* Responsive Design for Blog */
@media (max-width: 1200px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 60px 0 40px;
    }

    .blog-hero-container {
        padding: 0 30px;
    }

    .blog-hero-title {
        font-size: 32px;
    }

    .blog-hero-subtitle {
        font-size: 15px;
    }

    .blog-posts-section {
        padding: 60px 0 80px;
    }

    .blog-posts-container {
        padding: 0 30px;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-post-image {
        height: 240px;
    }

    .blog-newsletter-section {
        padding: 60px 0;
    }

    .blog-newsletter-container {
        padding: 0 30px;
    }

    .blog-newsletter-title {
        font-size: 28px;
    }

    .blog-newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .blog-newsletter-button {
        width: 100%;
    }
}


.stat-number {
    transition: transform 0.3s ease;
    will-change: contents;
}

.progress-bar {
    overflow: hidden;
}

.progress-fill {
    width: 0;
    height: 100%;
    transition: width 1.5s ease;
}

.founder-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.founder-card.show {
    opacity: 1;
    transform: translateY(0);
}

.founder-message {
    display: flex;
    align-items: center;
    padding: 30px;
}

.founder-quote p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
}

.founder-signature {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #222;
}


.portfolio-carousel-wrapper {
    overflow: hidden;
}

.portfolio-carousel-track {
    display: flex;
    gap: 32px;
    transition: transform 0.5s ease;
}

.portfolio-slide {
    min-width: 320px;
    /* adjust if your card is wider */
    flex-shrink: 0;
}

.testimonial-section {
    padding: 100px 0;
    background: #faf8f4;
}

.testimonial-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.testimonial-heading {
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 500;
}

.testimonial-slider {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: testimonialScroll 30s linear infinite;
}

.testimonial-card {
    min-width: 350px;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #7a6a45;
}

/* Auto scroll animation */
@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}


.before-after-section {
    padding: 80px 20px;
    background: #faf8f3;
    font-family: Arial, sans-serif;
}

.before-after-container {
    max-width: 1100px;
    margin: auto;
}

.before-after-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

/* Slider */
.ba-slider {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    cursor: ew-resize;
}

/* Images */
.ba-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

/* After image container */
.ba-resize {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

/* Handle */
.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #c9b37e;
    z-index: 10;
    transform: translateX(-50%);
}

.ba-handle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: #c9b37e;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Mobile */
@media (max-width: 768px) {
    .ba-slider {
        height: 340px;
    }
}


/* Ensure service images show fully without cropping */
.service-image-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-image-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* THIS IS THE KEY */
    object-position: center;
    background-color: transparent;
}



/* CTA Section Styling */
.hire-us-cta-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #1a1a1a, #111);
    text-align: center;
    overflow: hidden;
}

.hire-us-content {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUpCTA 1s ease forwards;
}

.hire-us-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hire-us-text-white {
    color: #ffffff;
}

.hire-us-text-gold {
    color: #d4af37;
    margin: 0 8px;
}

/* Button */
.hire-us-button {
    padding: 14px 36px;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #111;
    background-color: #d4af37;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.hire-us-button:hover {
    background-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

/* Animation */
@keyframes fadeUpCTA {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.services-stat-item.active {
    opacity: 1;
    transform: translateY(0);
}


/* Portfolio animations */
.portfolio-showcase-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.portfolio-showcase-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Image fit & hover */
.portfolio-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Button hover */
.portfolio-showcase-button {
    cursor: pointer;
    transition: all 0.4s ease;
}

.portfolio-showcase-button:hover {
    transform: translateY(-3px);
}

/* ==============================
   PORTFOLIO ZIG-ZAG LAYOUT
================================ */

.portfolio-showcase-section {
    padding: 80px 0;
}

.portfolio-showcase-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* Card */
.portfolio-showcase-item {
    display: flex;
    align-items: center;
    gap: 50px;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

/* Reverse Zig-Zag */
.portfolio-showcase-item.portfolio-showcase-reverse {
    flex-direction: row-reverse;
}

/* Animation Trigger */
.portfolio-showcase-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Image */
.portfolio-showcase-image {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

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

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

/* Content */
.portfolio-showcase-content {
    flex: 1;
}

.portfolio-showcase-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.portfolio-showcase-description {
    font-size: 16px;
    line-height: 1.7;
}

/* Hidden Text */
.portfolio-more-text {
    display: none;
    margin-top: 10px;
}

/* Button */
.portfolio-showcase-button {
    margin-top: 20px;
    padding: 12px 26px;
    background: #c8a951;
    color: #000;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-showcase-button:hover {
    background: #000;
    color: #fff;
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

    .portfolio-showcase-item,
    .portfolio-showcase-item.portfolio-showcase-reverse {
        flex-direction: column;
    }
}

.luxury-slider-section {
    padding: 100px 0;
    background: #fbf8f3;
    text-align: center;
}

.luxury-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.luxury-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 60px;
}

.luxury-bar {
    width: 6px;
    height: 40px;
    background: #c8b26e;
}

.luxury-title-wrap h2 {
    font-size: 32px;
    font-weight: 400;
    color: #c8b26e;
    max-width: 700px;
}

.luxury-slider {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.luxury-track-wrapper {
    overflow: hidden;
}

.luxury-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

.luxury-slide {
    min-width: 360px;
    height: 230px;
    border-radius: 4px;
    overflow: hidden;
    background: #eee;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .luxury-slide {
        min-width: 100%;
        height: 250px;
    }
}

.luxury-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luxury-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #c8b26e;
}

.luxury-arrow.left {
    left: -40px;
}

.luxury-arrow.right {
    right: -40px;
}

.luxury-dots {
    margin-top: 25px;
}

.luxury-dots .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 6px;
}

.luxury-dots .dot.active {
    background: #000;
}


/* ===== SERVICES SECTION LAYOUT ===== */
.services-section {
    padding: 100px 120px;
    background: #faf6ef;
}

.services-top-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* LEFT CONTENT */
.services-left-content {
    max-width: 550px;
}

.services-divider-top,
.services-divider {
    width: 100%;
    height: 1px;
    background: #cfcfcf;
    margin: 20px 0;
}

.portfolio-button {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #000;
}

/* SERVICES LIST */
.services-list {
    margin-top: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 26px 0;
    border-bottom: 1px solid #cfcfcf;
    cursor: pointer;
}

.service-item:last-child {
    border-bottom: none;
}

.service-number {
    color: #c9b26b;
    font-size: 16px;
    min-width: 40px;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
}

.service-item.active .service-name {
    text-decoration: underline;
}

/* RIGHT IMAGE PANEL */
.services-image-panel {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.services-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

@media (max-width: 1024px) {
    .services-image-panel {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .services-image-panel {
        height: 300px;
    }
}

/* ===== LATEST PROJECTS HEADER ===== */
.latest-projects-header {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #ddd;
    padding-top: 60px;
}

.latest-projects-left {
    display: flex;
    gap: 30px;
    max-width: 600px;
}

.latest-projects-bar {
    width: 6px;
    height: 120px;
    background: #c9b36a;
}

.latest-projects-text h2 {
    margin: 0;
    font-size: 36px;
    font-family: serif;
}

.latest-small {
    font-weight: 300;
    margin-right: 8px;
}

.latest-bold {
    font-weight: 700;
}

.latest-description {
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.latest-founder {
    font-size: 13px;
    color: #333;
}

.latest-projects-right {
    display: flex;
    align-items: center;
}

.latest-projects-button {
    background: #c9b36a;
    color: #fff;
    padding: 12px 26px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
}

/* ===== SLIDER (ALREADY USED BY YOU) ===== */
.portfolio-cards-wrapper {
    max-width: 1400px;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
}

.cards-track-container {
    overflow: hidden;
    width: 100%;
}

.cards-track {
    display: flex;
    gap: 40px;
    transition: transform 0.6s ease;
}

.portfolio-card {
    min-width: 320px;
}

.portfolio-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-location {
    margin-top: 14px;
    font-size: 14px;
}

/* ARROWS */
.cards-arrow {
    background: #eee7d8;
    border: none;
    font-size: 20px;
    padding: 14px 18px;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    z-index: 5;
}

.cards-arrow.left {
    left: -10px;
}

.cards-arrow.right {
    right: -10px;
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop Screens (1441px and above) */
@media (min-width: 1441px) {

    .header-container,
    .about-container,
    .services-container,
    .crafting-container,
    .founders-container,
    .portfolio-cards-wrapper,
    .testimonial-container,
    .about-main-container,
    .founder-words-container,
    .achievements-container,
    .contact-info-footer-container,
    .enquiry-form-container,
    .contact-map-info-container {
        max-width: 1600px;
    }
}

/* Laptop Screens (1025px - 1440px) */
@media (max-width: 1440px) and (min-width: 1025px) {

    .header-container,
    .about-container,
    .services-container,
    .crafting-container,
    .founders-container,
    .portfolio-cards-wrapper,
    .testimonial-container,
    .about-main-container,
    .founder-words-container,
    .achievements-container,
    .contact-info-footer-container,
    .enquiry-form-container,
    .contact-map-info-container {
        max-width: 1200px;
        padding: 0 40px;
    }
}

/* Tablet Screens (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {

    /* Header & Navigation */
    .header-container {
        padding: 0 30px;
    }

    .main-nav {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Hero Section */
    .luxury-slider-section {
        padding: 60px 0;
    }

    .luxury-header {
        padding: 0 30px;
    }

    .luxury-title-wrap h2 {
        font-size: 32px;
    }

    .luxury-slide img {
        height: 400px;
    }

    /* About Section */
    .about-section {
        padding: 80px 0;
    }

    .about-container {
        padding: 0 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .title-main {
        font-size: 40px;
    }

    .title-sub {
        font-size: 32px;
    }

    /* Services Section */
    .services-section {
        padding: 60px 0;
    }

    .services-container {
        padding: 0 40px;
    }

    .services-top-section {
        flex-direction: column;
        gap: 40px;
    }

    .services-left-content {
        max-width: 100%;
    }

    .services-image-panel {
        width: 100%;
        max-width: 100%;
    }

    .services-image-panel img {
        width: 100%;
        height: auto;
    }

    /* Crafting Section */
    .crafting-section {
        padding: 80px 0;
    }

    .crafting-container {
        padding: 0 40px;
    }

    .crafting-title {
        font-size: 40px;
    }

    /* Founders Section */
    .founders-section {
        padding: 60px 0;
    }

    .founders-container {
        padding: 0 40px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .founder-card {
        max-width: 100%;
    }

    /* Portfolio Cards Section */
    .portfolio-cards-section {
        padding: 80px 0;
    }

    .latest-projects-header {
        flex-direction: column;
        gap: 30px;
        padding: 0 40px;
    }

    .latest-projects-left {
        width: 100%;
    }

    .latest-projects-right {
        width: 100%;
        justify-content: flex-start;
    }

    .portfolio-cards-wrapper {
        padding: 0 60px;
    }

    .cards-arrow {
        padding: 12px 16px;
        font-size: 18px;
    }

    .cards-arrow.left {
        left: 10px;
    }

    .cards-arrow.right {
        right: 10px;
    }

    .portfolio-card {
        min-width: 280px;
    }

    .portfolio-card img {
        height: 360px;
    }

    /* Testimonials */
    .testimonial-section {
        padding: 80px 0;
    }

    .testimonial-container {
        padding: 0 40px;
    }

    .testimonial-heading {
        font-size: 36px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    /* About Page */
    .about-main-section {
        padding: 80px 0;
    }

    .about-main-container {
        padding: 0 40px;
    }

    .about-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-main-title {
        font-size: 36px;
    }

    .about-main-image-wrapper img {
        width: 100%;
        height: auto;
    }

    .about-main-right {
        width: 100%;
    }

    .about-main-image {
        width: 100%;
        height: auto;
        min-height: 500px;
    }

    /* Founder Words Section */
    .founder-words-container {
        padding: 0 40px;
    }

    .founder-words-title {
        font-size: 34px;
    }

    /* Achievements Section */
    .achievements-container {
        padding: 0 40px;
    }

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

    /* Contact Info Footer */
    .contact-info-section-footer {
        padding: 60px 0;
    }

    .contact-info-footer-container {
        flex-direction: column;
        padding: 0 40px;
    }

    .contact-abstract-side {
        width: 100%;
        height: 300px;
    }

    .contact-info-footer-side {
        width: 100%;
        padding: 40px 0;
    }

    /* Services Page */
    .services-listing-container {
        padding: 0 40px;
    }

    .services-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-image-card {
        height: 350px;
    }

    /* Portfolio Page */
    .portfolio-showcase-container {
        padding: 0 40px;
    }

    .portfolio-showcase-item {
        flex-direction: column;
        gap: 30px;
    }

    .portfolio-showcase-reverse {
        flex-direction: column;
    }

    .portfolio-showcase-image {
        width: 100%;
    }

    .portfolio-showcase-content {
        width: 100%;
    }

    .portfolio-showcase-title {
        font-size: 32px;
    }

    /* Contact Page */
    .enquiry-form-container {
        padding: 0 40px;
    }

    .enquiry-form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-map-info-container {
        flex-direction: column;
        padding: 0 40px;
    }

    .contact-map-side {
        width: 100%;
        height: 400px;
    }

    .contact-info-side-map {
        width: 100%;
        padding: 40px 0;
    }

    /* Blog Page */
    .blog-hero-container {
        padding: 0 40px;
    }

    .blog-posts-container {
        padding: 0 40px;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* FAQ Section */
    .faq-container {
        padding: 0 40px;
    }

    /* Before After Section */
    .before-after-container {
        padding: 0 40px;
    }

    .ba-slider {
        height: 400px;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 30px;
        padding: 40px 30px;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
    }

    /* Contact Tab & Scroll to Top */
    /* Tablet: Adjust position but keep vertical orientation */
    .contact-tab {
        right: 0;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
        padding: 14px 35px;
        border-radius: 0 0 8px 8px;
    }

    .contact-tab-text {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .contact-tab:hover {
        padding-right: 40px;
    }

    .scroll-to-top-button {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Mobile Screens (up to 768px) */
@media (max-width: 768px) {


    /* Header & Navigation */
    .main-header {
        height: auto;
        min-height: 70px;
        padding: 15px 0;
    }

    .header-container {
        padding: 0 20px;
        flex-wrap: wrap;
    }

    .logo-section {
        order: 1;
        width: auto;
        justify-content: flex-start;
    }

    .logo-section .logo-emblem img {
        height: 500px;
        width: auto;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
        margin-left: auto;
    }

    /* Hide desktop nav on mobile */
    .main-nav {
        display: none !important;
    }

    /* Prevent body scroll when sidebar is open */
    body.sidebar-open {
        overflow: hidden;
    }

    /* Hero Section */
    .luxury-slider-section {
        padding: 40px 0;
    }

    .luxury-header {
        padding: 0 20px 30px;
    }

    .luxury-subtitle {
        font-size: 14px;
    }

    .luxury-title-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .luxury-title-wrap h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .luxury-bar {
        width: 3px;
        height: 50px;
    }

    .luxury-slider {
        padding: 0 20px;
    }

    .luxury-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .luxury-slide {
        min-width: 100%;
    }

    .luxury-slide img {
        height: 250px;
        object-fit: cover;
    }

    .luxury-dots {
        margin-top: 20px;
    }

    /* About Section */
    .about-section {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 20px;
    }

    .about-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 40px;
    }

    .about-title-bar {
        width: 3px;
        height: 50px;
    }

    .about-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .title-main {
        font-size: 32px;
    }

    .title-sub {
        font-size: 28px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-description {
        font-size: 15px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-number-label {
        font-size: 13px;
    }

    /* Services Section */
    .services-section {
        padding: 60px 0;
    }

    .services-container {
        padding: 0 20px;
    }

    .services-top-section {
        flex-direction: column;
        gap: 30px;
    }

    .services-left-content {
        width: 100%;
    }

    .service-item {
        padding: 20px 0;
    }

    .service-number {
        font-size: 16px;
        min-width: 40px;
    }

    .service-name {
        font-size: 18px;
    }

    .services-image-panel {
        width: 100%;
    }

    .services-image-panel img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }

    /* Crafting Section */
    .crafting-section {
        padding: 60px 0;
    }

    .crafting-container {
        padding: 0 20px;
    }

    .crafting-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }

    .crafting-title-bar {
        width: 3px;
        height: 50px;
    }

    .crafting-title {
        font-size: 28px;
    }

    .crafting-description {
        font-size: 15px;
    }

    .portfolio-button {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }

    /* Founders Section */
    .founders-section {
        padding: 60px 0;
    }

    .founders-container {
        padding: 0 20px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-card {
        width: 100%;
        max-width: 100%;
    }

    .founder-photo {
        width: 100%;
        height: auto;
        max-height: 400px;
    }

    .founder-info-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        width: 100%;
    }

    /* Portfolio Cards Section */
    .portfolio-cards-section {
        padding: 60px 0;
    }

    .latest-projects-header {
        flex-direction: column;
        gap: 25px;
        padding: 0 20px;
    }

    .latest-projects-left {
        width: 100%;
    }

    .latest-projects-bar {
        width: 3px;
        height: 50px;
    }

    .latest-projects-text h2 {
        font-size: 28px;
    }

    .latest-description {
        font-size: 14px;
    }

    .latest-projects-button {
        width: 100%;
        text-align: center;
    }

    .portfolio-cards-wrapper {
        padding: 0 50px;
    }

    .cards-arrow {
        padding: 10px 14px;
        font-size: 16px;
    }

    .cards-arrow.left {
        left: 5px;
    }

    .cards-arrow.right {
        right: 5px;
    }

    .portfolio-card {
        min-width: 100%;
    }

    .portfolio-card img {
        height: 280px;
    }

    /* Testimonials */
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-container {
        padding: 0 20px;
    }

    .testimonial-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .testimonial-slider {
        overflow: hidden;
    }

    .testimonial-track {
        display: flex;
        gap: 20px;
    }

    .testimonial-card {
        min-width: 100%;
        padding: 25px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .testimonial-author {
        font-size: 13px;
    }

    /* About Page */
    .about-main-section {
        padding: 60px 0;
    }

    .about-main-container {
        padding: 0 20px;
    }

    .about-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-kicker {
        font-size: 12px;
    }

    .about-main-title {
        font-size: 28px;
    }

    .about-description-text {
        font-size: 14px;
    }

    .about-progress-label,
    .about-progress-percent {
        font-size: 12px;
    }

    .about-main-image-wrapper {
        width: 100%;
    }

    .about-main-image-wrapper img {
        width: 100%;
        height: auto;
    }

    .about-main-right {
        width: 100%;
    }

    .about-main-image {
        width: 100%;
        height: auto;
        min-height: 350px;
    }

    .about-section {
        padding: 60px 20px;
    }

    .about-founder-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .about-founder-info p {
        font-size: 14px;
    }

    /* Founder Words Section */
    .founder-words-section {
        padding: 60px 0;
    }

    .founder-words-container {
        padding: 0 20px;
    }

    .founder-words-content {
        padding: 0 10px;
    }

    .founder-words-title {
        font-size: 28px;
    }

    .founder-words-text {
        font-size: 14px;
    }

    .founder-words-quote {
        font-size: 15px;
    }

    /* Achievements Section */
    .achievements-section {
        padding: 60px 0;
    }

    .achievements-container {
        padding: 0 20px;
    }

    .achievements-title {
        font-size: 28px;
    }

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

    .achievement-number {
        font-size: 42px;
    }

    .achievement-label {
        font-size: 13px;
    }

    /* Contact Info Footer */
    .contact-info-section-footer {
        padding: 60px 0;
    }

    .contact-info-footer-container {
        flex-direction: column;
        padding: 0;
    }

    .contact-abstract-side {
        width: 100%;
        height: 250px;
    }

    .contact-info-footer-side {
        width: 100%;
        padding: 30px 20px;
    }

    .contact-info-footer-title {
        font-size: 32px;
    }

    .contact-info-footer-label {
        font-size: 12px;
    }

    .contact-info-footer-text {
        font-size: 14px;
    }

    /* Services Page */
    .services-listing-section {
        padding: 60px 0;
    }

    .services-listing-container {
        padding: 0 20px;
    }

    .services-image-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-image-card {
        height: 280px;
    }

    .service-text-overlay {
        padding: 20px;
    }

    .service-overlay-title {
        font-size: 16px;
    }

    .service-overlay-description {
        font-size: 13px;
    }

    .services-load-more-button {
        padding: 12px 30px;
        font-size: 13px;
    }

    .hire-us-cta-section {
        padding: 60px 20px;
    }

    .hire-us-title {
        font-size: 32px;
    }

    .hire-us-button {
        padding: 12px 30px;
        font-size: 13px;
    }

    .services-stats-section {
        padding: 60px 0;
    }

    .services-stats-container {
        padding: 0 20px;
    }

    .services-stats-title {
        font-size: 28px;
    }

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

    .services-stat-number {
        font-size: 42px;
    }

    .services-stat-label {
        font-size: 13px;
    }

    /* Portfolio Page */
    .portfolio-showcase-section {
        padding: 60px 0;
    }

    .portfolio-showcase-container {
        padding: 0 20px;
    }

    .portfolio-showcase-item {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 50px;
    }

    .portfolio-showcase-reverse {
        flex-direction: column;
    }

    .portfolio-showcase-image {
        width: 100%;
    }

    .portfolio-showcase-image img {
        width: 100%;
        height: auto;
    }

    .portfolio-showcase-content {
        width: 100%;
    }

    .portfolio-showcase-title {
        font-size: 24px;
    }

    .portfolio-showcase-description {
        font-size: 14px;
    }

    .portfolio-showcase-button {
        padding: 12px 24px;
        font-size: 13px;
    }

    /* Contact Page */
    .enquiry-form-section {
        padding: 60px 0;
    }

    .enquiry-form-container {
        padding: 0 20px;
    }

    .enquiry-form-title {
        font-size: 28px;
    }

    .enquiry-form-subtitle {
        font-size: 14px;
    }

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

    .enquiry-form-input {
        padding: 14px;
        font-size: 14px;
    }

    .enquiry-submit-button {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
    }

    .contact-map-info-section {
        padding: 60px 0;
    }

    .contact-map-info-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .contact-map-side {
        width: 100%;
        height: 300px;
    }

    .contact-info-side-map {
        width: 100%;
        padding: 30px 0;
    }

    .contact-info-map-label {
        font-size: 12px;
    }

    .contact-info-map-value {
        font-size: 14px;
    }

    /* Blog Page */
    .blog-hero-section {
        padding: 60px 0 40px;
    }

    .blog-hero-container {
        padding: 0 20px;
    }

    .blog-hero-title {
        font-size: 32px;
    }

    .blog-hero-subtitle {
        font-size: 14px;
    }

    .blog-posts-section {
        padding: 60px 0;
    }

    .blog-posts-container {
        padding: 0 20px;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-post-card {
        width: 100%;
    }

    .blog-post-image img {
        height: 200px;
    }

    .blog-post-title {
        font-size: 18px;
    }

    .blog-post-excerpt {
        font-size: 14px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 60px 0;
    }

    .faq-container {
        padding: 0 20px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        padding: 18px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 18px 18px;
        font-size: 14px;
    }

    /* Before After Section */
    .before-after-section {
        padding: 60px 0;
    }

    .before-after-container {
        padding: 0 20px;
    }

    .before-after-title {
        font-size: 28px;
    }

    .ba-slider {
        height: 300px;
    }

    /* Footer */
    .main-footer {
        padding: 40px 0;
    }

    .footer-container {
        flex-direction: column;
        gap: 25px;
        padding: 0 20px;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .social-icons {
        justify-content: center;
        gap: 15px;
    }

    /* Contact Tab & Scroll to Top */
    /* Mobile: Convert to horizontal button at bottom */
    .contact-tab {
        position: fixed;
        right: auto;
        left: 50%;
        bottom: 20px;
        top: auto;
        transform: translateX(-50%) rotate(0deg);
        transform-origin: center;
        padding: 12px 30px;
        border-radius: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        width: auto;
        min-width: 160px;
        max-width: calc(100% - 40px);
    }

    .contact-tab:hover {
        background-color: #C19B26;
        padding-right: 30px;
        padding-left: 30px;
        transform: translateX(-50%) rotate(0deg) translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

    .contact-tab-text {
        font-size: 12px;
        letter-spacing: 1.5px;
        text-align: center;
    }

    .scroll-to-top-button {
        right: 15px;
        bottom: 75px;
        width: 40px;
        height: 40px;
    }

    /* General Mobile Fixes */
    img {
        max-width: 100%;
        height: auto;
    }

    .service-image.active {
        position: relative;
        left: auto;
        margin-left: 0;
        width: 100%;
        max-width: 100%;
    }

    .service-image .image-placeholder {
        width: 100%;
    }
}

/* Small Mobile Screens (up to 480px) */
@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }

    .logo-section .logo-emblem img {
        height: 150px;
        width: auto;
    }

    .luxury-title-wrap h2 {
        font-size: 20px;
    }

    .title-main {
        font-size: 28px;
    }

    .title-sub {
        font-size: 24px;
    }

    .about-main-title {
        font-size: 24px;
    }

    .crafting-title {
        font-size: 24px;
    }

    .testimonial-heading {
        font-size: 24px;
    }

    .founder-words-title {
        font-size: 24px;
    }

    .achievements-title {
        font-size: 24px;
    }

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

    .services-stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .portfolio-card img {
        height: 240px;
    }

    .contact-info-footer-title {
        font-size: 28px;
    }

    .enquiry-form-title {
        font-size: 24px;
    }

    .blog-hero-title {
        font-size: 28px;
    }

    .faq-title {
        font-size: 24px;
    }

    .before-after-title {
        font-size: 24px;
    }

    .ba-slider {
        height: 250px;
    }

    /* Small Mobile: Smaller horizontal button */
    .contact-tab {
        bottom: 15px;
        padding: 10px 25px;
        min-width: 140px;
        max-width: calc(100% - 30px);
        border-radius: 25px;
    }

    .contact-tab-text {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .scroll-to-top-button {
        bottom: 70px;
    }
}

/* Fix for viewport meta tag - ensure it's set */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fix for flexbox items on mobile */
@media (max-width: 768px) {

    .about-content,
    .services-top-section,
    .founders-grid,
    .portfolio-showcase-item,
    .contact-info-footer-container,
    .contact-map-info-container,
    .footer-container {
        flex-wrap: wrap;
    }
}

/* Smooth transitions for responsive changes */
* {
    transition: font-size 0.3s ease, padding 0.3s ease, margin 0.3s ease;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Fix for fixed elements on mobile */
@media (max-width: 768px) {

    .contact-tab,
    .scroll-to-top-button {
        position: fixed;
        z-index: 998;
    }
}

/* Responsive styles for about-founder-section with inline styles */
.about-founder-section {
    flex-direction: column;
    padding: 60px 20px !important;
}

.about-founder-block {
    max-width: 100% !important;
    width: 100% !important;
    margin-bottom: 30px !important;
}

.about-founder-name-large {
    font-size: 24px !important;
}

.about-founder-detail {
    font-size: 14px !important;
}

.about-contact-link {
    width: 100%;
    text-align: center;
    display: block !important;
}

.about-founder-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
}

.about-founder-image {
    width: 100% !important;
    max-width: 350px !important;
    overflow: visible !important;
}

.about-founder-image img {
    width: 100% !important;
    max-width: 100% !important;
    max-height: 450px !important;
    height: auto !important;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .about-founder-image {
        max-width: 320px !important;
    }

    .about-founder-image img {
        max-height: 420px !important;
    }
}

@media (max-width: 480px) {
    .about-founder-section {
        padding: 40px 15px !important;
    }

    .about-founder-name-large {
        font-size: 20px !important;
    }

    .about-founder-detail {
        font-size: 13px !important;
    }

    .about-founder-image {
        max-width: 260px !important;
    }

    .about-founder-image img {
        max-height: 340px !important;
    }
}

/* ========================================
   FOOTER SECTION STYLES - FULL WIDTH FIX
   ======================================== */

/* Contact Info Section (Before Footer) */
.contact-info-section-footer {
    width: 100%;
    background-color: #2c2c2c;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.contact-info-footer-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.contact-abstract-side {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.contact-left-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-info-footer-side {
    background-color: #2c2c2c;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.contact-info-footer-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    font-family: 'Arial', sans-serif;
}

.contact-title-white {
    color: #ffffff;
}

.contact-title-gold {
    color: #bfa87a;
}

.contact-info-footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-footer-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-footer-label {
    font-size: 14px;
    font-weight: 700;
    color: #bfa87a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.contact-info-footer-text {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.contact-info-footer-text a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-footer-text a:hover {
    color: #bfa87a;
}

/* Main Footer - Full Width */
.main-footer {
    width: 100%;
    background-color: #1a1a1a;
    padding: 30px 0;
    margin: 0;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-copyright {
    font-size: 14px;
    color: #999;
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.footer-copyright a {
    color: #28a745;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #34d058;
}

.footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-policy {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.footer-policy:hover {
    color: #bfa87a;
}

.footer-policy-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: #bfa87a;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   RESPONSIVE FOOTER STYLES
   ======================================== */

/* Tablet - Large (1024px and below) */
@media (max-width: 1024px) {
    .contact-info-footer-side {
        padding: 50px 60px;
    }

    .contact-info-footer-title {
        font-size: 42px;
    }

    .footer-container {
        padding: 0 30px;
        gap: 30px;
    }
}

/* Tablet - Medium (768px and below) */
@media (max-width: 768px) {
    .contact-info-footer-container {
        grid-template-columns: 1fr;
    }

    .contact-abstract-side {
        min-height: 300px;
        order: 2;
    }

    .contact-info-footer-side {
        padding: 50px 40px;
        order: 1;
    }

    .contact-info-footer-title {
        font-size: 36px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 25px;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center;
    }

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

/* Mobile - Large (600px and below) */
@media (max-width: 600px) {
    .contact-info-footer-side {
        padding: 40px 30px;
    }

    .contact-info-footer-title {
        font-size: 32px;
    }

    .contact-info-footer-content {
        gap: 25px;
    }

    .footer-container {
        padding: 0 20px;
        gap: 20px;
    }

    .footer-copyright {
        font-size: 13px;
    }

    .footer-policy {
        font-size: 13px;
    }

    .social-icons {
        gap: 18px;
    }
}

/* Mobile - Small (480px and below) */
@media (max-width: 480px) {
    .contact-abstract-side {
        min-height: 250px;
    }

    .contact-info-footer-side {
        padding: 35px 25px;
    }

    .contact-info-footer-title {
        font-size: 28px;
    }

    .contact-info-footer-label {
        font-size: 12px;
    }

    .contact-info-footer-text {
        font-size: 14px;
    }

    .footer-container {
        padding: 0 15px;
        gap: 18px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-policy {
        font-size: 12px;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Mobile - Extra Small (360px and below) */
@media (max-width: 360px) {
    .contact-info-footer-side {
        padding: 30px 20px;
    }

    .contact-info-footer-title {
        font-size: 24px;
    }

    .contact-info-footer-text {
        font-size: 13px;
    }

    .footer-container {
        padding: 0 12px;
    }

    .footer-copyright {
        font-size: 11px;
    }

    .social-icons {
        gap: 12px;
    }
}

/* Ensure no horizontal overflow */
.contact-info-section-footer,
.main-footer {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Prevent content from causing overflow */
.contact-info-footer-container,
.footer-container {
    box-sizing: border-box;
}

.contact-info-footer-container *,
.footer-container * {
    box-sizing: border-box;
}

/* ========================================
   FLOATING CONTACT BUTTON & SCROLL TO TOP
   ======================================== */

/* Contact Tab - Fixed on Right Side */
.contact-tab {
    position: fixed;
    right: 0;
    bottom: 50%;
    transform: rotate(-90deg) translateX(50%);
    transform-origin: 100% 100%;
    background-color: #bfa87a;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    border: none;
    border-radius: 4px 4px 0 0;
}

.contact-tab:hover {
    background-color: #a88945;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    padding: 12px 28px;
}

.contact-tab-text {
    white-space: nowrap;
}

/* Scroll to Top Button - Fixed on Right Side */
.scroll-to-top-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: #bfa87a;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
}

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

.scroll-to-top-button:hover {
    background-color: #a88945;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.scroll-to-top-button svg {
    width: 20px;
    height: 20px;
}

/* Responsive adjustments for floating elements */
@media (max-width: 1024px) {
    .contact-tab {
        padding: 10px 20px;
        font-size: 13px;
    }

    .scroll-to-top-button {
        right: 25px;
        bottom: 25px;
        width: 45px;
        height: 45px;
    }
}

/* Tablet & Mobile: Convert Contact Tab to Horizontal Button */
@media (max-width: 768px) {
    .contact-tab {
        /* Reset Position & Rotation */
        top: auto;
        bottom: 25px;
        right: auto;
        left: 25px;
        transform: none;
        transform-origin: center;

        /* Shape & Style */
        width: auto;
        border-radius: 50px;
        padding: 12px 24px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
        text-align: center;

        /* Typography */
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .contact-tab:hover {
        /* Reset hover expansion */
        padding: 12px 24px;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .scroll-to-top-button {
        right: 20px;
        bottom: 25px;
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
    .contact-tab {
        bottom: 20px;
        left: 20px;
        padding: 10px 20px;
        font-size: 12px;
    }

    .contact-tab:hover {
        padding: 10px 20px;
    }

    .scroll-to-top-button {
        right: 15px;
        bottom: 20px;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top-button svg {
        width: 18px;
        height: 18px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .contact-tab {
        left: 15px;
        bottom: 15px;
        font-size: 11px;
        padding: 8px 16px;
    }

    .contact-tab:hover {
        padding: 8px 16px;
    }

    .scroll-to-top-button {
        right: 12px;
        bottom: 15px;
        width: 38px;
        height: 38px;
    }
}


/* Features Highlight Section */
.features-highlight {
    background-color: #fff;
    padding: 80px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.features-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
}

.feature-column {
    flex: 1;
    padding: 30px 40px;
    /* Slight padding adj for hover space */
    border-right: 1px solid #eee;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, box-shadow 0.3s ease, background-color 0.3s ease;
    border-radius: 8px;
    /* For shadow */
}

.feature-column.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-column:hover {
    transform: translateY(-10px) !important;
    /* Force lift on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    background-color: #fafafa;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    /* Faster transition for hover */
    z-index: 2;
    /* Ensure it pops above siblings */
}

.feature-column:last-child {
    border-right: none;
}

.feature-icon {
    margin-bottom: 25px;
    color: #000;
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-column:hover .feature-icon {
    transform: scale(1.1);
    color: #C9B37E;
    /* Brand Gold Color */
}

.feature-icon svg {
    display: block;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    font-family: inherit;
    text-transform: none;
    letter-spacing: 0px;
}

.feature-text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    font-family: inherit;
    text-align: left;
}

/* Responsive adjustment */
@media (max-width: 1024px) {
    .features-grid-container {
        flex-wrap: wrap;
    }

    .feature-column {
        flex: 0 0 50%;
        border-right: none;
        padding-bottom: 60px;
    }

    .feature-column:nth-child(odd) {
        border-right: 1px solid #e0e0e0;
    }
}

@media (max-width: 768px) {
    .features-highlight {
        padding: 60px 0;
    }

    .feature-column {
        flex: 0 0 100%;
        border-right: none !important;
        padding: 0 20px 40px 20px;
    }
}


/* Modern Selection Hero Section */
.modern-selection-hero {
    background-color: #fff;
    padding-top: 40px;
    overflow: hidden;
}

.hero-title-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 40px;
}

.hero-main-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: #000;
    line-height: 1.1;
    font-family: 'Arial', sans-serif;
    letter-spacing: -1px;
}

.hero-main-title span {
    color: #f15a24;
    /* Orange accent from image */
    display: inline-block;
    width: 4px;
    height: 1em;
    background: #f15a24;
    margin-left: 10px;
    vertical-align: middle;
}

.hero-visual-container {
    padding: 0 40px;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-image-wrapper {
    width: 100%;
    height: 700px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Overlay */
.hero-info-box {
    position: absolute;
    top: 50px;
    left: 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 60px 20px 20px 20px;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-badge {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 15px;
    position: relative;
    border: 3px solid #fff;
}

.badge-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
    object-fit: contain;
}

.badge-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-info-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    font-family: 'Arial', sans-serif;
}

/* Trusted Card */
.hero-trusted-widget {
    position: absolute;
    bottom: 40px;
    left: 80px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 2px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 180px;
}

.widget-label {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    display: block;
}

.widget-rating {
    font-size: 14px;
    color: #f1c40f;
    margin-bottom: 5px;
}

.widget-view {
    color: #666;
    font-size: 12px;
    margin-left: 5px;
}

.widget-sub {
    font-size: 11px;
    color: #888;
    display: block;
}

/* Thumbnails Grid */
.hero-bottom-grid {
    position: absolute;
    bottom: 20px;
    right: 40px;
    display: flex;
    gap: 15px;
    align-items: flex-end;
    z-index: 10;
}

.hero-thumb-item {
    width: 140px;
    height: 90px;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border 0.3s;
    cursor: pointer;
}

.hero-thumb-item:hover {
    border-color: #fff;
}

.hero-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-next-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    margin-bottom: 25px;
    margin-left: 10px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-image-wrapper {
        height: 500px;
    }

    .hero-info-box {
        top: 20px;
        left: 20px;
        right: 20px;
        padding: 25px;
        max-width: none;
    }

    .hero-badge {
        width: 90px;
        height: 90px;
    }

    .hero-bottom-grid {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.2rem;
    }

    .hero-title-area {
        padding: 0 20px 20px;
    }

    .hero-visual-container {
        padding: 0 10px;
    }

    .hero-info-box {
        position: relative;
        top: 0;
        left: 0;
        margin-top: -50px;
        border-radius: 20px;
        flex-direction: column;
        text-align: center;
        background: #fff;
    }

    .hero-trusted-widget {
        display: none;
    }
}

/* Modular Furniture Section (Selection Interior) */
.modular-furniture-section {
    position: relative;
    width: 94%;
    /* Slightly narrower for more breathing space on sides */
    margin: 100px auto;
    /* Increased gap between sections */
    height: 90vh;
    /* Professional height */
    min-height: 750px;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 50px;
    /* Softer, more premium curves */
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    /* Deeper shadow for luxury feel */
    font-family: 'Georgia', 'Times New Roman', serif;
}

.modular-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.modular-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modular-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 100px 120px;
    /* Increased padding for elegant content centering */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.modular-header {
    margin-bottom: 50px;
    /* More space before the card */
}

.services-heading {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

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

.services-items li {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

.services-items .star {
    color: #C9B37E; /* Using the brand gold color for the stars */
    font-weight: bold;
}

.modular-title {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    display: inline-block;
    position: relative;
    padding-right: 20px;
}

.title-accent-line {
    display: inline-block;
    width: 4px;
    height: 0.8em;
    background-color: #ff6b35;
    margin-left: 10px;
    vertical-align: middle;
}

.modular-content-card {
    background: rgba(255, 255, 255, 0.8);
    /* More solid for white background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    /* Softer corners */
    padding: 50px 60px;
    max-width: 950px;
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 0;
    margin-left: -20px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    /* Interior highlight */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.modular-content-card:hover {
    transform: translateY(-10px) scale(1.02);
    /* Proper popup effect */
    box-shadow:
        0 40px 80px -15px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.modular-seal-wrapper {
    flex-shrink: 0;
}

.modular-seal {
    width: 120px;
    height: 120px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #1a1a1a;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.modular-seal::before {
    content: "";
    /* Removed text content in favor of SVG */
    display: none;
}

.seal-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateSeal 15s linear infinite;
    z-index: 1;
    /* Above background, but below logo if logo is z-index 2 */
}

.seal-text-overlay svg {
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes rotateSeal {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.seal-inner img {
    width: 60px;
    height: auto;
    filter: none;
    position: relative;
    z-index: 2;
}

.modular-text-content p {
    color: #1a1a1a;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-shadow: none;
}




.stars {
    color: #1a1a1a;
    font-size: 14px;
}

.rating-value {
    color: #7f8c8d;
    font-size: 12px;
    font-family: sans-serif;
}

.discover-link {
    color: #3498db;
    text-decoration: underline;
    font-size: 12px;
    font-family: sans-serif;
}

.modular-thumbnails {
    position: absolute;
    bottom: 60px;
    /* Moved up for better balance */
    right: 120px;
    /* Aligned with container padding */
    display: flex;
    gap: 20px;
    z-index: 10;
}

.thumb-item {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 992px) {
    .modular-furniture-section {
        height: auto;
        min-height: auto;
        padding: 60px 0;
        border-radius: 30px;
        width: 96%;
    }

    .modular-container {
        padding: 40px 20px;
        align-items: center;
        text-align: center;
    }

    .modular-header {
        margin-bottom: 30px;
    }

    .modular-title {
        font-size: 2.2rem;
        padding-right: 0;
    }

    .services-items li {
        font-size: 14px;
    }

    .modular-content-card {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        margin-left: 0;
        max-width: 100%;
        text-align: center;
    }

    .modular-text-content p {
        font-size: 16px;
    }

    .modular-thumbnails {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .thumb-item {
        width: 100px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .modular-title {
        font-size: 1.8rem;
    }

    .services-items li {
        font-size: 12px;
    }

    .modular-content-card {
        padding: 30px 15px;
    }

    .thumb-item {
        width: 80px;
        height: 60px;
    }
}

/* Who We Serve Section */
.who-we-serve-section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background-color: #111;
    /* Fallback */
}

.serve-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.serve-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.serve-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* Dark overlay to match reference */
    z-index: 2;
}

.serve-container {
    position: relative;
    z-index: 3;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.serve-title {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    /* Reduced from 60px to accommodate desc */
    font-weight: 600;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.serve-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Georgia', serif;
}

.serve-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* max-width removed to allow full width spanning */
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.serve-item {
    padding: 30px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-family: 'Georgia', serif;
    cursor: pointer;
    /* Changed to pointer to indicate interactivity */
    transition: padding 0.5s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.5s ease;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.serve-name {
    font-size: 26px;
    font-weight: 400;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), font-weight 0.4s ease;
    white-space: nowrap;
    transform-origin: left center;
}

.serve-details {
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.1s, max-width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    max-width: 0;
    overflow: hidden;
}

.serve-text {
    font-size: 15px;
    /* Slightly larger for readability */
    line-height: 1.6;
    max-width: 450px;
    color: #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: left;
    min-width: 300px;
    /* Prevent text wrapping jitter */
}

.serve-btn {
    background-color: #E85D04;
    color: white;
    padding: 14px 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 1.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(232, 93, 4, 0.3);
}

.serve-btn:hover {
    background-color: #ff6b0a;
    transform: translateY(-2px);
}

.serve-item:hover {
    background: rgba(0, 0, 0, 0.6);
    /* Slightly darker for better text contrast */
    padding-top: 60px;
    /* Increased expansion */
    padding-bottom: 60px;
}

.serve-item:hover .serve-name {
    transform: scale(1.5);
    font-weight: 700;
}

.serve-item:hover .serve-details {
    opacity: 1;
    transform: translateX(0);
    max-width: 1000px;
    margin-left: 100px;
}


@media (max-width: 992px) {
    .who-we-serve-section {
        padding: 80px 0;
    }

    .serve-container {
        padding: 0 15px;
    }

    .serve-title {
        font-size: 14px;
        margin-bottom: 20px;
        opacity: 0.8;
        letter-spacing: 2px;
    }

    .serve-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 40px;
        padding: 0 10px;
        max-width: 100%;
    }

    .serve-list {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .serve-item {
        padding: 30px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        height: auto;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 20px;
        margin: 5px 0;
        background: transparent;
    }

    .serve-name {
        font-size: 20px !important;
        white-space: normal;
        font-weight: 600 !important;
        transform: none !important;
        margin-bottom: 0;
        transition: margin 0.4s ease, color 0.3s ease;
    }

    .serve-details {
        max-width: 100% !important;
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        margin-left: 0 !important;
        overflow: hidden;
        max-height: 0;
        display: flex;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .serve-item.active {
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        padding: 40px 25px;
        border-bottom: 1px solid transparent;
    }

    .serve-item.active .serve-name {
        margin-bottom: 20px;
        color: #ff6b35;
    }

    .serve-item.active .serve-details {
        opacity: 1;
        max-height: 800px;
        transform: translateY(0) scale(1);
    }

    .serve-text {
        min-width: unset;
        max-width: 100%;
        font-size: 14px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
        text-align: left;
    }

    .serve-btn {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
        font-size: 14px;
        background: linear-gradient(to right, #e85d04, #ff8500);
        box-shadow: 0 10px 20px rgba(232, 93, 4, 0.2);
    }
}

/* Founders Section Index */
.founders-section {
    padding: 100px 0;
    background-color: #FAF8F4;
    position: relative;
    overflow: hidden;
}

.founders-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.founder-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founder-profile {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.founder-photo {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.founder-profile:hover .founder-photo {
    transform: scale(1.05);
}

.founder-info-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.founder-card .founder-name {
    margin: 0 0 5px;
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
}

.founder-card .founder-title {
    margin: 0;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.founder-message {
    padding-left: 40px;
}

.founder-quote {
    position: relative;
}

.founder-quote p {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    font-family: 'Georgia', serif;
    margin-bottom: 30px;
}

.founder-signature {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #C9B37E;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .founder-profile {
        max-width: 400px;
    }

    .founder-photo {
        height: 500px;
    }

    .founder-message {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .founders-section {
        padding: 60px 0;
    }

    .founders-container {
        padding: 0 20px;
    }

    .founder-photo {
        height: auto;
        min-height: 450px;
    }
    
    .founder-info-overlay {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 12px;
    }

    .founder-card .founder-name {
        font-size: 16px;
        color: #2c2c2c;
    }

    .founder-card .founder-title {
        font-size: 11px;
        color: #666;
    }
}

@media (max-width: 480px) {
    .founder-photo {
        height: auto;
        min-height: 350px;
    }
    
    .founder-profile {
        max-width: 100%;
    }
}