
/* --- CSS RESET & VARIABLES --- */
:root {
    /* LUXURY PURPLE PALETTE */
    --purple-deep: #49225B;    /* Deep Purple (Services, Designers) */
    --purple-mid: #6E3482;     /* Medium Purple (Inspiration) */
    --purple-light: #A56ABD;   /* Light Purple (Accents) */
    --lavender-pale: #E7DBEF;  /* Pale Lavender (Why Choose Us) */
    --lavender-soft: #F5EBFA;  /* Very Light Lavender (Video) */
    
    --primary-gold: #D4AF37;   /* Gold Accents (Maintained for luxury) */
    --primary-dark: #111827;   
    --white: #ffffff;
    --text-dark: #2d1b36;      /* Dark text for light backgrounds */
    
    /* Mappings */
    --text-grey: #e0e0e0;
    --bg-light: var(--lavender-pale);
    --border-color: rgba(255,255,255,0.1);
    
    /* Transitions & Fonts */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--primary-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    outline: none;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* --- ENHANCED PREMIUM BUTTON STYLES --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    /* Vibrant Amber Gradient */
    background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px; /* Pill */
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-decoration: none; 
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.3); 
    white-space: nowrap;
    min-width: max-content;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.5); 
    background: linear-gradient(135deg, #D97706 0%, #FBBF24 100%);
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.btn.btn-large {
    font-size: 1.1rem;
    padding: 18px 45px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem); /* Responsive Font Size */
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 15px auto 0;
    transition: width 0.3s;
}

.section-title:hover::after {
    width: 100px;
}

.section-subtitle {
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    font-weight: 300;
}

/* --- 3D ANIMATIONS & REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-rotate {
    opacity: 0;
    transform: perspective(1000px) rotateX(45deg) translateY(50px);
    transform-origin: top center;
    transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.reveal-rotate.active {
    opacity: 1;
    transform: perspective(1000px) rotateX(0) translateY(0);
}

.services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.4s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.5s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.6s; }
.services-grid .service-card:nth-child(7) { transition-delay: 0.7s; }

.inspiration-grid .inspiration-card:nth-child(odd) { transition-delay: 0.1s; }
.inspiration-grid .inspiration-card:nth-child(even) { transition-delay: 0.25s; }

.service-card, .inspiration-card, .designer-card, .design-type-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    will-change: transform;
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header.sticky {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.header.sticky .nav-link {
    color: #2d1b36;
}

.header.sticky .logo-text {
    color: #2d1b36;
}

.header.sticky .mobile-toggle {
    color: #2d1b36;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-right: 50px; 
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .logo-img { width: 55px; height: 55px; }
    .logo-text { font-size: 1.8rem; }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-menu .btn {
    white-space: nowrap;
    padding: 12px 30px;
    font-size: 0.85rem;
    min-width: auto;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    animation: none;
    background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
    color: var(--white);
}

.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 1.8rem;
    background: none;
    padding: 5px;
    z-index: 1001;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background-color: #111;
    perspective: 1000px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transform: scale(1.1);
    filter: brightness(0.6);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(73, 34, 91, 0.4), rgba(73, 34, 91, 0.7));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem); /* Responsive Heading */
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.highlight-text {
    color: var(--primary-gold);
    font-style: italic;
    font-weight: 400;
    display: inline-block; /* Helps with wrapping */
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.4rem);
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    transform: translateY(30px);
    color: #e5e5e5;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --- SERVICES (#49225B Deep Purple) --- */
#services {
    background: linear-gradient(135deg, #bd9271, #622c13);
    position: relative;
    color: var(--white);
}

#services .section-title { color: var(--primary-gold); }
#services .section-subtitle { color: #e0e0e0; }

