:root {
    --primary-color: #171f1b;
    /* Rich Architectural Obsidian Green */
    --primary-light: #23332c;
    --accent-color: #c8963e;
    /* High-contrast Luxury Gold */
    --accent-hover: #ddaa55;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #faf8f5;
    /* Warm Alabaster Stone */
    --bg-white: #ffffff;
    --font-heading: 'Cinzel', 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', 'Josefin Sans', sans-serif;
    --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    -webkit-text-size-adjust: 100%;
    position: relative;
    left: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    left: 0 !important;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 45px;
    position: relative;
    display: inline-block;
}

.text-center .section-title {
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    width: 100px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(200, 150, 62, 0.25);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 150, 62, 0.4);
}

.btn-large {
    padding: 18px 46px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-transform: uppercase;
}

.hero-price-action .btn-primary {
    background: linear-gradient(135deg, #dfa94b, #b8860b);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(200, 150, 62, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-price-action .btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    background: linear-gradient(135deg, #e8b65b, #c9961a);
    box-shadow: 0 16px 40px rgba(200, 150, 62, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* UI UX PRO MAX: Luxury Interactive Hover Fill-Up Sweep Animation */
.btn-know-more,
.btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--text-main);
    padding: 13px 32px;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    background-color: transparent;
    transition: color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-know-more::before,
.btn-outline::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #a87e35 100%);
    z-index: -1;
    transition: top 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-know-more:hover,
.btn-outline:hover {
    color: #ffffff !important;
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.35);
}

.btn-know-more:hover::before,
.btn-outline:hover::before {
    top: 0;
}

.btn-know-more .know-arrow,
.btn-outline .know-arrow {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-know-more:hover .know-arrow,
.btn-outline:hover .know-arrow {
    transform: translateX(6px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    /* background-color: rgba(255, 255, 255, 0.95); */
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-fast);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1480px;
    width: 100%;
    margin: 0 auto;
    padding: 8px 40px;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 48px;
    padding-right: 15px;
    flex-shrink: 0;
}

.logo img {
    height: 115px;
    width: 115px;
    object-fit: cover;
    border-radius: 50%;
    background-color: transparent;
    transform: scale(1.35);
    clip-path: circle(37% at 50% 50%);
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.38);
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-right: 40px;
    margin-left: 10px;
}

.nav-container .btn-quote {
    margin-left: 36px !important;
    flex-shrink: 0;
}

.nav-links a {
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.96rem;
    letter-spacing: 1.3px;
    position: relative;
    color: #1e293b;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.nav-separator {
    color: #cccccc;
    /* Light gray line */
    font-weight: 300;
    font-size: 1.2rem;
    margin: 0 -5px;
    /* Adjust spacing slightly closer to the line */
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 82vh;
    max-height: 880px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background-color: #000;
    /* Fallback */
    color: #fff;
    padding: 135px 30px 50px 30px !important;
}

/* Background Slides Track */
.hero-track-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.hero-slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 51, 42, 0.7), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    width: 100%;
    padding: 10px 20px 0 20px;
    margin-top: auto;
    margin-bottom: auto;
    animation: fadeInDown 1s ease-out;
}

/* Pagination Dashes */
.hero-pagination {
    position: relative;
    margin-top: 35px;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.hero-dash {
    width: 40px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 2px;
}

.hero-dash:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.hero-dash.active {
    background-color: white;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.6rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.75), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.7;
    color: #f8fafc;
    margin-bottom: 40px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    display: block;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    min-height: 400px;
    /* Reduces layout shift for anchor scrolling */
}

.service-card {
    background: var(--bg-white);
    position: relative;
    height: 380px;
    border-radius: 8px;
    border: 1px solid rgba(200, 150, 62, 0.12);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 150, 62, 0.45);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12), 0 0 20px rgba(200, 150, 62, 0.15);
}

.gk-card-display {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.gk-service-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e8ecef;
    /* Optional: A subtle grid or dot pattern to indicate placeholder */
    background-image: radial-gradient(#d0d5da 1px, transparent 1px);
    background-size: 20px 20px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.service-card:hover .gk-service-image-placeholder {
    transform: scale(1.08);
}

.gk-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
    background-color: rgba(0, 0, 0, 0);
    z-index: 2;
    opacity: 0.6;
    transition: all 0.5s ease;
}

.service-card:hover .gk-service-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.gk-service-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    width: 100%;
    color: #fff;
    text-align: left;
}

.gk-service-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .gk-service-title {
    transform: translateY(0);
}

.gk-service-hover-content {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.05s;
    display: flex;
    flex-direction: column;
}

