@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --bg-primary: #0A0A0B;
    --bg-secondary: #121214;
    --bg-card: rgba(22, 22, 26, 0.7);
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA7C11;
    --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA7C11 100%);
    --gold-gradient-text: linear-gradient(135deg, #FFF6D6 0%, #D4AF37 50%, #8A640F 100%);
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0AB;
    --accent-color: #E84A5F;
    --border-color: rgba(212, 175, 55, 0.15);
    --border-hover: rgba(212, 175, 55, 0.4);
    --font-heading: 'Cinzel Decorative', 'Playfair Display', serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    -webkit-user-drag: none;
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Helper Classes */
.gold-text {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.gold-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bg-primary);
    background: var(--gold-gradient);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.gold-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: 0.5s;
    z-index: -1;
}

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

.gold-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.outline-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    background: transparent;
    border: 1px solid var(--gold-primary);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.outline-btn:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-3px);
}

/* Glassmorphism Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

/* Top Announcement Bar */
.top-announcement-bar {
    background: var(--gold-dark);
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    color: var(--bg-primary);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-track {
    display: flex;
    white-space: nowrap;
    animation: scrollAnnounce 25s linear infinite;
}

.announcement-track span {
    display: inline-block;
    padding-right: 4rem;
}

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

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    line-height: 1.2;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 2px;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

nav a:hover {
    color: var(--gold-light);
}

nav a:hover::after {
    width: 100%;
}

.contact-btn-nav {
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 12rem 2rem 2rem 2rem;
    overflow: hidden;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: brightness(0.4) contrast(1.1);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--bg-primary) 90%),
                linear-gradient(to top, var(--bg-primary) 0%, transparent 40%);
}

.hero-left-scroll {
    position: relative;
    margin-top: 3rem;
    z-index: 5;
    pointer-events: none;
    display: flex;
    overflow: hidden;
    width: 80%;
    white-space: nowrap;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 8px;
}

.hero-left-scroll .scroll-track {
    display: flex;
    gap: 3rem;
    animation: heroMarquee 15s linear infinite;
}

.hero-left-scroll .scroll-track span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 600;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 1.5rem;
    align-items: center;
}

.hero-content {
    min-width: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    display: inline-block;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero h1 span {
    display: block;
}

.hero h1 .designer-sub {
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--text-primary);
    margin-top: 1rem;
    text-transform: uppercase;
}

.hero p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 8px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent);
    animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Feature/Banner Statement */
.promo-bar {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2.5rem 1rem;
    position: relative;
    z-index: 5;
    text-align: center;
}

.promo-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.promo-arrow {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 15px solid var(--gold-primary);
    display: inline-block;
    animation: pointLeft 1.5s infinite alternate;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.promo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 3px;
    font-weight: 700;
}

/* Section Common Layout */
.section {
    padding: 8rem 2rem;
    position: relative;
}

.section-bg-dark {
    background-color: var(--bg-primary);
}

.section-bg-light {
    background-color: var(--bg-secondary);
}

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

.section-subtitle {
    font-size: 0.8rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.section-header-line {
    width: 60px;
    height: 1px;
    background: var(--gold-gradient);
    margin: 1.5rem auto 0 auto;
}

/* Services Section */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: var(--gold-light);
}

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

/* Showcases / Gallery Section */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--border-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 11, 0.9) 10%, rgba(10, 10, 11, 0.2) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-tag {
    font-size: 0.75rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.gallery-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
}

/* Contact & Info Section */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-channel-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.channel-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.channel-details h4 {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.channel-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.channel-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.channel-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    border-bottom: 1px dotted var(--gold-primary);
}

.channel-link:hover {
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
}

.form-control {
    width: 100%;
    background: rgba(26, 26, 28, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 1rem 1.25rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
}

select.form-control option {
    background: #1a1a1c;
    color: var(--text-primary);
    padding: 10px;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(26, 26, 28, 0.9);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.12), inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

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

/* Modal Popup style */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    background: rgba(10, 10, 11, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    overflow-y: auto;
    padding: 3rem 1rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    padding: 3rem;
    transform: scale(0.9);
    transition: var(--transition);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gold-primary);
}

