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

:root {
    --garnet-primary: #8B2635;
    --garnet-secondary: #A63446;
    --garnet-accent: #D4A574;
    --garnet-dark: #5A1A24;
    --garnet-light: #F8F5F3;
    --text-dark: #2C2C2C;
    --text-medium: #5A5A5A;
    --text-light: #8A8A8A;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--garnet-light);
}

/* Ensure all body text uses Inter font, except quotes and headings */
p:not(.team-member-quote p):not(.testimonial-text):not(.designer-quote p), 
span:not(h1 span):not(h2 span):not(h3 span):not(h4 span):not(h5 span):not(h6 span), 
li, 
label, 
input, 
textarea, 
select {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Navigation links use Inter */
.nav-menu a:not(.cta-button) {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* Main navigation styles */
nav,
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav.scrolled,
#navbar.scrolled {
    background: var(--glass-bg);
    box-shadow: var(--shadow-md);
}

.nav-container,
nav .nav-container,
#navbar .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo,
nav .logo,
#navbar .logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--garnet-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.logo svg,
nav .logo svg,
#navbar .logo svg {
    width: 40px;
    height: 40px;
}

.nav-menu,
nav .nav-menu,
#navbar .nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a,
nav .nav-menu a,
#navbar .nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: -0.2px;
}

.nav-menu a:hover,
nav .nav-menu a:hover,
#navbar .nav-menu a:hover {
    color: var(--garnet-primary);
}

.nav-menu a::after,
nav .nav-menu a::after,
#navbar .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--garnet-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
nav .nav-menu a:hover::after,
#navbar .nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active,
nav .nav-menu a.active,
#navbar .nav-menu a.active {
    color: var(--garnet-primary);
}

.nav-menu a.active::after,
nav .nav-menu a.active::after,
#navbar .nav-menu a.active::after {
    width: 100%;
}

.cta-button,
nav .cta-button,
#navbar .cta-button {
    background: linear-gradient(135deg, var(--garnet-primary) 0%, var(--garnet-secondary) 100%);
    color: var(--white) !important;
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.25);
}

.cta-button:hover,
nav .cta-button:hover,
#navbar .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.35);
    background: linear-gradient(135deg, #7a1f2d 0%, #922d3a 100%);
    color: var(--white) !important;
}

.cta-button::after,
nav .cta-button::after,
#navbar .cta-button::after {
    display: none;
}

.mobile-menu-toggle,
nav .mobile-menu-toggle,
#navbar .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--garnet-primary);
    z-index: 1001;
    position: relative;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(105deg, var(--garnet-dark) 0%, var(--garnet-primary) 100%);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.slide:nth-child(1) {
    background-image: url('../images/home-background-1.jpg');
}

.slide:nth-child(2) {
    background-image: url('../images/home-background-2.jpg');
}

.slide:nth-child(3) {
    background-image: url('../images/home-background-3.jpg');
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45) !important;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.92;
    animation: fadeInUp 1s ease-out 0.3s both;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.page-hero {
    padding: 7rem 0 4rem;
    background: linear-gradient(120deg, var(--garnet-dark) 0%, var(--garnet-primary) 70%);
    color: var(--white);
    margin-top: 70px;
}

.our-story-hero {
    background-image: url('../images/Our-Story-Background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.our-story-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45) !important;
    z-index: 0;
}

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

.our-services-hero {
    background-image: url('../images/Our-Service.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.our-services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45) !important;
    z-index: 0;
}

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

.our-process-hero {
    background-image: url('../images/Our-Process.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.our-process-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45) !important;
    z-index: 0;
}

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

.page-hero .section-header {
    margin-bottom: 2.5rem;
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 1rem 0 0;
}

.highlights {
    background: var(--white);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.highlight-card {
    padding: 1.8rem;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    background: var(--garnet-light);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.highlight-card h3 {
    color: var(--garnet-primary);
    margin-bottom: 0.6rem;
    font-size: 1.3rem;
}

.highlight-card p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.highlight-card a {
    color: var(--garnet-primary);
    font-weight: 600;
    text-decoration: none;
}

.quick-stats {
    background: var(--garnet-light);
}

.quick-stats-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}

.cta-banner {
    background: var(--garnet-primary);
    color: var(--white);
    padding: 4rem 0;
}

.cta-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-banner h3 {
    font-size: 2rem;
}

.cta-banner p {
    max-width: 600px;
    margin: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--garnet-primary) 0%, var(--garnet-secondary) 100%);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.25);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 38, 53, 0.4);
    background: linear-gradient(135deg, #7a1f2d 0%, #922d3a 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--garnet-primary);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

section {
    padding: 6rem 0;
}

/* Team page specific section padding */
.team section,
section.team {
    padding: 3rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--garnet-primary), var(--garnet-accent));
    border-radius: 3px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
}

