:root {
    --color-bg: #ffffff;
    --color-text: #1a1a1a;
    --color-gold: #b38b37;
    --color-gold-light: #1a1a1a;
    --color-emerald: #0b2d24;
    --color-emerald-dark: #021a15;
    --color-overlay: rgba(255, 255, 255, 0.8);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-slow: 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    --transition-med: 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor everywhere */
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background-color: var(--color-gold);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-gold);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    opacity: 1;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
}

p {
    line-height: 1.6;
    color: #555;
    font-weight: 400;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

/* Utility */
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: block;
}

/* Hero Top Elements (Replaces Navbar) */
.hero-top-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3rem 4rem;
    /* Generous padding as requested "increase height of badding" earlier */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #ffffff;
    font-weight: 700;
}

/* Center Logo */
.nav-center-logo {
    position: absolute;
    left: 50%;
    /* Vertically center in the valid header area or fixed top distance?
       If we want it 'Top Center' usually means center of the top bar.
       The bar has textual items. 
       Let's use the container's center.
    */
    top: 50%;
    transform: translate(-50%, -50%);

    /* Size */
    width: 120px;
    height: 120px;

    /* Circular Clean Crop */
    border-radius: 50%;
    overflow: hidden;

    /* Decoration */
    border: 2px solid var(--color-gold);
    background: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);

    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    /* Above text items if overlap */
}

.nav-center-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-center-logo:hover img {
    transform: scale(1.15);
}

/* Social Icons */
.nav-socials {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-socials a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid transparent;
}

.nav-socials a:hover {
    color: #fff;
    border-color: var(--color-gold);
    background: var(--color-gold);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: scale(1.1);
    /* for parallax */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 90%);
    z-index: -1;
}

.hero-content {
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    /* Animation handled by GSAP */
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #0F52BA, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200%;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    0% {
        background-position: -200%;
    }

    100% {
        background-position: 200%;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(45deg, var(--color-gold), #b3902d);
    color: black;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-whatsapp {
    display: inline-block;
    padding: 1rem 3rem;
    background: #007bff;
    /* Fallback */
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(45deg, #0056b3, #003f7f);
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    color: white;
}

.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
}

/* Split Gallery */
.split-gallery {
    display: flex;
    width: 100%;
    height: 90vh;
    /* High impact */
    overflow: hidden;
}

.split-item {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}


.split-item:hover img {
    transform: scale(1.05);
}

/* Split Hover Captions */
.split-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), transparent);
    color: white;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
    pointer-events: auto;
    /* Allow clicks */
    text-align: left;
}

/* Read More Logic */
.caption-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease, opacity 0.8s ease;
    opacity: 0;
}

.caption-content.expanded {
    max-height: 600px;
    /* Ample space */
    opacity: 1;
    margin-top: 1rem;
}

.btn-read-more {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.3s;
}

.btn-read-more:hover {
    background: var(--color-gold);
    color: black;
}

.split-item:hover .split-caption {
    opacity: 1;
    transform: translateY(0);
}

.split-caption h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.split-caption .subtitle {
    font-size: 0.8rem;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.split-caption p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    max-width: 90%;
    color: rgba(255, 255, 255, 0.9);
}

.split-caption .affirmation {
    margin-top: 1rem;
    font-size: 0.8rem;
    border-left: 2px solid var(--color-gold);
    padding-left: 1rem;
    font-style: italic;
    color: #ffd700;
}

.split-caption .caption-footer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Products Section */
.products-section {
    padding: 8rem 4rem;
    background-image: url('./assets/white_bg.png');
    /* Texture */
    background-attachment: fixed;
    background-size: cover;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--color-text);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.2);
}

