/* ===================== VARIABLES ===================== */
:root {
    --teal: #004D4D;
    --terracotta: #8E2B15;
    --gold: #C6934B;
    --cream: #FDF9F2;
    --white: #ffffff;
    --text: #333333;
}
/* ===================== CONSISTENT SECTION SPACING ===================== */
.section, 
.about-premium, 
.vision-mission-section { 
    padding: 25px 0 !important; 
    scroll-margin-top: 70px;
    width: 100%;
}
.about-premium {
    padding-bottom: 35px !important; 
}

.vision-mission-section {
    padding-top: 35px !important;
}

/* Section Title spacing adjustment */
.section-title { 
    margin-bottom: 40px; 
    text-align: center; 
}

.title-shape {
    margin: 10px auto 30px; 
}

/* ===================== HERO SECTION ADJUSTMENT ===================== */
.hero { 
    padding: 60px 0 !important; 
}

/* ===================== CONTACT SECTION FIX ===================== */
#contact {
    padding-top: 70px !important;
}

/* ===================== MOBILE SPACING ===================== */
@media (max-width: 768px) {
    .section, .about-premium, .vision-mission-section { 
        padding: 50px 0 !important; 
    }
    .section-title { margin-bottom: 30px; }
}
/* ===================== RESET ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Poppins', sans-serif; 
    background-color: var(--white); 
    color: var(--text); 
    line-height: 1.6;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; }

/* ===================== CONTAINER ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===================== TOPBAR ===================== */
.topbar { background: #8E2B15C9; color: white; padding: 4px 0; font-size: 14px; }
.topbar-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.top-contact span { margin-right: 20px; }
.top-social a { color: white; margin-left: 15px; text-decoration: none; transition: 0.3s; font-size: 16px; }
.fb:hover { color: #1877F2; } 
.insta:hover { color: #E4405F; } 
.wa:hover { color: #25D366; } 
.pin:hover { color: #E60023; } 
.tw:hover { color: #1DA1F2; }

/* ===================== NAVBAR ===================== */
.navbar {
    background: white; 
    padding: 5px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.navbar.shrink { padding: 3px 0; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo img {
    height: 91px;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s;
}
.navbar.shrink .logo img { height: 50px; }
.logo-text {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--terracotta);
    font-size: 25px;
}
.nav-links { display: flex; list-style: none; align-items: center; flex-wrap: wrap; }
.nav-links li { margin-left: 30px; position: relative; }
.nav-links a { 
    text-decoration: none; 
    color: var(--teal); 
    font-weight: 600; 
    font-size: 14px; 
    letter-spacing: 0.5px;
    transition: 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* DROPDOWN */
.dropdown-content { 
    display: none; 
    position: absolute; 
    background: white; 
    min-width: 200px; 
    box-shadow: 0 8px 16px rgba(0,0,0,0.1); 
    padding: 10px 0; 
    top: 100%; 
    left: 0;
    list-style: none; 
    border-top: 3px solid var(--gold);
    z-index: 1000;
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content li a { 
    padding: 10px 20px; 
    display: block; 
    color: var(--text);
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
}
.dropdown-content li a:hover { background: var(--cream); color: var(--terracotta); }

/* Hamburger menu for mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    height: 3px;
    width: 25px;
    background: var(--terracotta);
    border-radius: 2px;
    transition: 0.3s;
}
/* Mobile nav toggle */
.nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: white;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 999;
}
/* Show hamburger on mobile */
@media (max-width: 992px) {
    .hamburger { display: flex; }
    .nav-links { display: none; }
}

/* ===================== CAROUSEL BANNER ===================== */
.carousel-banner {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: slideAnimation 15s infinite;
}
.slide-1 { background-image: url('../img/banner1.jpg'); animation-delay: 0s; }
.slide-2 { background-image: url('../img/banner2.jpeg'); animation-delay: 5s; }
.slide-3 { background-image: url('../img/banner3.jpg'); animation-delay: 10s; }

@keyframes slideAnimation {
    0% { opacity: 0; transform: scale(1); }
    10% { opacity: 1; }
    33% { opacity: 1; }
    43% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; }
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #8E2B1557; 
    display: flex;
    align-items: center;
    z-index: 2;
    text-align: center;
}
/* H1 Color & Style Fix */
.banner-branding h1 {
    font-size: clamp(31px, 6vw, 60px) !important;
    color: #FDF9F2 !important; /* Cream Color */
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-weight: 900;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.4);
}
.banner-divider {
    width: 100px;
    height: 3px;
    background: var(--terracotta);
    margin: 15px auto;
}
.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 15px;
}
.banner-subtext {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
    margin-bottom: 40px;
}
/* Button Fixed (Round Shape) */
.banner-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.btn-main {
    background: var(--gold) !important;
    color: white !important;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px !important; 
    transition: 0.3s ease;
    display: inline-block;
}
.btn-outline {
    border: 2px solid white !important;
    color: white !important;
    padding: 13px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px !important; 
    transition: 0.3s ease;
    display: inline-block;
}
.btn-main:hover { background: var(--terracotta) !important; transform: translateY(-5px); }
.btn-outline:hover { background: white !important; color: var(--teal) !important; transform: translateY(-5px); }

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .banner-branding h1 { font-size: 32px !important; }
    .banner-btns { flex-direction: column; align-items: center; gap: 15px; }
    .btn-main, .btn-outline { width: 80%; padding: 12px 20px; }
    .carousel-banner { height: 75vh; }
}
/* ===================== HERO  ===================== */
.hero { 
    background-color: #FDF9F2; /* Soft Cream */
    padding: 120px 0 100px; 
    overflow: hidden;
    position: relative;
}
.hero-grid { 
    display: grid; 
    grid-template-columns: 1.1fr 1fr; 
    gap: 80px; 
    align-items: center; 
}
/* Text Styles */
.hero-eyebrow {
    display: block;
    color: #450200bf;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 15px;
}
.hero-text h1 { 
    font-size: clamp(40px, 5vw, 60px); 
    color: #8E2B15CF; 
    line-height: 1.1; 
    margin-bottom: 25px; 
    font-weight: 900;
}

.hero-text .highlight {
    color: #030D0E9C;
    position: relative;
}

.hero-text p { 
    font-size: 16px; 
    color: #555; 
    margin-bottom: 40px; 
    max-width: 500px;
    line-height: 1.7;
}

/* Button & Link */
.hero-action { display: flex; align-items: center; gap: 30px; }

.btn-hero { 
    padding: 18px 45px; 
    background: var(--gold); 
    color: white; 
    text-decoration: none; 
    font-weight: 700; 
    border-radius: 50px; /* Round Button */
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.2);
}

.btn-hero:hover {
    background: var(--terracotta); 
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(204, 78, 56, 0.3);
}

.btn-link {
    color: var(--teal);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s;
}

.btn-link:hover { color: var(--gold); }

/* Visual Gallery - Creative Overlay */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-frame {
    width: 320px;
    height: 420px;
    z-index: 2;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 20px 20px 50px rgba(0,0,0,0.15);
}

.secondary-frame {
    position: absolute;
    top: -30px;
    right: 0;
    width: 200px;
    height: 250px;
    z-index: 3;
    overflow: hidden;
    border-radius: 10px;
    border: 5px solid white;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.1);
}

.accent-frame {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 180px;
    height: 180px;
    z-index: 4;
    overflow: hidden;
    border-radius: 10px;
    border: 5px solid white;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.1);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease-in-out;
}

.hero-visual:hover img {
    transform: scale(1.1);
}

/* Background Ornament */
.hero-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--gold);
    opacity: 0.1;
    filter: blur(50px);
    border-radius: 50%;
    z-index: 1;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .hero-text p { margin: 0 auto 40px; }
    .hero-action { justify-content: center; }
    .hero-visual { height: 400px; margin-top: 40px; }
    .main-frame { width: 240px; height: 320px; }
    .secondary-frame { width: 140px; height: 180px; }
    .accent-frame { width: 120px; height: 120px; }
}
/* ===================== SECTIONS ===================== */
.section { padding: 100px 0; scroll-margin-top: 100px; }
.section-title { margin-bottom: 50px; text-align: center; }
.section-title h2 { font-size: 36px; color: var(--terracotta); letter-spacing: 1.5px; }
.divider { width: 70px; height: 4px; background: var(--gold); margin: 15px auto 0; }
.bg-cream { background: var(--cream); }