.service-card:hover .gk-service-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.gk-service-desc {
    color: #eaeaea;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
    /* Hide long descriptions nicely */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gk-service-arrow {
    align-self: flex-start;
    font-size: 1.4rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.service-card:hover .gk-service-arrow {
    transform: translateX(12px);
}

/* Brands Slider */
.brands-slider {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 40px 0;
    position: relative;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: auto;
}

.brands-slider::-webkit-scrollbar {
    display: none;
}

.brands-slider::before,
.brands-slider::after {
    display: none !important;
}

.brands-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: 75px;
    padding: 0 40px;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
    opacity: 1 !important;
    filter: none !important;
    margin: 0;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    vertical-align: middle;
    flex-shrink: 0;
}

.brand img {
    max-height: 130px;
    max-width: 250px;
    object-fit: contain;
    opacity: 1 !important;
    filter: none !important;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand:hover {
    opacity: 1 !important;
    color: var(--primary-color);
}

.brand:hover img {
    transform: scale(1.15);
}

/* Our Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.story-image-wrapper {
    position: relative;
    height: 100%;
    margin-left: 28px;
}

.story-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.started-in-badge {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.95)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.22));
}

.started-label {
    font-size: 1.15rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2px;
    text-shadow: 0 0 8px #ffffff, 0 0 16px #ffffff, 2px 2px 4px #ffffff, -2px -2px 4px #ffffff;
}

.started-year {
    font-size: 4.5rem;
    font-weight: 800;
    color: #000000;
    line-height: 1;
    font-family: var(--font-heading);
    text-shadow: 0 0 10px #ffffff, 0 0 25px #ffffff, 3px 3px 6px #ffffff, -3px -3px 6px #ffffff;
}

.story-text {
    padding: 20px 0;
}

.text-left {
    text-align: left !important;
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .story-image-wrapper {
        margin-left: 24px !important;
        margin-right: 6px !important;
        width: calc(100% - 30px) !important;
    }

    .started-in-badge {
        position: absolute !important;
        top: 50% !important;
        left: -15px !important;
        transform: translateY(-50%) !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.95)) !important;
        z-index: 20 !important;
    }

    .started-label {
        font-size: 0.95rem !important;
        color: #000000 !important;
        margin-bottom: 2px !important;
        text-shadow: 0 0 8px #ffffff, 0 0 14px #ffffff, 2px 2px 4px #ffffff, -2px -2px 4px #ffffff !important;
    }

    .started-year {
        font-size: 3.2rem !important;
        color: #000000 !important;
        line-height: 1 !important;
        text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 2px 2px 5px #ffffff, -2px -2px 5px #ffffff !important;
    }
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0 20px;
}

/* Follow us on Instagram Section (Gauri Khan Designs Inspired) */
.instagram-section {
    position: relative;
    padding: 75px 0 85px 0;
    overflow: hidden;
}

.instagram-sub-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1.5px;
    margin-top: -25px;
    margin-bottom: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.instagram-sub-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.live-insta-widget-container {
    max-width: 1140px;
    margin: 25px auto 0;
    width: 100%;
}

.live-insta-widget-container:empty {
    display: none;
}

/* Hide Elfsight widget built-in title/header to avoid duplicate heading */
.live-insta-widget-container [class*="Title__Container"],
.live-insta-widget-container [class*="Title-sc"],
.live-insta-widget-container [class*="Header__Container"],
.live-insta-widget-container [class*="Header-sc"],
.live-insta-widget-container .eapps-instagram-feed-title-container,
.live-insta-widget-container .eapps-instagram-feed-header {
    display: none !important;
}


.instagram-reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1140px;
    margin: 25px auto 0;
    width: 100%;
}

.insta-reel-box {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-embed-wrap {
    width: 100%;
    height: 315px;
    overflow: hidden;
    position: relative;
    background: #1e293b;
    border-radius: 14px 14px 0 0;
}

.insta-embed-wrap iframe,
.insta-embed-wrap iframe.instagram-media-rendered,
.insta-embed-wrap blockquote.instagram-media,
.insta-reel-box iframe,
.insta-reel-box iframe.instagram-media-rendered,
.insta-reel-box blockquote.instagram-media {
    position: absolute !important;
    top: -140px !important;
    left: 0 !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border: none !important;
}

.custom-insta-caption {
    padding: 12px 14px 14px !important;
    text-align: left;
    font-size: 0.82rem !important;
    color: #1e293b;
    border-top: 1px solid #f1f5f9;
    line-height: 1.45 !important;
    background: #ffffff;
    z-index: 2;
    flex-shrink: 0;
}

.insta-reel-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14), 0 0 0 1px var(--accent-color);
}

/* Industry-Standard Responsive Layout for Tablets & Mobile Devices */
@media (max-width: 1024px) {
    .live-insta-widget-container {
        padding: 0 16px;
    }

    .instagram-reels-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 680px;
        gap: 22px;
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .live-insta-widget-container {
        padding: 0 12px;
    }

    .instagram-reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 12px;
    }

    .insta-embed-wrap {
        height: 280px;
    }
}

@media (max-width: 580px) {
    .live-insta-widget-container {
        padding: 0 8px;
        margin-top: 15px;
    }

    .instagram-reels-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 20px;
        padding: 0 10px;
    }

    .insta-embed-wrap {
        height: 340px;
    }
}

.insta-post-card {
    display: block;
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-decoration: none !important;
    color: #1e293b;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.13), 0 0 0 1px var(--accent-color);
}