.card-image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .card-overlay {
    opacity: 1;
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    color: black;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.btn-icon:hover {
    transform: scale(1.1);
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.poetic-desc {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-text {
    background: none;
    border: none;
    color: var(--color-text);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: var(--color-gold);
    transition: 0.3s;
}

.btn-text:hover::after {
    width: 100%;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: black;
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 80vh;
}

.about-content {
    background: #f9f9f9;
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.btn-link {
    margin-top: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.btn-link .line {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
}

.about-image {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
}

/* Craftsmanship */
.craft-section {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.craft-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('assets/hero.jpg') no-repeat center center/cover;
    filter: brightness(0.4) sepia(0.2);
    z-index: -1;
    background-attachment: fixed;
}

.craft-content {
    color: #ffffff;
}

.craft-content h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.craft-content p {
    color: #ffffff;
    font-size: 1.2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 2rem;
    text-align: center;
    background: #ffffff;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    max-width: 800px;
    margin: 2rem auto;
    color: #333;
}

.quote-icon {
    font-size: 2rem;
    color: #eee;
}

/* Contact */
.contact-section {
    height: 70vh;
    border-top: 1px solid #eee;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    height: 100%;
}

.contact-info {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.social-links {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.2rem;
    color: #666;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--color-gold);
}

.map-wrapper {
    filter: grayscale(100%) invert(90%);
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #555;
}

.footer-info-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-contact {
    margin-bottom: 0;
    color: #666;
    font-size: 1rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0;
}

.footer-socials a {
    color: #888;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--color-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
}

.copyright {
    font-size: 0.8rem;
    color: #444;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--color-gold);
    padding: 3rem;
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}


.back-modal {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 100;
}

.back-modal:hover {
    color: var(--color-gold);
    transform: translateX(-5px);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #666;
    cursor: none;
    /* Let js handle or hover */
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #888;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    background: white;
    border: 1px solid #ddd;
    color: #1a1a1a;
    font-family: var(--font-body);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to right, #b8860b, #d4af37);
    border: none;
    color: black;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 1rem;
    transition: 0.3s;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* Product Detail Premium Layout */
.product-detail-modal .modal-content.premium-layout {
    max-width: 1200px;
    width: 95%;
    height: 85vh;
    padding: 0;
    background: #ffffff;
    border: 1px solid rgba(179, 139, 55, 0.3);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
}

.product-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    width: 100%;
    height: 100%;
}

/* Left Panel: Gallery */
.pd-gallery {
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    padding: 2rem;
}

.hero-image-container {
    width: 80%;
    aspect-ratio: 1/1;
    position: relative;
    border: 1px solid rgba(179, 139, 55, 0.2);
    /* Champagne border */
    padding: 10px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    /* Soft floating shadow */
    transition: transform 0.5s ease;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-image-container:hover img {
    transform: scale(1.5);
    /* Lens zoom effect */
    cursor: zoom-in;
}

/* Right Panel: Information */
.pd-details {
    padding: 3rem 4rem;
    overflow-y: auto;
    background: linear-gradient(to bottom, #ffffff, #fdfbf7);
    /* Pearl Ivory Hint */
}

/* Custom Scrollbar for details */
.pd-details::-webkit-scrollbar {
    width: 6px;
}

.pd-details::-webkit-scrollbar-thumb {
    background-color: rgba(179, 139, 55, 0.2);
    border-radius: 10px;
}

.pd-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(179, 139, 55, 0.2);
    padding-bottom: 1rem;
}

#pdTitle {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #1a1a1a;
    /* Charcoal */
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.design-no {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

.pd-description {
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 0.8s ease-out;
}

#pdDesc {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    font-weight: 300;
}

/* Tech Specs Card (Glassmorphism) */
.tech-specs-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(179, 139, 55, 0.3);
    /* Soft Gold Outline */
    border-radius: 8px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Platinum dividers */
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-family: 'Cinzel', serif;
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Craftsmanship */
.craftsmanship-block {
    margin-bottom: 3rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--color-gold);
}

.craftsmanship-block h4 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
}

.craftsmanship-block p {
    font-size: 0.95rem;
    font-style: italic;
    color: #666;
}

/* Actions */
.pd-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.shimmer-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #b38b37, #d4af37, #b38b37);
    background-size: 200%;
    color: white;
    border-radius: 2px;
    padding: 1rem 3rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    animation: shimmer 3s infinite linear;
}

.shimmer-btn:hover {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

@keyframes shimmer {
    0% {
        background-position: -200%;
    }

    100% {
        background-position: 200%;
    }
}

.btn-text-secondary {
    background: none;
    border: none;
    color: #666;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.btn-text-secondary:hover {
    color: var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Product Modal */
@media(max-width: 900px) {
    .product-wrapper {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .pd-gallery {
        padding: 2rem;
        height: 300px;
    }

    .hero-image-container {
        width: 200px;
    }

    .pd-details {
        padding: 2rem;
    }

    .product-detail-modal .modal-content.premium-layout {
        height: 100vh;
        width: 100%;
        border-radius: 0;
    }
}

/* Service Information Bar */
.service-bar {
    width: 100%;
    background-color: #ffffff;
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Centered */
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    animation: fadeIn 1.5s ease-out;
}

.service-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    border-right: 1px solid rgba(179, 139, 55, 0.2);
    /* Platinum/Gold faint line */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-item:last-child {
    border-right: none;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.service-item h5 {
    font-family: var(--font-body);
    /* Clean sans */
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    /* Charcoal */
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-item p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #888;
    /* Soft grey */
    margin: 0;
    line-height: 1.4;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 900px) {
    .split-gallery {
        flex-direction: column;
        height: auto;
    }

    .split-item {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .split-item img {
        height: 50vh;
        min-height: 300px;
    }

    /* Card Style for Mobile Captions - Overlay like Desktop */
    .split-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7), transparent);
        padding: 1.5rem 2rem;
        transform: none;
        opacity: 1;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-section {
        grid-template-columns: 1fr;
        height: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        height: auto;
        overflow-y: auto;
        max-height: 80vh;
    }

    .pd-image {
        height: 300px;
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Header Layout */
    .hero-top-elements {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 1rem;
    }

    /* Hide Custom Cursor on Mobile */
    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    .nav-socials {
        display: none;
    }

    .nav-center-logo {
        position: static;
        transform: none;
        order: 1;
        margin-bottom: 0.5rem;
    }

    .logo {
        order: 2;
        font-size: 1.2rem;
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }

    /* .hero-title display: none removed to show title on mobile */

    .hero-content {
        position: absolute;
        bottom: 5%;
        left: 0;
        width: 100%;
        padding: 0 1rem;
        margin-bottom: 0;
    }

    /* Service Bar Mobile */
    .service-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .service-item {
        border-right: none;
        padding: 1rem;
    }

    .footer-links {
        display: none;
    }
}

/* Animations */
@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 0.2s;
    transform: scale(0);
    /* Start hidden for pop */
}

/* Mobile adjustments for specific small screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        /* Better readability */
        padding: 0 1rem;
    }
}