.about {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%238B2635" opacity="0.05" d="M28.1,76.1C17.5,66.9,11,53.4,11,39.2C11,17.6,28.6,0,50.2,0c21.6,0,39.2,17.6,39.2,39.2c0,14.2-6.5,27.7-17.1,36.9L50.2,100L28.1,76.1z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--garnet-primary);
    font-weight: 600;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--garnet-light);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(139, 38, 53, 0.1);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: rgba(139, 38, 53, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--garnet-primary);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image:hover .about-image-overlay {
    opacity: 1;
}

.team {
    background: var(--garnet-light);
    position: relative;
}

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

.team-member {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    cursor: pointer;
}

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

.team-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-photo {
    transform: scale(1.05);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--garnet-primary);
    font-weight: 600;
}

.team-info .position {
    color: var(--garnet-accent);
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
    font-size: 1.1rem;
}

.team-info p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

.team-info .team-social {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--garnet-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--garnet-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: var(--garnet-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.ceo-card {
    grid-column: 1 / -1;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(139, 38, 53, 0.1);
}

.ceo-card .team-info {
    text-align: left;
    padding: 3rem;
}

.ceo-card .team-info h3 {
    font-size: 2.2rem;
}

.ceo-card .team-info .position {
    font-size: 1.3rem;
}

.ceo-card .team-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.team-member-featured {
    position: relative;
    margin-bottom: 8rem;
    padding: 5rem 0;
}

.team-member-number {
    font-size: 9rem;
    font-weight: 300;
    color: rgba(139, 38, 53, 0.12);
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: 2rem;
    left: 2rem;
    line-height: 1;
    z-index: 0;
    letter-spacing: -0.05em;
    opacity: 0.6;
}

.team-member-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.team-member-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.team-member-image .team-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.team-member-info {
    padding: 2rem 0;
}

.team-member-info h2 {
    margin-top: 0;
}

.team-member-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--garnet-primary);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.team-member-info .position {
    color: var(--garnet-accent);
    font-weight: 500;
    margin-bottom: 2rem;
    display: block;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.team-member-info p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.team-member-info .btn-primary {
    margin-top: 2rem;
}

.team-member-quote {
    margin: 2.5rem 0;
    padding: 0;
    border: none;
    border-left: 3px solid var(--garnet-accent);
    padding-left: 2rem;
}

.team-member-quote p {
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.interior-design {
    background: var(--white);
    position: relative;
}

.interior-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.interior-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.interior-logo svg {
    width: 200px;
    height: auto;
}

.interior-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--garnet-primary);
    font-weight: 600;
}

.interior-text p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.interior-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.interior-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.interior-feature i {
    color: var(--garnet-accent);
    font-size: 1.5rem;
    margin-top: 0.3rem;
}

.interior-feature div h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.interior-feature div p {
    font-size: 0.95rem;
    margin: 0;
}

.projects {
    background: var(--garnet-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

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

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

.project-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--garnet-primary);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 2;
}

.project-info {
    padding: 2.2rem;
}

.project-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.project-info p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.project-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--garnet-primary);
    font-family: 'Playfair Display', serif;
}