.insta-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
}

.insta-profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.insta-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #171f1b;
    color: #c8963e;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-user-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.insta-username {
    font-weight: 700;
    font-size: 0.92rem;
    color: #0f172a;
    line-height: 1.2;
}

.insta-subtitle {
    font-size: 0.75rem;
    color: #64748b;
}

.insta-view-btn {
    background: #0095f6;
    color: #ffffff !important;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.insta-post-card:hover .insta-view-btn {
    background: #1877f2;
}

.insta-media-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #1e293b;
    overflow: hidden;
}

.insta-media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-post-card:hover .insta-media-box img {
    transform: scale(1.05);
}

.insta-play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.insta-post-card:hover .insta-play-badge {
    transform: translate(-50%, -50%) scale(1.12);
    background: var(--accent-color);
}

.insta-reel-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.insta-card-footer {
    padding: 14px 16px 16px;
    text-align: left;
}

.insta-actions-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.insta-actions-left {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #1e293b;
}

.insta-likes-count {
    font-weight: 700;
    font-size: 0.88rem;
    color: #0f172a;
    margin-bottom: 6px;
}

.insta-caption-text {
    font-size: 0.92rem;
    color: #1e293b;
    line-height: 1.45;
}

.insta-more-link {
    color: #64748b;
    font-weight: 600;
    margin-left: 4px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3,
.footer h4 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer p {
    opacity: 0.8;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Floating Social Widget */
.floating-social {
    position: fixed;
    right: max(20px, env(safe-area-inset-right, 0px));
    bottom: max(20px, env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

.social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.whatsapp {
    background-color: transparent;
    box-shadow: none;
}

.social-icon.whatsapp:hover {
    box-shadow: none;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 110px;
    /* Accounts for fixed navbar height */
}

.social-icon.phone {
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #4BB543;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 500;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

/* Go to Top Button */
#go-to-top {
    position: fixed;
    bottom: calc(95px + env(safe-area-inset-bottom, 0px));
    /* Vertically aligned with WhatsApp icon */
    right: calc(115px + env(safe-area-inset-right, 0px));
    /* Placed beside WhatsApp icon with 40px gap */
    width: 45px;
    height: 45px;
    background-color: #333333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

#go-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#go-to-top:hover {
    background-color: #1a1a1a;
    transform: translateY(-3px);
}

/* Medium Desktop & Laptop Header Breathing Room (1151px to 1420px) */
@media (max-width: 1420px) and (min-width: 1151px) {
    .nav-container {
        padding: 8px 24px !important;
    }
    .logo {
        margin-right: 32px !important;
        padding-right: 12px !important;
    }
    .logo img {
        width: 100px !important;
        height: 100px !important;
        transform: scale(1.25) !important;
    }
    .nav-links {
        gap: 16px !important;
        margin-right: 28px !important;
    }
    .nav-links a {
        font-size: 0.88rem !important;
        letter-spacing: 1.1px !important;
    }
    .nav-container .btn-quote {
        margin-left: 28px !important;
        padding: 12px 22px !important;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 8px 16px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .logo {
        margin-right: 0 !important;
        padding-right: 0 !important;
    }
    .nav-links {
        margin: 0 !important;
    }
    .nav-container .btn-quote {
        margin-left: 10px !important;
    }
}

/* iPad Air / Tablet Header Single-Line Precision */
@media (max-width: 1150px) and (min-width: 769px) {
    .nav-container {
        padding: 8px 18px !important;
        justify-content: space-between !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .logo {
        margin-right: 22px !important;
        padding-right: 6px !important;
    }

    .logo img {
        width: 75px !important;
        height: 75px !important;
    }

    .nav-links {
        gap: 10px !important;
        flex-wrap: nowrap !important;
        margin: 0 16px 0 0 !important;
    }

    .nav-links a {
        font-size: 0.70rem !important;
        letter-spacing: 0.4px !important;
        white-space: nowrap !important;
        padding: 4px 2px !important;
    }

    .nav-separator {
        display: none !important;
    }

    .btn-quote {
        padding: 9px 18px !important;
        font-size: 0.74rem !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
        margin-left: 16px !important;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3.6rem;
        line-height: 1.18;
    }

    .hero {
        min-height: 75vh;
        max-height: none;
        padding: 125px 24px 45px 24px !important;
        background-attachment: scroll !important;
    }
}

/* =========================================================
   UI UX PRO MAX: MOBILE IOS & ANDROID RESPONSIVE SYSTEM
   ========================================================= */

@media (max-width: 768px) {

    /* Touch Target & Safe Area Optimization */
    .nav-container {
        padding: 8px max(14px, env(safe-area-inset-right)) 8px max(14px, env(safe-area-inset-left)) !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .logo {
        margin-right: 0 !important;
        padding-right: 0 !important;
    }

    .nav-container .btn-quote {
        margin-left: auto !important;
        margin-right: 8px !important;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 11px 8px;
        z-index: 1000;
        margin-left: 10px;
        -webkit-tap-highlight-color: transparent;
    }

    .hamburger .bar {
        width: 100%;
        height: 2.5px;
        background-color: var(--text-main);
        border-radius: 10px;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .logo img {
        height: 85px;
        width: 85px;
    }

    .btn,
    .btn-quote {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.82rem;
        padding: 10px 18px;
        letter-spacing: 1.2px;
        -webkit-tap-highlight-color: transparent;
    }

    /* Fullscreen Frosted Luxury Drawer for Mobile Nav */
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
        z-index: 999;
        gap: 8px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-separator {
        display: none;
    }

    .nav-links a {
        margin: 10px 0;
        font-size: 1.2rem;
        letter-spacing: 2px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Mobile Hero Layout & Dynamic Pagination Flow */
    .hero {
        min-height: 100vh !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 130px 15px 35px 15px !important;
    }

    .hero-content {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .hero-pagination {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 28px !important;
        gap: 12px !important;
        z-index: 10 !important;
    }

    .hero-dash {
        width: 32px !important;
        height: 3.5px !important;
    }

    /* Mobile Typography & Spacing */
    .hero-title {
        font-size: 2.6rem;
        line-height: 1.22;
        padding: 0 10px;
    }

    .section-padding {
        padding: 55px 0;
    }

    .section-title {
        font-size: 1.95rem;
        letter-spacing: 1.2px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    /* Single Column Stack for Cards on Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 15px;
    }

    .service-card {
        height: auto;
        min-height: 340px;
        padding: 24px 18px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 15px;
    }

    /* iOS Auto-Zoom Prevention: Inputs must be at least 16px */
    input,
    select,
    textarea,
    .modern-input,
    .custom-select-trigger {
        font-size: 16px !important;
    }

    .menu-open .floating-social {
        display: none;
    }

    .brands-track {
        gap: 45px !important;
        padding: 0 15px !important;
    }

    .brand {
        margin: 0 !important;
    }

    .brand img {
        max-height: 85px !important;
        max-width: 170px !important;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding-bottom: 65px !important;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .logo img {
        height: 75px;
        width: 75px;
    }

    .btn-quote {
        padding: 9px 14px;
        font-size: 0.75rem;
    }
}

/* --- VISUAL EDITOR UI --- */
body.edit-mode-active {
    border: 4px solid var(--accent);
}

.visual-editor-header.hidden {
    display: none;
}

.visual-editor-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #222;
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.editor-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.editor-title {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.editor-title::before {
    content: '✏️';
}

.btn-save-exit {
    background: #ef4444;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-save-exit:hover {
    background: #dc2626;
}

/* Service Card Edit Icons */
.service-card {
    position: relative;
    /* important for absolute positioning of edit icons */
}

.edit-actions-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover .edit-actions-overlay {
    opacity: 1;
}

.btn-inline-edit,
.btn-inline-delete {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.btn-inline-edit:hover {
    background: #f0f0f0;
}

.btn-inline-delete {
    color: #ef4444;
}

.btn-inline-delete:hover {
    background: #fee2e2;
}

.add-ghost-card {
    border: 2px dashed #ccc;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    min-height: 200px;
    transition: all 0.3s ease;
}

.add-ghost-card:hover {
    border-color: var(--accent);
    background: rgba(196, 161, 98, 0.05);
}

.add-ghost-card span {
    font-size: 2rem;
    color: var(--accent);
}

/* In-Place Edit Styles */
.card-edit {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.hidden {
    display: none !important;
}

.card-edit input,
.card-edit textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
}

.card-edit textarea {
    resize: vertical;
}

.edit-actions-overlay.editing .btn-inline-edit {
    background: #4caf50;
    color: white;
    border-color: #4caf50;
}

/* Generic Inline Edit Inputs */
.inline-edit-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    margin-bottom: 8px;
    background: #fff;
    color: #333;
}

textarea.inline-edit-input {
    resize: vertical;
}

/* Edit Mode Brands Track overrides */
.edit-mode-active .brands-track {
    animation: none !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    width: 100%;
}

.brand {
    position: relative;
}

.add-brand-card {
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    cursor: pointer;
    font-weight: 600;
    color: #888;
    transition: all 0.3s;
    border-radius: 4px;
    font-size: 1.5rem;
    min-width: 150px;
}

.add-brand-card:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.edit-btn-floating {
    position: absolute;
    top: -15px;
    right: -15px;
    background: transparent;
    border: none;
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    z-index: 10;
    box-shadow: none;
    display: none;
    color: var(--accent-color);
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.edit-mode-active #dynamic-about-text:hover .edit-btn-floating,
.edit-mode-active #dynamic-footer-contact:hover .edit-btn-floating {
    display: flex;
}

.edit-btn-floating:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
    opacity: 1;
}

.edit-actions-overlay.editing .btn-inline-edit:hover {
    background: #45a049;
}

/* Promotional Modal */
.promo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.promo-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.promo-modal {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.promo-modal-overlay.show .promo-modal {
    transform: translateY(0) scale(1);
}

.promo-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    font-size: 24px;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.promo-modal-close:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.promo-modal-content {
    display: flex;
    height: 400px;
}

.promo-modal-left {
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #fff;
    z-index: 3;
}

/* The curve effect */
.promo-modal-left::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -45px;
    width: 120px;
    height: 120%;
    background: #fff;
    border-radius: 50%;
    z-index: -1;
}

.promo-modal-icon {
    width: 40px;
    height: 40px;
    background: #f4f7f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b3a55;
    margin-bottom: 20px;
}

.promo-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.2;
    color: #162645;
    margin-bottom: 12px;
    font-weight: 700;
}

.promo-modal-text {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.promo-modal-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-promo-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: 1px solid #162645;
    border-radius: 8px;
    color: #162645;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-promo-outline:hover {
    background: #162645;
    color: #fff;
}

.promo-badge {
    position: absolute;
    top: -10px;
    left: 15px;
    background: #ff4d6d;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    z-index: 5;
    letter-spacing: 0.5px;
}

.btn-promo-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #162645;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-promo-whatsapp:hover {
    background: #0f182b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.promo-modal-right {
    flex: 0.8;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.promo-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .promo-modal-content {
        flex-direction: column;
        height: auto;
    }

    .promo-modal-left::after {
        display: none;
    }

    .promo-modal-left {
        padding: 30px 20px;
    }

    .promo-modal-title {
        font-size: 1.6rem;
    }

    .promo-modal-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-modal-right {
        height: 200px;
    }
}

/* D'LIFE Style Hero Modifications */
.dlife-style-hero {
    text-align: left;
    max-width: 1060px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(200, 150, 62, 0.35), rgba(255, 255, 255, 0.16));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    margin-bottom: 24px;
    text-transform: uppercase;
    border: 1px solid rgba(200, 150, 62, 0.65);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), inset 0 0 12px rgba(200, 150, 62, 0.2);
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 42px;
    justify-content: flex-start;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 11px 22px;
    border-radius: 50px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(200, 150, 62, 0.35);
}

.feature-icon {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 6px rgba(200, 150, 62, 0.8));
}

.hero-price-action {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.price-box {
    background: linear-gradient(135deg, rgba(26, 51, 42, 0.82), rgba(0, 0, 0, 0.82));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 16px 30px;
    border-left: 5px solid var(--accent-color);
    border-top: 1px solid rgba(200, 150, 62, 0.45);
    border-right: 1px solid rgba(200, 150, 62, 0.45);
    border-bottom: 1px solid rgba(200, 150, 62, 0.45);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(200, 150, 62, 0.15);
}

.price-label {
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #cbd5e1;
    margin-bottom: 6px;
}

.price-value {
    font-size: 2.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    font-family: var(--font-heading);
    text-shadow: 0 2px 10px rgba(200, 150, 62, 0.5);
}

@media (max-width: 768px) {
    .dlife-style-hero {
        text-align: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-price-action {
        justify-content: center;
        flex-direction: column;
    }

    .price-box {
        align-items: center;
        border-left: none;
        border-bottom: 4px solid var(--accent-color);
    }
}

/* Reviews Progress Bar */
.reviews-progress-container {
    width: 200px;
    height: 3px;
    background-color: #e0e0e0;
    margin: -80px auto 40px auto;
    /* Negative top margin to pull it up closer to cards */
    border-radius: 2px;
    position: relative;
    z-index: 10;
    display: none;
}

.reviews-progress-bar {
    width: 30px;
    height: 100%;
    background-color: #000000;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 2px;
}

/* Contact Form Enhancements */
.contact-section-bg {
    background-color: var(--bg-light);
}

.contact-form-heading {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 3rem;
}

.modern-input {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.modern-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
    background-color: #fff;
}

.modern-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-color: #fcfcfc !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 14px !important;
    cursor: pointer !important;
    padding-right: 40px !important;
}

/* Custom Select Dropdown UI */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 18px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-main);
    background: #fcfcfc;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-select.open .custom-select-trigger {
    background-color: #fff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.custom-select-trigger .arrow {
    width: 12px;
    height: 12px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.custom-select.open .custom-select-trigger .arrow {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 100;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: translateY(-10px);
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-option {
    position: relative;
    display: block;
    padding: 12px 18px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
}

.custom-option:hover {
    cursor: pointer;
    background-color: rgba(197, 160, 89, 0.05);
    color: var(--accent-color);
    padding-left: 25px;
    /* Nice hover animation */
    font-weight: 500;
}

.custom-option.selected {
    color: var(--accent-color);
    background-color: rgba(197, 160, 89, 0.1);
    font-weight: 500;
}

/* Scroll Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- HASH LOADING OVERLAY --- */
html.is-loading-hash,
html.is-loading-hash body {
    overflow: hidden !important;
}

#hash-loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-white);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

html.is-loading-hash #hash-loading-overlay {
    display: flex;
}

.premium-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#hash-loading-overlay p {
    margin-top: 20px;
    color: var(--text-main);
    font-family: var(--font-heading);
    letter-spacing: 3px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* --- Inline Modal UI --- */
.inline-modal-form {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eaeaea;
    margin-top: 15px;
    position: relative;
    z-index: 10;
}

.inline-modal-form label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.inline-modal-form input,
.inline-modal-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 15px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.inline-modal-form input:focus,
.inline-modal-form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(181, 143, 97, 0.1);
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.btn-action-save {
    background: #10b981;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.btn-action-save:hover {
    background: #059669;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.btn-action-cancel {
    background: #f3f4f6;
    color: #4b5563;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.btn-action-cancel:hover {
    background: #e5e7eb;
    color: #1f2937;
}

/* --- UI-UX PRO MAX LUXURY GOOGLE MAPS BUTTON (BRIGHT ROYAL GOLD & IVORY) --- */
.btn-luxury-map {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #fffcf3 100%);
    border: 2px solid #d4af37;
    border-radius: 50px;
    color: #1f1e1c;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: 0.6px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.22), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-luxury-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-25deg);
    transition: left 0.75s ease;
}

.btn-luxury-map:hover::before {
    left: 150%;
}

.btn-luxury-map:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: #c49d26;
    background: linear-gradient(135deg, #d4af37 0%, #b88b15 100%);
    box-shadow: 0 14px 32px rgba(212, 175, 55, 0.42);
}

.btn-luxury-map:active {
    transform: translateY(-1px) scale(0.99);
}

/* Pulsating Golden Pin Badge */
.map-pin-badge {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #997316 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.45);
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.btn-luxury-map:hover .map-pin-badge {
    background: #ffffff;
}

.map-pin-badge::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.65);
    animation: luxuryPinPulse 2.2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes luxuryPinPulse {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

.map-pin-badge svg {
    width: 19px;
    height: 19px;
    color: #ffffff;
    stroke-width: 2.3;
    transition: color 0.3s ease;
}

.btn-luxury-map:hover .map-pin-badge svg {
    color: #997316;
}

.map-text-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.25;
}

.map-text-wrapper .map-sublabel {
    font-size: 0.68rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #997316;
    font-weight: 700;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.btn-luxury-map:hover .map-text-wrapper .map-sublabel {
    color: #fff9e6;
}

.map-text-wrapper .map-mainlabel {
    font-size: 0.98rem;
    font-weight: 700;
    color: #1f1e1c;
    transition: color 0.3s ease;
}

.btn-luxury-map:hover .map-mainlabel {
    color: #ffffff;
}

.map-arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b88b15;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.btn-luxury-map:hover .map-arrow-icon {
    transform: translate(3px, -3px);
    color: #ffffff;
}

/* ================================================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVE SYSTEM
   Breakpoints:
     Tablet      : max-width 1024px
     Mobile L    : max-width 768px  (already partial — extended here)
     Mobile S    : max-width 480px
   ================================================================ */

/* ─── TABLET (iPad, Android Tablet: 768px – 1024px) ─────────── */
@media (max-width: 1024px) {

    /* Container & General */
    .container { padding: 0 24px; }
    .section-padding { padding: 65px 0; }
    .section-title { font-size: 2.2rem; }

    /* Hero */
    .hero { min-height: 75vh; max-height: none; padding: 130px 24px 50px 24px !important; }
    .hero-title { font-size: 3.8rem; line-height: 1.16; margin-bottom: 18px; }
    .hero-subtitle { font-size: 1.2rem; line-height: 1.6; margin-bottom: 32px; }
    .dlife-style-hero { max-width: 100%; padding: 0 10px; }
    .feature-item { font-size: 0.98rem; padding: 9px 18px; }
    .price-value { font-size: 2rem; }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Story */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }
    .story-image-wrapper {
        margin-left: 26px !important;
        margin-right: 10px !important;
        width: calc(100% - 36px) !important;
    }
    .story-image { height: 400px; }
    .story-image img { height: 400px; object-fit: cover; }
    .started-in-badge {
        position: absolute !important;
        left: -15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    .started-label { font-size: 1.05rem !important; }
    .started-year { font-size: 3.8rem !important; }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px;
    }

    /* Contact section */
    .contact-grid,
    .contact-form-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* Feature items - hero strip */
    .hero-features { flex-wrap: wrap; gap: 10px; }
    .feature-item { font-size: 0.88rem; padding: 7px 12px; }

    /* Floating social — safe vertical spacing above go-to-top */
    .floating-social {
        right: max(14px, env(safe-area-inset-right, 0px));
        bottom: calc(74px + env(safe-area-inset-bottom, 0px));
        gap: 10px;
    }
    .floating-social .social-icon {
        width: 44px;
        height: 44px;
    }
    .floating-social .social-icon svg {
        width: 22px;
        height: 22px;
    }

    /* Go-to-top */
    #go-to-top {
        right: max(14px, env(safe-area-inset-right, 0px));
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        width: 44px;
        height: 44px;
    }

    /* Reviews section */
    .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

    /* Brands */
    .brands-track { gap: 55px; }

    /* Map button */
    .btn-luxury-map { padding: 12px 22px; font-size: 0.92rem; }
}

/* ─── MOBILE LARGE (Phones landscape / large phones: up to 768px) ─── */
@media (max-width: 768px) {

    /* General */
    .container { padding: 0 16px; }
    .section-padding { padding: 50px 0; }

    /* Footer — stack to single column */
    .footer { padding: 50px 0 20px; }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
        padding: 0 20px;
    }
    .footer-bottom {
        flex-direction: column !important;
        text-align: center;
        gap: 12px;
        padding: 20px 16px;
    }
    .footer-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    /* Contact Form — single column */
    .contact-grid,
    .contact-form-grid,
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    .contact-form-heading { font-size: 2rem; }
    .modern-input, .custom-select-trigger {
        padding: 14px 16px;
    }
    .modal-actions { flex-direction: column; }

    /* About section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-image { max-height: 300px; overflow: hidden; }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    .service-card { height: 320px; }
    .gk-service-title { font-size: 1.35rem; }

    /* Story */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 16px;
    }
    .story-image { height: 280px; }

    /* Subpage heroes (individual service pages) */
    .page-hero,
    .service-hero,
    .subpage-hero {
        min-height: 55vh !important;
        padding: 120px 20px 40px !important;
    }
    .page-hero h1,
    .service-hero h1,
    .subpage-hero h1 {
        font-size: 2rem !important;
    }
    .page-hero p,
    .service-hero p,
    .subpage-hero p {
        font-size: 0.95rem !important;
    }

    /* Feature items strip */
    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .feature-item {
        font-size: 0.85rem;
        padding: 7px 11px;
        white-space: nowrap;
    }

    /* Hero price action */
    .hero-price-action {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .price-box {
        align-items: center;
        border-left: none;
        border-bottom: 3px solid var(--accent-color);
        padding: 10px 20px;
    }
    .price-value { font-size: 1.5rem; }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    .review-card { padding: 28px 22px; }

    /* Floating social — safe height clearing go-to-top */
    .floating-social {
        right: max(12px, env(safe-area-inset-right, 0px));
        bottom: calc(70px + env(safe-area-inset-bottom, 0px));
        gap: 10px;
    }
    .floating-social .social-icon,
    .floating-social a {
        width: 42px !important;
        height: 42px !important;
    }
    .floating-social .social-icon svg {
        width: 20px !important;
        height: 20px !important;
    }

    /* Go-to-top */
    #go-to-top {
        right: max(12px, env(safe-area-inset-right, 0px));
        bottom: calc(14px + env(safe-area-inset-bottom, 0px));
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    /* Navbar Quote Button — crisp exterior left/right margin & proper left/right padding */
    .nav-container .btn-quote,
    .btn-quote {
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.78rem !important;
        padding: 9px 22px !important;
        letter-spacing: 0.8px !important;
        margin: 0 18px !important;
        white-space: nowrap !important;
        -webkit-tap-highlight-color: transparent;
    }

    /* Section title */
    .section-title { font-size: 1.9rem; letter-spacing: 1px; }
    .section-subtitle { font-size: 0.92rem; padding: 0 12px; }

    /* Promo modal */
    .promo-modal-content { flex-direction: column; height: auto; }
    .promo-modal-left::after { display: none; }
    .promo-modal-left { padding: 28px 20px; }
    .promo-modal-title { font-size: 1.5rem; }
    .promo-modal-actions { flex-direction: column; align-items: flex-start; }
    .promo-modal-right { height: 180px; }

    /* Our Story page / about page grids */
    .content-grid,
    .two-col-grid {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }

    /* Map button */
    .btn-luxury-map {
        padding: 12px 18px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    /* Brands slider */
    .brands-track { gap: 40px; padding: 0 16px; }
    .brand img { max-height: 75px; max-width: 150px; }

    /* Instagram section */
    .instagram-sub-link { font-size: 0.95rem; }
}

/* ─── MOBILE SMALL (iPhone SE, small Androids: up to 480px) ─── */
@media (max-width: 480px) {

    /* General */
    .container { padding: 0 14px; }
    .section-padding { padding: 40px 0; }
    .section-title { font-size: 1.6rem; letter-spacing: 0.8px; }

    /* Hero */
    .hero { min-height: auto; padding: 110px 14px 35px !important; }
    .hero-title { font-size: 2.1rem; line-height: 1.2; }
    .hero-subtitle { font-size: 0.96rem; margin-bottom: 28px; line-height: 1.5; }
    .hero-badge { font-size: 0.82rem; padding: 6px 14px; margin-bottom: 16px; }

    /* Feature items — allow wrapping on tiny screen */
    .hero-features { gap: 8px; margin-bottom: 30px; }
    .feature-item { font-size: 0.84rem; padding: 7px 13px; }
    .price-value { font-size: 1.7rem; }

    /* Services */
    .service-card { height: 300px; }
    .gk-service-title { font-size: 1.2rem; }
    .gk-service-desc { font-size: 0.88rem; }

    /* About text */
    .about-text p { font-size: 0.97rem; }

    /* Buttons */
    .btn:not(.btn-quote), .btn-primary:not(.btn-quote), .btn-know-more, .btn-outline {
        padding: 11px 20px;
        font-size: 0.82rem;
        letter-spacing: 1px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .nav-container .btn-quote,
    .btn-quote {
        width: auto !important;
        padding: 8.5px 18px !important;
        font-size: 0.75rem !important;
        letter-spacing: 0.6px !important;
        margin: 0 14px !important;
        white-space: nowrap !important;
    }
    .btn-luxury-map { padding: 11px 16px; font-size: 0.85rem; }
    .map-pin-badge { width: 34px; height: 34px; }

    /* Footer */
    .footer-grid { padding: 0 14px; gap: 28px; }
    .footer h3 { font-size: 1.1rem; }

    /* Contact */
    .contact-form-heading { font-size: 1.7rem; }

    /* Story badge outside hanging & safe left padding on mobile phones */
    .story-image-wrapper {
        margin-left: 20px !important;
        margin-right: 4px !important;
        width: calc(100% - 24px) !important;
    }
    .started-in-badge {
        left: -14px !important;
    }
    .started-label {
        font-size: 0.88rem !important;
    }
    .started-year {
        font-size: 2.8rem !important;
    }

    /* Subpage hero */
    .page-hero h1,
    .service-hero h1,
    .subpage-hero h1 { font-size: 1.7rem !important; }

    /* Review cards */
    .review-card { padding: 22px 18px; }
    .stars { font-size: 1.05rem; }

    /* OTP inputs on login */
    .otp-input { height: 44px; font-size: 1.2rem; }

    /* Promo modal */
    .promo-modal-left { padding: 22px 16px; }
    .promo-modal-title { font-size: 1.3rem; }

    /* Instagram grid (already handled above, reinforce) */
    .instagram-reels-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
    .insta-reel-box { height: auto; }
}

/* ─── MOBILE ULTRA-SMALL (up to 360px) ──────────────────────── */
@media (max-width: 360px) {
    .nav-container .btn-quote,
    .btn-quote {
        padding: 7.5px 14px !important;
        font-size: 0.70rem !important;
        letter-spacing: 0.4px !important;
        margin: 0 10px !important;
    }
    .logo img {
        height: 65px !important;
        width: 65px !important;
    }
    /* Story badge outside hanging & safe left padding on ultra-small screens */
    .story-image-wrapper {
        margin-left: 18px !important;
        margin-right: 2px !important;
        width: calc(100% - 20px) !important;
    }
    .started-in-badge {
        left: -12px !important;
    }
    .started-label {
        font-size: 0.80rem !important;
    }
    .started-year {
        font-size: 2.4rem !important;
    }
    /* Floating social & go-to-top — compact sizing on ultra-small screens */
    .floating-social {
        right: max(10px, env(safe-area-inset-right, 0px));
        bottom: calc(64px + env(safe-area-inset-bottom, 0px));
        gap: 8px;
    }
    .floating-social .social-icon,
    .floating-social a {
        width: 38px !important;
        height: 38px !important;
    }
    .floating-social .social-icon svg {
        width: 18px !important;
        height: 18px !important;
    }
    #go-to-top {
        right: max(10px, env(safe-area-inset-right, 0px));
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* ─── LANDSCAPE ORIENTATION (Phones horizontal view) ────────── */
@media (max-height: 650px) and (orientation: landscape) {
    /* Story badge outside hanging & safe left padding in landscape */
    .story-image-wrapper {
        margin-left: 22px !important;
    }
    .started-in-badge {
        left: -15px !important;
    }
    /* Floating social — compact sizing & guaranteed clear separation above go-to-top */
    .floating-social {
        right: max(14px, env(safe-area-inset-right, 0px));
        bottom: calc(58px + env(safe-area-inset-bottom, 0px));
        gap: 8px;
    }
    .floating-social .social-icon,
    .floating-social a {
        width: 36px !important;
        height: 36px !important;
    }
    .floating-social .social-icon svg {
        width: 18px !important;
        height: 18px !important;
    }
    /* Go-to-top */
    #go-to-top {
        right: max(14px, env(safe-area-inset-right, 0px));
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    /* Navbar Quote button — clean spacing when phone is sideways */
    .nav-container .btn-quote,
    .btn-quote {
        width: auto !important;
        margin: 0 20px !important;
        padding: 8.5px 22px !important;
    }
}

/* ─── iOS SAFE AREA (iPhone X+ notch / Dynamic Island) ──────── */
@supports (padding-top: env(safe-area-inset-top)) {
    .navbar {
        padding-top: env(safe-area-inset-top);
    }
    .footer {
        padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    }
}

/* ─── TOUCH: Disable hover effects on touch devices ─────────── */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover { transform: none; }
    .review-card:hover { transform: none; }
    .btn-know-more:hover, .btn-outline:hover { transform: none; }
    .gk-service-hover-content {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    .gk-service-title { transform: translateY(0) !important; }
}