.modal h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.modal-body {
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    animation: none; /* Stop pulsing on hover */
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer Section */
footer {
    background-color: #060607;
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about p {
    color: var(--text-secondary);
    margin-top: 1.5rem;
    font-size: 0.9rem;
    max-width: 350px;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

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

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

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

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pointLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-10px);
    }
}

/* Intersection Observer Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styling */
@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 8rem 1.5rem 4rem 1.5rem;
    }

    .hero-left-scroll {
        margin: 3rem auto 0 auto;
        width: 90%;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        text-align: center;
        width: 100%;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 3rem;
    }

    .hero h1 .designer-sub {
        font-size: 1.3rem;
        letter-spacing: 4px;
        margin-top: 0.5rem;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        justify-content: center;
    }

    .hero-actions .gold-btn,
    .hero-actions .outline-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-image-wrapper {
        max-width: 550px;
        width: 100%;
        margin: 0 auto;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border-color);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    }
    
    nav.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .section {
        padding: 5rem 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .logo-main {
        font-size: 1.4rem;
    }

    .logo-sub {
        font-size: 0.5rem;
        letter-spacing: 2.5px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modal-content {
        padding: 2rem 1.2rem;
    }

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

    .hero h1 .designer-sub {
        font-size: 1rem;
        letter-spacing: 3px;
        margin-top: 0.4rem;
    }


    
    .promo-content {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .promo-arrow {
        transform: rotate(90deg);
        animation: pointDown 1.5s infinite alternate;
    }
    
    @keyframes pointDown {
        0% { transform: translateY(0) rotate(90deg); }
        100% { transform: translateY(8px) rotate(90deg); }
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* ==========================================
   Voyage Slider (GSAP Carousel) Styles
   ========================================== */
#gallery .app {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#gallery .cardList {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

#gallery .cardList__btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    z-index: 100;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#gallery .cardList__btn:hover {
    background: var(--gold-gradient);
    color: var(--bg-primary);
    border-color: var(--gold-light);
}

#gallery .btn--left {
    left: 2rem;
}

#gallery .btn--right {
    right: 2rem;
}

#gallery .btn svg {
    stroke: currentColor;
    fill: none;
}

#gallery .cards__wrapper {
    position: relative;
    width: 260px;
    height: 380px;
    perspective: 1000px;
}

#gallery .card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

#gallery .card__image {
    width: 100%;
    height: 100%;
}

#gallery .card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card States */
#gallery .current--card {
    transform: translate3d(0, 0, 0) scale(1) !important;
    opacity: 1 !important;
    z-index: 10;
    pointer-events: auto;
}

#gallery .next--card {
    transform: translate3d(120%, 0, -100px) scale(0.8) !important;
    opacity: 0.6 !important;
    z-index: 5;
}

#gallery .previous--card {
    transform: translate3d(-120%, 0, -100px) scale(0.8) !important;
    opacity: 0.6 !important;
    z-index: 5;
}

/* Info Texts List */
#gallery .infoList {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
    width: 90%;
    max-width: 500px;
    pointer-events: none;
}

#gallery .info__wrapper {
    position: relative;
    height: 140px;
    overflow: hidden;
}

#gallery .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

#gallery .info.current--info {
    opacity: 1;
    z-index: 10;
}

#gallery .info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

#gallery .info h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

#gallery .info p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 400px;
    line-height: 1.5;
}

/* Blurred Background Layers */
#gallery .app__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

#gallery .app__bg__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

#gallery .app__bg__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(40px) brightness(0.25);
    transform: scale(1.1);
}