.project-link {
    color: var(--garnet-primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.project-link:hover {
    gap: 1rem;
    color: var(--garnet-secondary);
}

.services {
    background: var(--white);
}

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

.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--garnet-primary), var(--garnet-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

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

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--garnet-primary) 0%, var(--garnet-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    font-size: 2.2rem;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(139, 38, 53, 0.25);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1.05rem;
}

.process {
    background: var(--garnet-light);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
    z-index: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.step:not(:last-child)::after {
    content: '>';
    position: absolute;
    top: 50%;
    right: -1.8rem;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--garnet-accent);
    opacity: 0.3;
    transition: all 0.4s;
}

.step:hover:not(:last-child)::after {
    opacity: 0.7;
    transform: translateY(-50%) translateX(5px);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--garnet-primary) 0%, var(--garnet-secondary) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 5px 15px rgba(139, 38, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(139, 38, 53, 0.3);
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.step p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.testimonials {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50px;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%238B2635" opacity="0.05" d="M28.1,76.1C17.5,66.9,11,53.4,11,39.2C11,17.6,28.6,0,50.2,0c21.6,0,39.2,17.6,39.2,39.2c0,14.2-6.5,27.7-17.1,36.9L50.2,100L28.1,76.1z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    z-index: 0;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial {
    text-align: center;
    padding: 3rem;
    display: none;
    background: var(--garnet-light);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

.testimonial-text {
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    position: relative;
    padding: 0 2rem;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    position: absolute;
    font-size: 4rem;
    color: var(--garnet-accent);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
}

.testimonial-text::before {
    top: -2rem;
    left: 0;
}

.testimonial-text::after {
    bottom: -3.5rem;
    right: 0;
}

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

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--garnet-accent);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--garnet-primary);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.author-info p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(139, 38, 53, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
}

.dot:hover {
    transform: scale(1.2);
}

.dot.active {
    background: var(--garnet-primary);
    transform: scale(1.2);
    border-color: var(--garnet-accent);
}

.contact {
    background: linear-gradient(135deg, var(--garnet-dark) 0%, var(--garnet-primary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23FFFFFF" opacity="0.05" d="M28.1,76.1C17.5,66.9,11,53.4,11,39.2C11,17.6,28.6,0,50.2,0c21.6,0,39.2,17.6,39.2,39.2c0,14.2-6.5,27.7-17.1,36.9L50.2,100L28.1,76.1z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.contact-info p {
    margin-bottom: 2.5rem;
    opacity: 0.92;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 90%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--garnet-accent);
    margin-top: 0.3rem;
    min-width: 30px;
    text-align: center;
}

.contact-item div h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.2px;
}

.contact-item div p {
    opacity: 0.9;
    font-size: 1rem;
    margin: 0;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 500;
    color: var(--white);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--garnet-accent);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

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

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--garnet-accent) 0%, #e6b882 100%);
    color: var(--garnet-dark);
    padding: 1.1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

footer {
    background: #3f3936;
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
    position: relative;
    text-align: center;
}

.footer-logo {
    margin-bottom: 2.5rem;
}

.footer-logo a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-divider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-copyright {
    text-align: left;
    margin: 0;
}

.footer-association {
    text-align: center;
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-legal {
    text-align: right;
    margin: 0;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 1);
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .nav-container,
    nav .nav-container,
    #navbar .nav-container {
        padding: 1rem;
    }

    .mobile-menu-toggle,
    nav .mobile-menu-toggle,
    #navbar .mobile-menu-toggle {
        display: block;
    }

    .nav-menu,
    nav .nav-menu,
    #navbar .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(0,0,0,0.05);
        gap: 1.5rem;
        overflow-y: auto;
    }

    .nav-menu.active,
    nav .nav-menu.active,
    #navbar .nav-menu.active {
        left: 0;
    }

    .nav-menu a,
    nav .nav-menu a,
    #navbar .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
        width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .about-content,
    .contact-content,
    .interior-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .ceo-card {
        grid-template-columns: 1fr;
    }

    .team-member-featured {
        margin-bottom: 5rem;
        padding: 3rem 0;
    }

    .team-member-number {
        font-size: 6rem;
        top: 1rem;
        left: 1rem;
        opacity: 0.4;
    }

    .team-member-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .team-member-info h2 {
        font-size: 2rem;
    }

    .team-member-info .position {
        font-size: 1.1rem;
    }

    .team-member-info p {
        font-size: 1rem;
    }

    .team-member-quote {
        margin: 2rem 0;
        padding-left: 1.5rem;
    }

    .team-member-quote p {
        font-size: 1.1rem;
    }

    .footer-nav {
        gap: 1.5rem;
        font-size: 0.8rem;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-copyright,
    .footer-association,
    .footer-legal {
        text-align: center;
    }

    .footer-association {
        font-size: 0.75rem;
    }

    .step:not(:last-child)::after {
        content: 'v';
        top: 100%;
        right: 50%;
        transform: translateX(50%);
        margin-top: 1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .contact-info h3 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.8rem;
    }

    .interior-features {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding-top: 6rem;
    }

    .quick-stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

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

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(139, 38, 53, 0.2);
    border-top: 3px solid var(--garnet-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about, .services, .testimonials, .interior-design {
    position: relative;
}

.about::after, .services::after, .testimonials::after, .interior-design::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="%238B2635" fill-opacity="0.03" fill-rule="evenodd"/></svg>');
    opacity: 0.2;
    z-index: -1;
}

.centered-action {
    text-align: center;
    margin-top: 3rem;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 2px solid var(--garnet-primary);
    max-width: 460px;
    width: 100%;
    text-align: center;
    position: relative;
}

.modal-content h3 {
    color: var(--garnet-primary);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.modal-content p {
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-actions {
    display: flex;
    justify-content: center;
}

.modal-actions .btn-primary {
    padding: 0.7rem 1.8rem;
    width: 100%;
    max-width: 200px;
}

/* Interiors Page Styles */
.interiors-hero {
    padding: 10rem 0 6rem;
    background-image: url('../images/interior-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.interiors-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7z" fill="white" fill-opacity="0.05"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.interiors-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45) !important;
    z-index: 0;
}

.interiors-hero-content {
    position: relative;
    z-index: 1;
}

.interiors-hero h1 {
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.interiors-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.interiors-hero .btn-primary {
    margin-top: 1rem;
}

.interiors-quote {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.designer-quote {
    max-width: 900px;
    margin: 0 auto;
    border: none;
    padding: 0;
}

.designer-quote p {
    font-size: 1.75rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.designer-quote cite {
    font-size: 1.1rem;
    color: var(--text-medium);
    font-style: normal;
    font-weight: 500;
    display: block;
}

.interiors-intro {
    padding: 4rem 0;
    background: var(--garnet-light);
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-medium);
    text-align: center;
}

.signature-spaces {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.signature-spaces .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.signature-spaces .section-header h2 {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1rem;
}

.signature-spaces .section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.signature-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.signature-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
    background: #f5f5f5;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
    width: 100%;
}

.signature-gallery .gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.signature-gallery .gallery-item:hover {
    transform: translateY(-4px);
}

.signature-gallery .gallery-item:hover::before {
    background: rgba(0, 0, 0, 0.02);
}

/* Standard items - 4:5 aspect ratio */
.signature-gallery .gallery-item {
    aspect-ratio: 4 / 5;
}

/* Row 1: Items 1, 2, 3 (3 spans 2 rows) */
.signature-gallery .gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.signature-gallery .gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.signature-gallery .gallery-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1 / 3;
    aspect-ratio: 4 / 10;
}

/* Row 2: Item 4 spans 2 columns */
.signature-gallery .gallery-item:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 2;
    aspect-ratio: 8 / 4;
}

/* Row 3: Items 5, 6 */
.signature-gallery .gallery-item:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
}

.signature-gallery .gallery-item:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
}

/* Row 4: Item 7 spans 2 columns, Item 8 spans 2 rows */
.signature-gallery .gallery-item:nth-child(7) {
    grid-column: 1 / 3;
    grid-row: 4;
    aspect-ratio: 8 / 4;
}

.signature-gallery .gallery-item:nth-child(8) {
    grid-column: 3;
    grid-row: 3 / 5;
    aspect-ratio: 4 / 10;
}

.signature-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: block;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    min-height: 100%;
    min-width: 100%;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

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

.gallery-content {
    color: var(--white);
    transform: translateY(15px);
    transition: transform 0.4s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

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

.gallery-content h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}

.gallery-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    font-weight: 300;
}

.tailored-services {
    padding: 5rem 0;
    background: var(--garnet-light);
}

.tailored-services .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tailored-services .section-header h2 {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1rem;
}

.tailored-services .section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-number {
    font-size: 4rem;
    font-weight: 300;
    color: var(--garnet-primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.service-card h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 500;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.service-link {
    color: var(--garnet-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: var(--garnet-secondary);
}

.interiors-testimonial {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.testimonial-project {
    font-size: 1rem;
    color: var(--text-medium);
    font-style: italic;
}

.design-inquiry {
    padding: 6rem 0;
    background: var(--garnet-light);
}

.design-inquiry .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.design-inquiry .section-header h2 {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1rem;
}

.design-inquiry .section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.inquiry-form {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--garnet-primary);
    box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.1);
}

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

.inquiry-form .btn-primary {
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
    display: block;
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .interiors-hero h1 {
        font-size: 3rem;
    }
    
    .interiors-tagline {
        font-size: 1.2rem;
    }
    
    .designer-quote p {
        font-size: 1.4rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .signature-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    
    /* Reset all gallery items for mobile to show all images */
    .signature-gallery .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        aspect-ratio: 4 / 5;
    }
    
    .signature-gallery .gallery-item:nth-child(1),
    .signature-gallery .gallery-item:nth-child(2),
    .signature-gallery .gallery-item:nth-child(3),
    .signature-gallery .gallery-item:nth-child(4),
    .signature-gallery .gallery-item:nth-child(5),
    .signature-gallery .gallery-item:nth-child(6),
    .signature-gallery .gallery-item:nth-child(7),
    .signature-gallery .gallery-item:nth-child(8) {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        aspect-ratio: 4 / 5;
    }
    
    .gallery-overlay {
        opacity: 1;
        padding: 1.5rem;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.75) 100%);
    }
    
    .gallery-content {
        transform: translateY(0);
    }
    
    .gallery-content h4 {
        font-size: 1.35rem;
    }
    
    .gallery-content p {
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .inquiry-form {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.25rem;
    }
}

/* Portfolio Styles */
.portfolio-hero {
    padding: 180px 2rem 100px;
    background-image: url('../images/Portfolio-background.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.portfolio-hero.team-hero {
    background-image: url('../images/The-Team-Background.jpg');
}

.portfolio-hero.team-hero::before {
    background-color: rgba(0, 0, 0, 0.3);
}

.portfolio-hero-content {
    position: relative;
    z-index: 1;
}

.portfolio-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.1em;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.portfolio-section {
    padding: 2rem 0 6rem;
    background: var(--garnet-light);
    position: relative;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.portfolio-filters-mobile {
    display: none;
}

.filter-btn {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--garnet-primary);
    transition: width 0.3s ease;
}

.filter-btn:hover {
    color: var(--garnet-primary);
}

.filter-btn.active {
    color: var(--garnet-primary);
}

.filter-btn.active::after {
    width: 80%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.95);
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #E8E2D8;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.6s ease;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    cursor: pointer;
    user-select: none;
}

.portfolio-image-wrapper:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    z-index: 1;
    pointer-events: none;
}

.portfolio-image-wrapper:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .portfolio-hero {
        padding: 8rem 0 3rem;
        background-attachment: scroll;
    }
    
    .portfolio-hero-content h1 {
        font-size: 1.75rem;
    }
    
    .portfolio-section {
        padding: 1.5rem 0 4rem;
    }
    
    .portfolio-filters {
        display: none;
    }
    
    .portfolio-filters-mobile {
        display: block;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .filter-dropdown {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-dark);
        background: var(--white);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Inter', sans-serif;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B2635' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1.5rem center;
        padding-right: 3rem;
    }
    
    .filter-dropdown:focus {
        outline: none;
        border-color: var(--garnet-primary);
        box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.1);
    }
    
    .filter-dropdown option {
        padding: 0.5rem;
        text-transform: uppercase;
        font-weight: 500;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
        padding: 0 1rem;
    }
    
    .portfolio-overlay h3 {
        font-size: 1.1rem;
    }
    
    .team-hero {
        background-attachment: scroll;
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }

    .lightbox-image {
        max-height: 85vh;
    }
}
