* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden; /* hidden se badal kar overflow-x: hidden kiya */
    background-color: #000; /* Taaki smooth transition lage */
}

/* Progress Bar Styling */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: #e6e6e1a7; /* Beige Color */
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.navbar.scrolled ~ .progress-container, 
body.is-scrolled .progress-container {
    opacity: 0;
    visibility: hidden;
}

.progress-bar {
    height: 2px;
    background: #8b5e3c94;
    width: 0%; /* Initial width */
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth jump effect */
}

/* Navbar Base State */
.navbar {
    position: fixed;
    top: 30px; /* Initial position */
    left: 0;
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    transition: all 0.4s ease-in-out;
}

/* Jab scroll ho tab ye class trigger hogi */
.navbar.scrolled {
    top: 0px; /* Progress bar ke theek niche */
    background: rgba(255, 255, 255, 0.9); /* Slight white background */
    padding: 15px 40px;
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-logo {
    height: 80px;
    transition: height 0.4s ease;
}

.navbar.scrolled .main-logo {
    height: 50px; /* Scroll hone par logo chota ho jayega */
}

/* Menu Text and Icon */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white; /* Shuruat mein white */
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 2px;
    transition: color 0.4s ease;
}

.navbar.scrolled .nav-menu {
    color: #333; /* Scroll hone par dark color */
}

.menu-icon div {
    width: 25px;
    height: 2px;
    background-color: currentColor;
    margin: 4px 0;
}

.main-logo {
    height: 80px; 
    width: auto;
    filter: drop-shadow(0px 2px 10px rgba(0,0,0,0.3)); 
}

/* Fullscreen Overlay Style */
.fullscreen-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: #ffffff; /* Pure White premium background */
    z-index: 9999; /* Sabse upar dikhega */
    transform: translateY(-100%); /* Shuruat me screen ke upar chhupa rahega */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); /* Luxury smooth slide effect */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Jab active class add hogi tab menu niche aayega */
.fullscreen-menu-overlay.open {
    transform: translateY(0);
}

/* Close Cross Button */
.close-menu-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    font-size: 3rem;
    font-weight: 200;
    cursor: pointer;
    color: #000000;
    transition: transform 0.3s ease;
}

.close-menu-btn:hover {
    transform: rotate(90deg); /* Hover par elegant rotate */
}

/* Content Container Alignment */
.overlay-content-wrapper {
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
}

/* Top Small Navigation Layout */
.overlay-top-utility {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
    margin-bottom: 60px;
}

.search-box i {
    font-size: 1.2rem;
    color: #555555;
    cursor: pointer;
}

.utility-links {
    display: flex;
    gap: 25px;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: 400;
}

.utility-links a, .lang-selector {
    color: #777777;
    text-decoration: none;
    transition: color 0.3s ease;
}

.utility-links a:hover, .lang-selector:hover {
    color: #000000;
}

/* Main Bold Row Menu links (Jesa image m h) */
.overlay-main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: #333333;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item sup {
    font-size: 0.55rem;
}

/* Premium underline animation on hover */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000000;
    transition: width 0.4s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item:hover {
    color: #000000;
}

/* Responsive configurations for small screens */
@media (max-width: 992px) {
    .overlay-main-nav {
        flex-direction: column; /* Mobile par list stacked ho jayegi */
        align-items: flex-start;
        gap: 25px;
    }
    .overlay-top-utility {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }
    .nav-item {
        font-size: 1.4rem;
    }
}

/* Slider Styling */
.hero-slider {
    position: relative; /* Container ko relative rakhna zaroori hai */
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background: #ffffff; 
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh; 
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.slide.active {
    opacity: 1; /* Sirf active slide dikhegi */
    z-index: 10;
}

.hero-content h1 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 10px;
    letter-spacing: 2px;
}

/*zoom-section*/
.zoom-section {
    margin-top: 0 !important;
    height: 80vh; /* Scroll ki jagah banane ke liye height zyada rakhi hai */
    position: relative;
    background-color: #000;
}