/* ===================== ABOUT SECTION ===================== */
.about-premium {
    padding: 70px 0;
    background: #ffffff;
    background-image: radial-gradient(#ececec 0.8px, transparent 0.8px);
    background-size: 30px 30px;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title h2 {
    font-size: 36px;
    color: #8E2B15DE;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.eyebrow {
    display: block;
    color: #004D4DC9;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.title-shape {
    width: 60px;
    height: 3px;
    background: var(--terracotta);
    margin: 15px auto 60px;
}

/* Image & Frame Decoration */
.image-box {
    position: relative;
    padding: 15px;
}

.frame-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 10px solid var(--gold);
    z-index: 1;
    opacity: 0.2; 
}

.refined-img {
    position: relative;
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

/* Intro Grid Layout */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* Content Styling */
.premium-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 20px;
    line-height: 1.2;
}

.accent-text { color: var(--terracotta); }

.drop-cap {
    float: left;
    font-size: 50px;
    line-height: 40px;
    font-weight: 800;
    padding-right: 10px;
    color: var(--terracotta);
    font-family: 'Playfair Display', serif;
}

.intro-p {
    font-size: 16.5px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.sub-p {
    font-size: 15px;
    color: #666;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin-bottom: 35px;
}

/* Luxury Features Grid */
.luxury-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.luxury-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fdf9f2; /* Light cream background */
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f2e9d8;
    transition: 0.3s;
}

.luxury-item:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.luxury-icon { color: var(--terracotta); font-size: 20px; }
.luxury-text strong { display: block; font-size: 13px; color: var(--teal); text-transform: uppercase; }
.luxury-text span { font-size: 12px; color: #777; }

/* Horizontal Mini Cards Row */
.journey-flow-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.flow-card-mini {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f2f2f2;
    transition: 0.4s ease;
}

.flow-card-mini:hover { transform: translateY(-10px); border-color: var(--gold); }

.mini-img-wrap { overflow: hidden; border-radius: 8px; margin-bottom: 15px; }
.mini-img-wrap img { width: 100%; height: 180px; object-fit: cover; transition: 0.6s; }
.flow-card-mini:hover img { transform: scale(1.1); }

.mini-content h4 { color: var(--teal); font-size: 19px; margin-bottom: 10px; font-weight: 700; }
.mini-content p { font-size: 14px; color: #666; line-height: 1.6; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-intro-grid, .journey-flow-compact { grid-template-columns: 1fr; }
    .refined-img { height: 350px; }
}
/* ===================== PREMIUM VISION & MISSION SECTION ===================== */
.vision-mission-section {
    padding: 70px 0 !important;
    background-color: #FDF9F2; /* Subtle Cream Background */
    position: relative;
    overflow: hidden;
}

/* Background Decoration - Optional (Adds a subtle artistic touch) */
.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png'); /* Light texture */
    pointer-events: none;
}

/* Heading Styling */
.vision-mission-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.vision-mission-section .eyebrow {
    color: var(--terracotta);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.vision-mission-section h2 {
    font-size: 36px;
    color: var(--teal);
    font-family: 'Playfair Display', serif;
}

.vision-mission-section .title-shape {
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Grid Layout */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Attractive Card Styling */
.vm-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column; /* Stacked for better focus */
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

/* Bottom Border Accent */
.vm-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--terracotta);
    transition: 0.4s;
    transform: translateX(-50%);
    border-radius: 0 0 20px 20px;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(142, 43, 21, 0.1);
}

.vm-card:hover::after {
    width: 100%;
}

/* Floating Icon Styling */
.vm-icon {
    background: #8E2B15BD;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(142, 43, 21, 0.2);
    transition: 0.4s;
}

.vm-icon i {
    font-size: 30px;
    color: #ffffff;
}

.vm-card:hover .vm-icon {
    transform: rotateY(360deg);
    background: var(--teal);
}

/* Text Content */
.vm-content h3 {
    font-size: 26px;
    color: var(--teal);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.vm-content p {
    color: #555;
    line-height: 1.8;
    font-size: 15.5px;
    margin: 0;
    text-align: justify;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .vision-mission-section h2 {
        font-size: 28px;
    }

    .vm-card {
        padding: 30px 20px;
    }
}

/* ===================== PREMIUM PRODUCTS CSS ===================== */
#products {
    padding: 70px 0 !important;
    background-color: #ffffff;
}

.product-scroll, .gallery-scroll {
    display: flex !important;
    overflow-x: hidden !important; 
    white-space: nowrap !important;
    gap: 30px;
    padding: 20px 0;
    scroll-behavior: auto !important; 
}

.product-card, .gallery-card {
    flex: 0 0 300px !important; 
    display: inline-block;
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* ===================== AUTO SCROLL PRODUCT FIX ===================== */
.product-scroll {
    display: flex;
    overflow-x: hidden;
    gap: 30px;
    padding: 30px 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    white-space: nowrap;
}
.product-scroll:active {
    cursor: grabbing;
}
.product-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.product-card {
    flex: 0 0 auto !important;; /* Card size marama iruka */
    width: 300px;
}
/* Product Card Styling */
.product-card {
    min-width: 300px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #f1f1f1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Image Wrapper and Overlay */
.product-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 77, 77, 0.7); /* Teal overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.view-btn {
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Product Info */
.product-info {
    padding: 20px;
    text-align: center;
}

.product-info .category {
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-info h3 {
    font-size: 20px;
    color: var(--teal);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .product-card {
        min-width: 260px;
    }
    .product-img-wrapper {
        height: 250px;
    }
}
/* ===================== GALLERY ===================== */
.gallery-scroll { display: flex; gap: 20px; overflow-x: hidden; padding: 20px 0; scroll-behavior: smooth; }
.gallery-card { min-width: 300px; height: 250px; position: relative; border-radius: 12px; overflow: hidden; flex-shrink: 0; box-shadow: 0 10px 25px rgba(0,0,0,0.1); transition: transform 0.4s, box-shadow 0.4s; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-card:hover { transform: scale(1.07); box-shadow: 0 15px 35px rgba(0,0,0,0.2); }

.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,77,77,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.4s; border-radius: 12px; }
.gallery-card:hover .overlay { opacity: 1; }
.overlay span { color: white; font-weight: 600; letter-spacing: 2px; padding: 12px 25px; border: 1px solid white; border-radius: 6px; text-align: center; }

/* ===================== LUXURY TESTIMONIALS CSS ===================== */
.testimonials-luxury {
    padding: 70px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.testi-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    position: relative;
    z-index: 5;

}

/* Glass Card Style */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 60px 30px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.glass-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(184, 134, 11, 0.15);
}

/* Floating Image */
.user-img-box {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
}

.user-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.quote-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--terracotta);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Content Styles */
.rating {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 20px;
}

.glass-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    text-align: justify;
}