#gallery .app__bg__image.current--image {
    opacity: 1;
    z-index: 2;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    #gallery .app {
        height: 550px;
    }
    #gallery .cards__wrapper {
        width: 180px;
        height: 270px;
    }
    #gallery .next--card {
        transform: translate3d(85%, 0, -80px) scale(0.75) !important;
    }
    #gallery .previous--card {
        transform: translate3d(-85%, 0, -80px) scale(0.75) !important;
    }
    #gallery .cardList__btn {
        width: 40px;
        height: 40px;
    }
    #gallery .btn--left {
        left: 0.5rem;
    }
    #gallery .btn--right {
        right: 0.5rem;
    }
    #gallery .info h3 {
        font-size: 1.3rem;
    }
    #gallery .info p {
        font-size: 0.8rem;
    }
}

/* ==========================================
   Blouse Style Planner Wizard Styles
   ========================================== */
.customizer-content {
    max-width: 850px;
    width: 95%;
    padding: 3rem 2.5rem;
}

/* Steps Indicator */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    position: relative;
    padding: 0 1rem;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.wizard-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    flex: 1;
}

.wizard-step span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.wizard-step label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.wizard-step.active span {
    background: var(--gold-primary);
    border-color: var(--gold-light);
    color: var(--bg-primary);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.wizard-step.active label {
    color: var(--gold-light);
    font-weight: 600;
}

.wizard-step.completed span {
    background: var(--gold-dark);
    border-color: var(--gold-primary);
    color: var(--text-primary);
}

/* Wizard step sections */
.customizer-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.customizer-step.active {
    display: block;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 0.5rem;
}

/* Grid of Style Selection Cards */
.style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.style-option {
    cursor: pointer;
    position: relative;
}

.style-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.style-card-body {
    background: rgba(26, 26, 28, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.style-card-body h5 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}

.style-card-body p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.style-option input[type="radio"]:checked + .style-card-body {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.style-option input[type="radio"]:checked + .style-card-body h5 {
    color: var(--gold-light);
}

/* Step 4: Measurement Layout */
.measurement-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.measurement-inputs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.size-group {
    margin-bottom: 1rem;
}

.size-group label {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
}

.size-input {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

.measurement-graphic {
    background: rgba(26, 26, 28, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.measurement-graphic img {
    max-height: 220px;
    width: auto;
    border-radius: 4px;
    filter: invert(0.9);
}

/* Step 5: Summary Layout */
.summary-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.summary-item strong {
    color: var(--gold-light);
    font-size: 0.95rem;
    text-align: right;
}

/* Wizard Button Bar */
.wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.wizard-actions button {
    padding: 0.8rem 2.2rem;
}

/* Mobile Responsiveness for Style Wizard */
@media (max-width: 768px) {
    .customizer-content {
        padding: 2rem 1.5rem;
    }
    
    .wizard-steps {
        padding: 0;
        margin-bottom: 1.5rem;
    }
    
    .wizard-step label {
        display: none; /* Hide step labels on very small viewports */
    }
    
    .wizard-steps::before {
        left: 1rem;
        right: 1rem;
    }
    
    .measurement-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .measurement-graphic img {
        max-height: 180px;
    }
    
    .style-grid {
        grid-template-columns: 1fr;
    }
}

/* Online Orders Highlight Banner Styling */
.highlight-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight-banner {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.highlight-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

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

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.highlight-content h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.highlight-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.2rem;
}

.highlight-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.highlight-features li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.highlight-features li i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.highlight-features li strong {
    color: var(--gold-light);
    display: block;
    margin-bottom: 0.2rem;
}

.highlight-actions {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.highlight-actions .gold-btn,
.highlight-actions .outline-btn {
    text-align: center;
    padding: 1.1rem 2rem;
    width: 100%;
}

@media (max-width: 991px) {
    .highlight-banner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }
}

@media (max-width: 576px) {
    .highlight-banner-container {
        padding: 0 1rem;
    }
    .highlight-banner {
        padding: 2.2rem 1.5rem;
    }
    .highlight-content h2 {
        font-size: 1.8rem;
    }
}