.zoom-container {
    position: sticky;
    top: 0;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Text left side mein jaisa image_a19be1.jpg mein hai */
}

.zoom-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.5); /* Shuruat mein zoom-in rahega */
    transition: transform 0.1s ease-out; /* Scroll smoothness ke liye */
    z-index: 1;
}

.zoom-content {
    position: relative;
    z-index: 2;
    padding-left: 10%;
    color: white;
    max-width: 600px;
}

.zoom-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.discover-btn {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.hero-showroom {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Image ko screen se bahar stretch hone se rokega */
}

/* Background Wrapper */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Cinematic Zoom & Slow Motion Transition */
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 12 seconds ka smooth loop: Zoom aur halka sa movement scale */
    animation: luxuryCinematic 16s ease-in-out infinite alternate;
}

/* Cinema Animation Logic */
@keyframes luxuryCinematic {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.07) translate(-10px, -5px); /* Smooth subtle shift */
    }
    100% {
        transform: scale(1.15) translate(5px, 5px); /* Ultra slow luxury zoom */
    }
}

/* Cinematic Dark Overlay (Rich Look ke liye) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay jo text ko clear dikhayega aur luxury feel dega */
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

/* Typography Content */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    /* Text par fade-in animation code khulte hi */
    animation: fadeInText 2s ease-out forwards;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography Formatting */
.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 7.5rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.6); /* Text ko depth dene ke liye */
}

.hero-location {
    font-size: 1.8rem;
    font-weight: 200;
    letter-spacing: 0.15em;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title { font-size: 5rem; }
    .hero-subtitle { letter-spacing: 0.3em; font-size: 0.9rem; }
    .hero-location { font-size: 1.4rem; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 3.2rem; }
    .hero-subtitle { letter-spacing: 0.2em; font-size: 0.75rem; }
    .hero-location { font-size: 1.1rem; }
}

/* Tableware Specific Section Styles */
.tableware-section {
    position: relative;
    width: 100%;
    height: 80vh; /* Agar isko poori screen jitna bada rkhna hai */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: #000;
}

/* Is section ke text ko image ke andaz me uniquely style karne ke liye */
.tableware-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.4;
    text-shadow: 0px 2px 15px rgba(0, 0, 0, 0.8); /* Text readability badhane ke liye */
    padding: 0 20px;
}

.tableware-title sup {
    font-size: 0.8rem;
    vertical-align: super;
    margin-left: 2px;
}

/* Responsive adjustments for Tableware Title */
@media (max-width: 992px) {
    .tableware-title {
        font-size: 1.6rem;
        letter-spacing: 0.12em;
    }
}

@media (max-width: 576px) {
    .tableware-title {
        font-size: 1.1rem;
        letter-spacing: 0.08em;
        line-height: 1.6;
    }   
}
/* Zerocare Specific Section Styles */
.zerocare-section {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: #f7f7f7; /* Light base for light stone image */
}

/* Specific Light Overlay for Zerocare to preserve marble texture */
.zerocare-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.15) 0%, rgba(255,255,255,0.05) 60%, rgba(0,0,0,0.2) 100%);
}

/* Content Area Styling for Zerocare (Centered text) */
.zerocare-content {
    color: #fff; /* White text on light marble works due to overlay and texture */
}

/* SVG Logo Styling */
.zerocare-logo-svg {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6rem;
    height: 6rem;
    z-index: 2; /* Content se nache par overlay se upar */
    pointer-events: none; /* Clicking interaction skip karega */
}

/* Typography for Zerocare */
.zerocare-title {
    font-family: 'Cinzel', serif; /* Matching luxury font */
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5); /* Boost readability */
}

.zerocare-title sup {
    font-size: 0.8rem;
    margin-left: 3px;
}