.client-meta h4 {
    color: var(--teal);
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}

.client-meta span {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Highlight Middle Card */
.active-card {
    border-color: var(--gold);
    background: #fff;
    transform: scale(1.05);
}

/* Background Decorations */
.bg-shape-1 {
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: var(--gold);
    opacity: 0.05;
    border-radius: 50%;
}

.bg-shape-2 {
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: var(--terracotta);
    opacity: 0.05;
    border-radius: 50%;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .testi-wrapper { grid-template-columns: 1fr; gap: 80px; }
    .active-card { transform: scale(1); }
}
/* ===================== REFINED CONTACT CSS ===================== */
.contact-refined {
    padding: 100px 0;
    background-color: #fdfaf5; /* Light cream background */
    position: relative;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 50px;
}

/* Left Side Styling */
.contact-details-box {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #f2e9d8;
}

.info-card {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: #004d4d; /* Teal color */
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-text h4 {
    color: #004d4d;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 700;
}

.info-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Map Frame Style */
.small-map-frame {
    margin: 15px 0;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-sub-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.info-card-small {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
    font-size: 15px;
    font-weight: 500;
}

.s-icon {
    color: #c6934b; /* Gold color */
    font-size: 16px;
}

/* Form Side Styling */
.contact-form-premium {
    background: #fff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid #f2e9d8;
}

.form-header-inner {
    margin-bottom: 25px;
}

.form-header-inner h3 {
    font-size: 24px;
    color: #004d4d;
    margin-bottom: 8px;
}

.form-header-inner p {
    font-size: 14px;
    color: #888;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1.5px solid #eee;
    background: #fafafa;
    outline: none;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #c6934b;
    background: #fff;
    box-shadow: 0 5px 15px rgba(198, 147, 75, 0.1);
}

/* Submit Button */
.btn-submit-modern {
    width: 100%;
    padding: 16px;
    background: #004d4d;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.4s ease;
}

.btn-submit-modern:hover {
    background: #bf4e33; /* Terracotta on hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(191, 78, 51, 0.2);
}

/* Responsive Logic */
@media (max-width: 992px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
    }
    .contact-form-premium {
        padding: 30px;
    }
    .contact-details-box {
        padding: 25px;
    }
}
/* ===================== PREMIUM FOOTER CSS ===================== */
.footer-premium {
    background: #004D4D; 
    color: #ffffff;
    padding: 25px 0 5px;
    font-family: 'Poppins', sans-serif;
}

/* Top Branding Section */
.footer-top-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 12px;
}
.footer-main-logo {
    height: 80px;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}
.brand-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #C6934B; /* Gold */
    margin: 0;
}
.brand-info p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 22px;
}