.services-grid {
    display: grid;
    /* Improved responsiveness for small screens */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 40px;
    perspective: 1000px;
    position: relative;
    z-index: 2;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05); /* Dark Glass */
    border-radius: 4px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.1);
    border-bottom: 3px solid transparent;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.service-card:hover {
    border-bottom-color: var(--primary-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.service-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-image-container img {
    transform: scale(1.05);
}

.service-content-box {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: all 0.4s;
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-card:hover .service-icon {
    background-color: var(--primary-gold);
    color: var(--purple-deep);
    transform: scale(1.05);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white); 
    font-family: var(--font-heading);
}

.service-desc {
    color: #d0d0d0;
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-btn {
    background-color: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.service-btn:hover {
    background-color: var(--primary-gold);
    color: var(--purple-deep);
}

/* Service In-Card Overlay */
.service-details-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 20, 40, 0.98); /* Dark overlay */
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 20;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.service-card.active-details .service-details-overlay {
    transform: translateY(0);
}

.details-content {
    flex: 1;
    overflow-y: auto;
    padding-top: 20px;
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.close-details-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    z-index: 25;
}

/* --- INSPIRATION (#6E3482 Medium Purple) --- */
.inspiration-section {
    background: linear-gradient(135deg, #15377e, #050242);
    color: var(--white);
}

#inspiration .section-title { color: var(--primary-gold); }
#inspiration .section-subtitle { color: #f0f0f0; }

.inspiration-grid {
    display: grid;
    /* Better breakpoint for small devices */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.inspiration-card {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.inspiration-img {
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    filter: brightness(0.95);
}

.inspiration-card:hover .inspiration-img {
    transform: scale(1.05);
    filter: brightness(1);
}

.inspiration-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(73, 34, 91, 0.5) 50%, rgba(73, 34, 91, 0.9) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.inspiration-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 5px;
    transform: translateY(10px);
    transition: transform 0.4s;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    color: var(--white);
}

.inspiration-card:hover .inspiration-title {
    transform: translateY(0);
    color: var(--primary-gold);
}

.explore-btn {
    display: inline-block;
    background-color: var(--primary-gold);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 15px;
    width: fit-content;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.inspiration-card:hover .explore-btn {
    transform: translateY(0);
    opacity: 1;
}

/* --- DESIGNERS (#49225B Deep Purple) --- */
#designers {
    background: linear-gradient(135deg, #055d5d, #056545);
    color: var(--white);
}

#designers .section-title { color: var(--primary-gold); }
#designers .section-subtitle { color: #ccc; }

.designers-wrapper {
    overflow-x: auto;
    padding: 40px 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch; /* Smooth scroll on mobile */
}
.designers-wrapper::-webkit-scrollbar { display: none; }

.designers-track {
    display: flex;
    gap: 40px;
    padding: 10px 20px;
    width: max-content;
    margin: 0 auto;
}

.designer-card {
    width: 300px; /* Slightly smaller for mobile context */
    background: rgba(255,255,255,0.05); 
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    text-align: center;
    flex-shrink: 0;
    padding-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    opacity: 0;
    transform: translateX(30px);
}
@media (min-width: 768px) { .designer-card { width: 350px; } }


.designer-card.reveal.active {
    opacity: 1;
    transform: translateX(0);
}

.designer-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 40px auto 20px;
    object-fit: cover;
    border: 1px solid var(--primary-gold);
    padding: 4px;
    background: var(--purple-deep);
}
@media (min-width: 768px) { .designer-img { width: 160px; height: 160px; } }


.designer-info {
    padding: 0 25px;
}

.designer-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.designer-tagline {
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--purple-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-top: 20px;
    transition: var(--transition);
}
@media (min-width: 768px) { .arrow-btn { width: 50px; height: 50px; font-size: 1.4rem; } }


.arrow-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* --- WHY CHOOSE US (#E7DBEF Pale Lavender) --- */
.dark-theme-section {
    background: linear-gradient(135deg, #a94d0c, #810c1d);
    color: var(--text-dark);
}

#why-choose-us .section-title { color: var(--purple-deep); border-color: var(--primary-gold); }
#why-choose-us .section-title::after { background-color: var(--purple-deep); }
#why-choose-us .section-subtitle { color: #555; }

.why-us-wrapper {
    overflow: hidden;
    padding: 50px 0;
    display: flex;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.why-us-track {
    display: flex;
    gap: 40px; /* Reduced gap for small screens */
    padding-right: 40px;
    width: max-content;
    flex-shrink: 0;
    animation: scrollLeft 30s linear infinite;
}
@media (min-width: 768px) { .why-us-track { gap: 60px; padding-right: 60px; } }


@keyframes scrollLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px; /* Smaller for mobile */
    text-align: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}
@media (min-width: 768px) { .why-item { width: 180px; } }

.why-item:hover {
    transform: translateY(-10px);
}

.why-icon {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(73, 34, 91, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--purple-deep);
    transition: var(--transition);
    background: rgba(255,255,255,0.5);
}
@media (min-width: 768px) { .why-icon { width: 90px; height: 90px; } }

.why-item:hover .why-icon {
    background-color: var(--purple-deep);
    color: var(--white);
    border-color: var(--purple-deep);
}

.why-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}
@media (min-width: 768px) { .why-text { font-size: 1rem; } }


/* --- VIDEO SECTION (#F5EBFA Very Light Lavender) --- */
.gallery-section {
   background: linear-gradient(135deg, #073e95, #045766);
}

#gallery .section-title { color: var(--purple-deep); }
#gallery .section-title::after { background-color: var(--primary-gold); }
#gallery .section-subtitle { color: #666; }

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: translateZ(0);
    transition: transform 0.5s ease;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper:hover {
    transform: scale(1.01);
}

/* --- NEWSLETTER (Consistent with Purple Theme) --- */
.newsletter {
    background: linear-gradient(135deg, var(--purple-mid), var(--purple-deep));
    color: var(--white);
    padding: 80px 0;
}

.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.newsletter-left h3, .newsletter-right h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.newsletter-left p, .newsletter-right p {
    color: #f0f0f0;
    margin-bottom: 25px;
    font-size: 1rem;
}

.subscribe-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
}

.subscribe-input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    background: rgba(255,255,255,0.9);
    color: var(--primary-dark);
}

.subscribe-btn {
    padding: 15px 30px;
    background-color: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.subscribe-btn:hover {
    background-color: var(--white);
    color: var(--purple-deep);
}

/* Social Icons */
.social-showcase {
    display: flex;
    gap: 20px;
}

.social-card {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    background: rgba(255,255,255,0.1);
    transition: transform 0.3s, background 0.3s;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.3);
}

/* --- FOOTER --- */
.footer {
    background-color: var(--primary-dark);
    color: #888;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-gold);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    border-color: var(--primary-gold);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* --- MODAL (Dark Theme) --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto; /* Enable scrolling if content is tall */
    overflow-x: hidden;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #1a1a1a;
    margin: 20px;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--primary-gold); 
    transform: translateY(20px);
    transition: transform 0.4s;
    max-height: 90vh; /* Don't exceed viewport height */
    overflow-y: auto; /* Internal scrolling for content */
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    color: #aaa;
    padding: 10px;
    line-height: 20px;
}

.close-modal:hover {
    color: var(--primary-gold);
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--white);
    text-align: center;
}

.modal-header .section-title {
    margin: 0;
    color: var(--primary-gold);
    font-size: 1.8rem;
}
.modal-header .section-title::after { display: none; }

.modal-body {
    padding: 25px;
    color: #e0e0e0;
}

@media (min-width: 768px) {
    .modal-body { padding: 30px; }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-gold);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    font-size: 1rem;
    background: rgba(0,0,0,0.2);
    color: var(--white);
}

.form-group input:focus {
    border-color: var(--primary-gold);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.btn-block {
    width: 100%;
    display: block;
    padding: 15px;
}

.back-home-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #999;
    text-decoration: underline;
    padding: 10px;
}

.back-home-link:hover {
    color: var(--white);
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-wrapper { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    
    .nav-menu {
        position: absolute; top: 100%; left: 0; width: 100%;
        background-color: #ffffff;
        flex-direction: column; padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-150%); transition: transform 0.4s ease-in-out; z-index: 999;
        /* Ensure max-height for landscape scrolling */
        max-height: 80vh; 
        overflow-y: auto;
    }
    .nav-menu.active { transform: translateY(0); }
    .nav-link { color: #2d1b36; width: 100%; text-align: center; padding: 15px 0; font-size: 1.1rem; border-bottom: 1px solid #f0f0f0;}
    .nav-menu .btn { width: 90%; margin: 20px auto 10px auto; display: block; text-align: center; }
    
    .mobile-toggle { display: block; }
    
    .hero { min-height: 500px; } /* Adjust hero height */
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .contact-info li { justify-content: center; }
    .social-icons { justify-content: center; }
    
    .logo-link { margin-right: 0; }
    
    /* STACKED LOGO TEXT FOR SMALL SCREENS */
    .logo-text {
        width: min-content;
        display: block;
        font-size: 1.1rem;
        line-height: 1.1;
        white-space: normal;
        text-align: left;
    }
    .logo-img {
        width: 40px;
        height: 40px;
    }

    .subscribe-form { flex-direction: column; }
    .subscribe-btn { width: 100%; }
    
    .service-card { margin-bottom: 20px; }
    
    .modal-content {
        margin: 10px;
        width: 95%;
    }

    /* Designers Section Vertical Stack */
    .designers-wrapper {
        overflow-x: visible;
        width: 100%;
        padding: 0;
    }
    .designers-track {
        flex-direction: column;
        width: 100%;
        gap: 40px;
        align-items: center;
        padding: 20px 0;
        animation: none; /* Disable scroll animation */
    }
    .designer-card {
        width: 100%;
        max-width: 380px;
        margin: 0;
        /* Reset horizontal animation for vertical flow */
        transform: translateY(30px);
    }
    .designer-card.reveal.active {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    
    .service-card, .inspiration-card, .designer-card {
        width: 100%; /* Full width on very small screens */
    }
    
    .services-grid, .inspiration-grid {
        grid-template-columns: 1fr; /* Single column */
    }
    
    .footer { padding: 40px 0 20px; }
    .footer-grid { gap: 30px; }
    
    .why-us-track { gap: 30px; padding-right: 30px; }
    .why-item { width: 120px; }
    .why-icon { width: 60px; height: 60px; font-size: 1.2rem; }
    
    .modal-header h2 { font-size: 1.5rem; }
}

/* --- GOOGLE MAP --- */
.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile Optimization for Map */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
}
#designerName {
    color: #A855F7;
}