.zerocare-subtitle {
    font-size: 1rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.zerocare-description {
    font-size: 1.6rem;
    font-weight: 200;
    line-height: 1.5;
    max-width: 800px;
    margin-bottom: 40px;
}

.zerocare-description sup {
    font-size: 0.7rem;
}

/* Link Button Styling (DISCOVER MORE) */
.zerocare-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #fff;
    text-decoration: none;
    border: 1px solid transparent; /* Hidden by default */
    padding: 10px 0;
    transition: border-bottom-color 0.4s ease; /* Hover effect */
}

.zerocare-button:hover {
    border-bottom-color: #fff;
}

/* Responsive adjustments for Zerocare */
@media (max-width: 992px) {
    .zerocare-title { font-size: 3rem; }
    .zerocare-description { font-size: 1.3rem; }
    .zerocare-logo-svg { width: 4rem; height: 4rem; }
}

@media (max-width: 576px) {
    .zerocare-title { font-size: 2rem; }
    .zerocare-subtitle { font-size: 0.8rem; letter-spacing: 0.3em; }
    .zerocare-description { font-size: 1.1rem; max-width: 100%; padding: 0 10px; }
    .zerocare-button { font-size: 0.9rem; letter-spacing: 0.2em; }
    .zerocare-logo-svg { width: 3rem; height: 3rem; top: 25%; }
}

/* Tech Discovery Section Styles */
.tech-discovery-section {
    background-color: #000000; /* Pure Black Background */
    width: 100%;
    padding: 100px 20px; /* Top aur bottom me accha gap */
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

/* Header Subtitle */
.tech-section-title {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.35em; /* Spaced out text jesa image me hai */
    margin-bottom: 70px; /* Title aur logos ke beech ka gap */
    text-transform: uppercase;
    opacity: 0.9;
}

/* Logos Grid System */
.tech-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; /* Mobile par automatic adjust hone ke liye */
}

/* Individual Logo Box */
.tech-item {
    flex: 1;
    min-width: 250px; /* Mobile par layout tootne se bachayega */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.75; /* Default me thoda elegant dark look */
    cursor: pointer;
}

/* Hover Effect */
.tech-item:hover {
    opacity: 1; /* Mouse le jane par full bright ho jayega */
    transform: translateY(-3px); /* Halka sa upar uthega */
}

/* Typography Inside Logo */
.tech-logo-wrapper {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem; /* Shandaar bade logos */
    font-weight: 300;
    letter-spacing: -0.03em;
}

/* Circle 'A' Icon Style */
.brand-icon {
    font-size: 2.6rem;
    margin-right: 12px;
    font-weight: 200;
    display: inline-block;
    transform: translateY(-2px);
}

.brand-text sup {
    font-size: 0.8rem;
    vertical-align: super;
    margin-left: 2px;
}

/* Responsive Setup for Tablets and Mobile Screens */
@media (max-width: 992px) {
    .tech-logo-wrapper {
        font-size: 1.8rem;
    }
    .brand-icon {
        font-size: 2.2rem;
    }
    .tech-section-title {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .tech-grid {
        flex-direction: column; /* Mobile par ek ke niche ek dikhenge */
        gap: 50px;
    }
    .tech-section-title {
        font-size: 0.85rem;
        letter-spacing: 0.25em;
    }
}


/* fair and Events Section Main Container */
.events-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: #000; /* Pure black baseline during fade */
}

/* Slideshow Wrapper Box */
.slideshow-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Individual Slides Base Style */
.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0; /* Default me sab hidden rahengi */
    
    /* Crossfade timing handler: Kul milakar 15 seconds ka loop hai */
    animation: luxuryCrossfade 15s linear infinite;
}

/* Animation Timings Delay (Taaki ek ke baad ek aayein) */
.img-1 {
    animation-delay: 0s;
}
.img-2 {
    animation-delay: 5s; /* 5 seconds baad shuru hogi */
}
.img-3 {
    animation-delay: 10s; /* 10 seconds baad shuru hogi */
}