/* Main Grid */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 22px;
}

.footer-column h3 {
    font-size: 18px;
    color: #C6934B;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: #bf4e33; /* Terracotta */
}

/* Contact Info */
.footer-contact-info p {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
.footer-contact-info i { color: #C6934B; margin-top: 4px; }

/* Social Icons Section */
.footer-social-connect {
    margin-top: 10px;
  padding-top: 5px;
    border-top: 1px dashed rgba(255,255,255,0.1);
}

.social-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #C6934B;
    margin-bottom: 15px;
    font-weight: 600;
}
/* Social Icons Base Style */
.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 18px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Original Brand Colors on Hover */

/* Facebook */
.footer-social-icons a.fb:hover {
    background: #1877F2 !important;
    border-color: #1877F2;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

/* Instagram */
.footer-social-icons a.insta:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(214, 36, 159, 0.4);
}

/* WhatsApp */
.footer-social-icons a.wa:hover {
    background: #25D366 !important;
    border-color: #25D366;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* YouTube */
.footer-social-icons a.yt:hover {
    background: #FF0000 !important;
    border-color: #FF0000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* Icon rotation on hover */
.footer-social-icons a:hover {
    color: #fff !important;
}

/* Quick Links */
.footer-nav { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 12px; }
.footer-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}
.footer-nav a:hover { color: #C6934B; padding-left: 5px; }

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 5px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-main-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-column h3::after { left: 50%; transform: translateX(-50%); }
    .footer-contact-info p, .footer-social-icons { justify-content: center; }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse-wa 2s infinite;
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background: #333;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.whatsapp-float:hover .wa-tooltip { visibility: visible; opacity: 1; }

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Back to Top */
#backToTop {
    display: none;
    position: fixed;
    bottom: 115px;
    right: 48px;
    z-index: 99;
    background-color: #008080; /* Teal color */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

/* ================= MOBILE NAV FIX ================= */

@media (max-width: 992px){

/* Hide desktop nav */
.nav-links{
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Show when active */
.nav-links.mobile-active{
    display: flex;
}

/* Center menu items */
.nav-links li{
    margin: 12px 0;
    text-align: center;
}

/* Dropdown fix */
.dropdown-content{
    position: relative;
    box-shadow: none;
    border-top: none;
}

/* Hamburger visible */
.hamburger{
    display: flex;
}

/* Logo resize */
.logo img{
    height: 55px !important;
}

.logo-text{
    font-size: 16px;
}

/* ================= TOPBAR ================= */
.topbar-flex{
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.top-contact span{
    display: block;
    margin: 4px 0;
}

.top-social{
    margin-top: 6px;
}

/* ================= HERO ================= */
.hero-grid{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
}

.hero-text p{
    margin: 0 auto 30px;
}

.hero-action{
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.hero-visual{
    height: auto;
}

/* Hide extra layered frames for clean mobile */
.secondary-frame,
.accent-frame,
.hero-blob{
    display: none;
}

.main-frame{
    width: 90%;
    height: 350px;
    margin: auto;
}

/* ================= CAROUSEL ================= */
.carousel-banner{
    height: 70vh;
}

.banner-btns{
    flex-direction: column;
    gap: 15px;
}

.btn-main,
.btn-outline{
    width: 80%;
}

/* ================= ABOUT ================= */
.about-intro-grid{
    grid-template-columns: 1fr;
    gap: 40px;
}

.journey-flow-compact{
    grid-template-columns: 1fr;
}

.luxury-features{
    grid-template-columns: 1fr;
}

/* ================= VISION MISSION ================= */
.vm-grid{
    grid-template-columns: 1fr;
}

/* ================= PRODUCTS ================= */
.product-scroll{
    overflow-x: auto;
    scroll-behavior: smooth;
}

.product-card{
    min-width: 260px;
}

/* ================= GALLERY ================= */
.gallery-scroll{
    overflow-x: auto;
}

.gallery-card{
    min-width: 250px;
}

/* ================= TESTIMONIALS ================= */
.testi-wrapper{
    flex-direction: column;
    gap: 30px;
}

/* ================= CONTACT ================= */
.contact-grid-modern{
    grid-template-columns: 1fr;
    gap: 40px;
}

.small-map-frame iframe{
    height: 200px;
}

/* ================= FOOTER ================= */
.footer-top-brand{
    flex-direction: column;
    text-align: center;
    gap: 15px;
}

.footer-main-grid{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
}

.footer-social-icons{
    justify-content: center;
}

.footer-contact-info p{
    text-align: center;
}

/* ================= GENERAL FIX ================= */
body{
    overflow-x: hidden;
}

}

/* ================= EXTRA SMALL DEVICES ================= */
@media (max-width: 576px){

.banner-branding h1{
    font-size: 26px !important;
}

.hero-text h1{
    font-size: 28px;
}

.section-title h2{
    font-size: 26px;
}

.btn-hero{
    width: 85%;
    padding: 14px 20px;
}

}

@media (max-width: 992px){

/* Navbar container */
.nav-flex{
    position: relative;
}

/* Logo size fix */
.logo img{
    height: 50px;
}

.logo-text{
    font-size: 16px;
}

/* Hamburger visible */
.hamburger{
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span{
    width: 25px;
    height: 3px;
    background: #222;
    transition: 0.3s;
}

/* Mobile menu hidden by default */
.nav-links{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    gap: 0;
    display: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    animation: slideDown 0.3s ease;
}

/* Show when active */
.nav-links.mobile-active{
    display: flex;
}

/* Menu items spacing */
.nav-links li{
    width: 100%;
    padding: 12px 0;
}

/* Links */
.nav-links li a{
    display: block;
    width: 100%;
    font-size: 15px;
}

/* ================= DROPDOWN FIX ================= */

.dropdown-content{
    position: static;
    display: none;
    background: #f9f9f9;
    box-shadow: none;
    padding: 10px 0;
}

.dropdown-content li{
    padding: 8px 0;
}

.dropdown.active .dropdown-content{
    display: block;
}

/* Remove hover dropdown on mobile */
.dropdown:hover .dropdown-content{
    display: none;
}

/* Smooth animation */
@keyframes slideDown{
    from{
        opacity: 0;
        transform: translateY(-10px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

}


@media (min-width: 993px){
.dropdown:hover .dropdown-content{
    display: block;
}
}

.footer-banner {
  background-image: url(../img/banner1.JPG);
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  z-index: 0;
}
.footer-banner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #404747e3;
  content: '';
  z-index: -1;
}

/* ===== MOBILE NAV FIX ===== */
@media (max-width: 768px){

/* Reduce header padding */
.main-header-area{
    padding: 10px 0;
}


.nav-flex{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/* Logo smaller */
.logo img{
    height: 60px;
}


/* Title smaller */
.logo-text{
    font-size: 15px;
    line-height: 1;
    margin-left: 8px;
}

/* Hamburger align right */
.hamburger{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile menu full width */
.nav-links{
    width: 100%;
    left: 0;
    top: 100%;
}

/* Remove extra spacing */
.nav-links li{
    padding: 10px 0;
}

}
@media (max-width: 768px){

.header-top_area .row{
    flex-direction: column;
    text-align: center;
}

.short_contact_list ul li{
    display: block;
    margin: 5px 0;
}

.social_media_links{
    margin-top: 5px;
}
.fa-chevron-down::before {
  content: "\f078";
  display: none;
}
}