/* Luxury Crossfade + Smooth Ken Burns Zoom Logic */
@keyframes luxuryCrossfade {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    /* 1.5 seconds me smoothly fade-in hogi */
    10% {
        opacity: 1;
    }
    /* 4 seconds tak full dikhegi aur dheere se zoom hogi */
    33.33% {
        opacity: 1;
    }
    /* Agli slide aate hi ye fade-out ho jayegi */
    43.33% {
        opacity: 0;
        transform: scale(1.08); /* Zoom effect baseline */
    }
    100% {
        opacity: 0;
    }
}

/* Bright glass finish background ke liye blend overlay */
.events-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Content ke neeche aur images ke upar */
}

/* Typography & Content Layout (Pehle jesa same) */
.events-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #ffffff;
    display: block;
    margin-bottom: 15px;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}

.events-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 35px;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.6);
}

/* Plus Button Code */
.events-plus-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
}

.plus-icon {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: #000000;
    transform: translateY(-1px);
}

.events-plus-btn:hover {
    transform: scale(1.12);
    background-color: #f7f7f7;
}

/* Responsiveness Settings */
@media (max-width: 992px) {
    .events-title { font-size: 2.6rem; }
    .events-subtitle { font-size: 0.8rem; }
}

@media (max-width: 576px) {
    .events-title { font-size: 1.8rem; margin-bottom: 25px; }
    .events-subtitle { font-size: 0.75rem; letter-spacing: 0.3em; }
    .events-plus-btn { width: 46px; height: 46px; }
    .plus-icon { font-size: 1.5rem; }
}

/* Font Awesome Icons support ke liye baseline (Social icons design match karne ke liye) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Luxury Footer Base Settings */
.luxury-footer {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    padding: 80px 40px 0px 40px; /* Right button edge touch baseline layout */
    border-top: 1px solid #111111;
    width: 100%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.5fr 1.5fr 2fr; /* Perfect balanced column system */
    gap: 40px;
    align-items: start;
}

/* Individual Column Reset */
.footer-col {
    font-size: 0.8rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-weight: 400;
    color: #cccccc;
}

.footer-col strong {
    color: #ffffff;
}

.footer-col a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

/* Column 1: Brand Typography styling */
.brand-identity {
    text-align: left;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
}

.footer-logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    display: block;
    margin-top: 5px;
    padding-left: 4px;
    color: #aaaaaa;
}

/* Column 4: Links Menu list reset */
.quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 15px;
}

.quick-links a {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

/* Column 5: Social & Subscription Layout */
.actions-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 160px; /* Separates the social media row from the bottom CTA box */
    align-items: flex-start;
}

.social-wrapper {
    margin-bottom: 30px;
}

.follow-us-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #ffffff;
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 12px;
}

/* White Circle Social Buttons */
.social-icons a {
    width: 36px;
    height: 36px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Premium Taupe Newsletter Button */
.newsletter-cta {
    background-color: #a39382; /* Luxury muted gold/taupe accent shade */
    color: #ffffff !important;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    padding: 22px 30px;
    width: 400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.newsletter-cta:hover {
    background-color: #928271; /* Subtle darkening on focus */
}

.arrow-icon {
    font-size: 0.9rem;
    margin-left: 15px;
}

/* Smart Grid Breakpoints for Responsiveness */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 1.5fr 1.5fr; /* 3 Columns layout on smaller desktops */
    }
    .actions-col {
        grid-column: span 3;
        flex-direction: row;
        align-items: center;
        min-height: auto;
        margin-top: 20px;
        border-top: 1px solid #222;
        padding-top: 30px;
    }
    .newsletter-cta {
        width: auto;
        min-width: 320px;
    }
}

@media (max-width: 768px) {
    .luxury-footer {
        padding: 50px 20px 0px 20px;
    }
    .footer-container {
        grid-template-columns: 1fr; /* 1 Full width stacked column on Mobile devices */
        gap: 35px;
    }
    .actions-col {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .newsletter-cta {
        width: 100%; /* Spans full horizontal scale on phone screens */
    }
}