@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Jost:ital,wght@0,100..900;1,100..900&family=Mrs+Saint+Delafield&display=swap');

:root {
    --primary-color: #BB1F2E;
    --text-dark: #111111;
    --text-muted: #777777;
    --bg-light: #f8f7f5;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    --font-script: 'Mrs Saint Delafield', cursive;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(38px, 8vw, 68px);
}

h2 {
    font-size: clamp(24px, 5vw, 42px);
}

h3 {
    font-size: clamp(22px, 4vw, 24px);
}

h4 {
    font-size: clamp(18px, 3vw, 20px);
}


a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
}

.section-padding {
    padding: clamp(60px, 10vw, 120px) 0;
}

.script-text {
    font-family: var(--font-script);
    color: var(--primary-color);
    font-size: 40px;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 80px);
}

.btn-premium {
    display: inline-block;
    padding: 15px 45px;
    background: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

.btn-premium:hover {
    background: var(--text-dark);
    color: var(--white);
}

.btn-white {
    border-color: var(--white);
    color: var(--white);
}

.btn-white:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 30px 0;
}

header.sticky {
    padding: 15px 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 1;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--white);
}

header.sticky .logo a {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .logo a {
        font-size: 20px;
        letter-spacing: 3px;
    }
}

.nav-wrap {
    flex: 3;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.nav-links {
    display: flex;
    gap: 45px;
    white-space: nowrap;
    align-items: center;
}

.nav-links a {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    position: relative;
}

header.sticky .nav-links a {
    color: var(--text-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links li {
    padding-bottom: 5px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown.mobile-active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    color: var(--text-dark) !important;
    font-size: 11px;
    padding: 12px 25px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color) !important;
    padding-left: 30px;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    color: var(--text-dark);
}

.header-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-icons,
.header-social {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.header-icons a,
.header-social a {
    color: var(--white);
    transition: var(--transition);
}

.header-icons a i,
.header-social a i {
    font-size: 16px;
}

.header-icons a:hover,
.header-social a:hover {
    color: var(--primary-color);
}

header.sticky .header-icons a,
header.sticky .header-social a {
    color: var(--text-dark);
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

header.sticky .header-right {
    color: var(--text-dark);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 22px;
    color: var(--white);
    transition: var(--transition);
    z-index: 2000;
}

header.sticky .mobile-toggle {
    color: var(--text-dark);
}

/* Mobile Only Utilities */
.mobile-only {
    display: none;
}

@media (max-width: 992px) {
    .mobile-only {
        display: block;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-social a {
        display: none;
    }

    .header-social {
        display: flex !important;
        /* Ensure the container for the toggle is visible */
        justify-content: flex-end;
    }

    .nav-wrap {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease;
        z-index: 1500;
        padding: 40px 0;
        transform: translateX(100%);
        right: 0;
    }

    .nav-wrap.active {
        transform: translateX(0);
    }

    /* Delay the slide-out when closing so items can fade first */
    .nav-wrap:not(.active) {
        transition-delay: 0.2s;
    }

    /* Mobile Menu Logo */
    .nav-logo {
        margin-top: 40px;
    }

    .nav-logo a {
        font-family: var(--font-heading);
        font-size: 24px;
        color: var(--text-dark);
        letter-spacing: 5px;
        text-transform: uppercase;
        display: block;
    }

    .nav-logo,
    .nav-links li,
    .nav-social {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-wrap.active .nav-logo,
    .nav-wrap.active .nav-links li,
    .nav-wrap.active .nav-social {
        opacity: 1;
        transform: translateY(0);
    }

    /* Animation Delays on Open */
    .nav-wrap.active .nav-logo {
        transition-delay: 0.3s;
    }

    .nav-wrap.active .nav-links li:nth-child(1) {
        transition-delay: 0.4s;
    }

    .nav-wrap.active .nav-links li:nth-child(2) {
        transition-delay: 0.45s;
    }

    .nav-wrap.active .nav-links li:nth-child(3) {
        transition-delay: 0.5s;
    }

    .nav-wrap.active .nav-links li:nth-child(4) {
        transition-delay: 0.55s;
    }

    .nav-wrap.active .nav-links li:nth-child(5) {
        transition-delay: 0.6s;
    }

    .nav-wrap.active .nav-social {
        transition-delay: 0.7s;
    }

    /* Fast reset on Close */
    .nav-wrap:not(.active) .nav-logo,
    .nav-wrap:not(.active) .nav-links li,
    .nav-wrap:not(.active) .nav-social {
        transition-delay: 0s;
        transition-duration: 0.2s;
    }

    /* Mobile Menu Social */
    .nav-social {
        display: flex;
        gap: 25px;
        margin-bottom: 40px;
    }

    .nav-social a {
        font-size: 18px;
        color: var(--text-dark);
        transition: var(--transition);
    }

    .nav-social a:hover {
        color: var(--primary-color);
    }

    .nav-links {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        width: 100%;
        overflow-y: auto;
        padding: 30px 0;
    }

    .nav-links a {
        color: var(--text-dark) !important;
        font-size: 12px;
        font-weight: 500;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        display: block;
        /* Change from none to block for transition */
        overflow: hidden;
        background: transparent;
        box-shadow: none;
        padding: 0;
        min-width: auto;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .dropdown.mobile-active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 15px 0 5px;
    }

    .dropdown-menu li a {
        font-size: 11px;
    }

    .header-social {
        display: none;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-slider {
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease 0.5s;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-content h1 {
    font-size: clamp(32px, 9vw, 68px);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: clamp(2px, 1vw, 5px);
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-content p {
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: clamp(20px, 5vw, 40px);
    letter-spacing: 1px;
}

/* Slider Controls */
.hero-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.hero-arrow {
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 24px;
    pointer-events: auto;
}

.hero-arrow:hover {
    color: var(--primary-color);
}

.hero-arrow.prev {
    left: 40px;
}

.hero-arrow.next {
    right: 40px;
}

@media (max-width: 768px) {
    .hero-nav {
        display: none;
    }

    .hero-content .btn-premium {
        padding: 12px 30px;
        font-size: 11px;
        letter-spacing: 2px;
    }
}

.hero-pagination {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    z-index: 10;
}

.hero-pagination .line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-pagination .line-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--white);
    width: 0;
}

/* Layout Sections */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 8vw, 100px);
    align-items: center;
}

@media (max-width: 992px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.section-content h2 {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 30px;
}

.section-content p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
}

.img-overlap {
    position: relative;
    height: 550px;
}

.img-large {
    width: 85%;
    height: 100%;
    object-fit: cover;
}

.img-small {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 45%;
    height: 300px;
    object-fit: cover;
    border: 15px solid var(--white);
}

@media (max-width: 992px) {
    .img-overlap {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .img-large,
    .img-small {
        width: 100%;
        position: static;
        height: 400px;
        border: none;
    }
}

.slider-pagination .separator {
    width: 50px;
    height: 2px;
    background: var(--white);
}

/* Divisions Carousel */
.divisions-section {
    position: relative;
    width: 100%;
}

.divisions-swiper {
    width: 100%;
    height: clamp(400px, 60vw, 600px);
}

.divisions-swiper .swiper-button-next,
.divisions-swiper .swiper-button-prev {
    color: var(--white);
    transition: var(--transition);
}

.divisions-swiper .swiper-button-next:after,
.divisions-swiper .swiper-button-prev:after {
    font-size: 24px;
}

.divisions-swiper .swiper-button-next:hover,
.divisions-swiper .swiper-button-prev:hover {
    color: var(--primary-color);
}

.banner-item {
    height: clamp(400px, 60vw, 600px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease;
}

.banner-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-item:hover .banner-bg {
    transform: scale(1.1);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-content h2 {
    font-size: clamp(28px, 6vw, 56px);
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.1;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 4vw, 40px);
    margin-top: 60px;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-item {
    text-align: left;
}

.product-image {
    background: var(--bg-light);
    height: clamp(300px, 45vw, 450px);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 2;
}

.product-overlay i {
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.product-overlay i:hover {
    color: var(--primary-color);
}

.product-item:hover .product-overlay {
    opacity: 1;
    visibility: visible;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.product-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.product-image .view-btn i {
    color: var(--white);
    transition: var(--transition);
}

.product-image .view-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transform: scale(0.8) translateY(-10px);
    opacity: 0;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-image .view-btn:hover {
    background: var(--white);
}

.product-image .view-btn:hover i {
    color: var(--primary-color);
}

.product-item:hover .product-image .view-btn {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.product-image .product-overlay {
    background: transparent;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
}

/* Full Width Banner */
.full-banner {
    height: clamp(300px, 50vw, 600px);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 4vw, 40px);
    margin-top: 60px;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-item {
    display: flex;
    gap: 20px;
}

.value-number {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--border-color);
    line-height: 1;
}

.value-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.value-text p {
    color: var(--text-muted);
}

/* Footer */
footer {
    background: #111111;
    color: var(--white);
    padding: 100px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 80px;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

.footer-col h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col p {
    color: #999;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #999;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--white);
    margin-bottom: 25px;
    display: block;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    color: var(--white);
    font-size: 18px;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Blog Section */
#blog h2 {
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-item {
    display: flex;
    flex-direction: column;
}

.blog-img {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
}

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    pointer-events: none;
}

.blog-img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: var(--transition);
}

.blog-item:hover .blog-img img {
    transform: scale(1.05);
}

.blog-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 700;
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.btn-read-more {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-dark);
    text-transform: uppercase;
    display: inline-block;
    transition: var(--transition);
}

.btn-read-more:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Brands Section */
.brands-section {
    background-color: #F8F7F5;
    padding: clamp(40px, 8vw, 80px) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brands-swiper {
    padding: 20px 0;
}

.brands-section h2 {
    font-size: clamp(24px, 5vw, 48px);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brands-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.brand-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-item-logo {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
}

.brand-item-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.brand-dummy {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
}

/* Contact Section Styles */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: flex-start;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-title {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: clamp(30px, 5vw, 50px);
    letter-spacing: 2px;
}

.contact-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    outline: none;
    padding: 5px 0;
}

.contact-form .btn-premium {
    margin-top: 30px;
}

.contact-map-area {
    height: 100%;
    min-height: 500px;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
    filter: grayscale(0.5);
}

.split-thinking {
    grid-template-columns: 1.2fr 0.8fr;
}

.container-banner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.banner-item .banner-content {
    text-align: center;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    header {
        padding: 15px 0;
    }

    header.menu-active {
        background: var(--white);
    }

    header.menu-active .logo a {
        color: var(--text-dark);
    }

    .container {
        padding: 0 25px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .split-section,
    .split-thinking,
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    h1 {
        font-size: 38px;
    }

    h2,
    .section-content h2,
    .brands-section h2,
    #blog h2 {
        font-size: 34px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 18px;
    }

    .img-large {
        width: 100%;
        height: 450px;
    }

    .img-small {
        display: none;
        /* Hide small overlapping image on tablet/mobile for better layout */
    }

    .img-single img {
        height: 400px !important;
    }

    .container-banner {
        justify-content: center;
    }

    .banner-item .banner-content {
        text-align: center;
        align-items: center;
        max-width: 100%;
    }

    .banner-item h2 {
        font-size: 32px !important;
    }

    /* Hero */
    .hero {
        height: 85vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 42px;
        letter-spacing: 2px;
        white-space: normal;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .hero-pagination {
        bottom: 40px;
        font-size: 12px;
    }

    .hero-pagination .line {
        width: 30px;
    }

    .banner-item {
        height: auto !important;
        min-height: 500px;
        padding: 80px 0;
    }

    .hero-arrow {
        display: none;
        /* Hide arrows on small screens */
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .banner-item h2 {
        font-size: 34px !important;
        line-height: 1.1 !important;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-page header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.about-page header .logo a,
.about-page header .nav-links a,
.about-page header .header-social a,
.about-page header .mobile-toggle {
    color: var(--text-dark);
}

.about-page header .nav-links a:hover,
.about-page header .nav-links a.active {
    color: var(--primary-color);
}

.page-hero {
    padding: 180px 0 50px;
    background-color: #f6f6f6;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-content-simple {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: clamp(32px, 8vw, 64px);
    margin-bottom: 5px;
    color: var(--text-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.breadcrumb {
    font-size: 16px;
    color: #999;
    font-family: var(--font-body) !important;
}

.breadcrumb a {
    color: #999;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .sep {
    margin: 0 5px;
}

.breadcrumb .current {
    color: #999;
}

.page-banner {
    width: 100%;
}

.hero-img-wrap {
    width: 100%;
    overflow: hidden;
}

.hero-img-wrap img {
    width: 100%;
    height: clamp(300px, 50vw, 600px);
    object-fit: cover;
}

/* Products Slider Section */
.products-slider-section {
    padding: 120px 0;
    overflow-x: hidden;
}

.section-padding-bottom {
    padding-bottom: 120px;
    overflow-x: hidden;
    /* Ensure section handles full-width slider overflow gracefully */
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.slider-nav-arrows {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.product-prev,
.product-next {
    cursor: pointer;
    font-size: 24px;
    /* Increased size since they are standalone */
    color: var(--text-dark);
    width: auto;
    height: auto;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 10px;
    /* Touch target */
}

.product-prev:hover {
    transform: translateX(-5px);
    color: var(--primary-color);
}

.product-next:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.product-swiper {
    overflow: hidden;
    padding-bottom: 50px;
    margin-left: max(40px, calc((100% - 1240px) / 2 + 40px));
}

@media (max-width: 768px) {
    .product-swiper {
        margin-left: 25px;
    }
}


.product-card-modern {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-image-wrap {
    position: relative;
    height: 500px;
    background: var(--bg-light);
    overflow: hidden;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.view-btn {
    align-self: flex-end;
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transform: translateY(-20px);
    transition: var(--transition);
}

.product-details-hover {
    transform: translateY(20px);
    transition: var(--transition);
}

.product-details-hover h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 5px;
}

.product-details-hover p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card-modern:hover .product-image-wrap img {
    transform: scale(1.1);
}

.product-card-modern:hover .product-hover-overlay {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.4);
}

.product-card-modern:hover .view-btn,
.product-card-modern:hover .product-details-hover {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .product-image-wrap {
        height: 400px;
    }
}

/* Lightbox Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 40px;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-caption {
    color: var(--white);
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: flex-start;
}

@media (max-width: 992px) {
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.info-column {
    margin-top: 0;
}

.info-column h2 {
    font-size: clamp(30px, 6vw, 48px);
    line-height: 1.1;
    font-weight: 400;
}

.info-column p {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 30px;
    line-height: 1.8;
}

.stats-column {
    display: contents;
    /* Allows nested children to participate in the parent grid */
}

.stats-box {
    padding-top: 55px;
    padding-left: 20px;
}

@media (max-width: 992px) {
    .stats-box {
        padding-top: 0;
        padding-left: 0;
    }
}

.stats-box h4 {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.stats-box ul li {
    margin-bottom: 12px;
}

.stats-box ul li a {
    font-size: 16px;
    color: #999;
    transition: var(--transition);
    display: inline-block;
}

.stats-box ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.section-title-alt {
    margin-bottom: 60px;
    text-align: left;
}

.section-title-alt h2 {
    font-size: clamp(30px, 6vw, 48px);
    letter-spacing: 1px;
    line-height: 1.3;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-item {
    text-align: left;
}

.team-img {
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f6f6f6;
}

.team-img img {
    width: 100%;
    aspect-ratio: 1/1.1;
    object-fit: cover;
    transition: var(--transition);
}

.team-item:hover .team-img img {
    transform: scale(1.05);
}

.team-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team-info p {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.image-full-section .image-wrap img {
    width: 100%;
    height: clamp(300px, 50vw, 600px);
    object-fit: cover;
}

/* Contact Page Specific Styles */
.contact-map-full {
    width: 100%;
    height: clamp(300px, 40vw, 500px);
    filter: grayscale(1);
    opacity: 0.8;
}

.contact-map-full iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-modern-form-section {
    padding: 100px 0;
    text-align: center;
    background-color: var(--white);
}

.contact-modern-form-section .section-title-wrap {
    margin-bottom: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-modern-form-section .section-title-wrap h2 {
    font-size: clamp(30px, 6vw, 48px);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: -15px;
    position: relative;
    z-index: 2;
}

.contact-modern-form-section .section-title-wrap .script-text {
    font-size: clamp(40px, 10vw, 80px);
    opacity: 0.2;
    margin-top: -20px;
    z-index: 1;
}

.modern-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.modern-form-group {
    text-align: left;
    position: relative;
}

.modern-form-group label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: capitalize;
}

.modern-input,
.modern-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.modern-input:focus,
.modern-textarea:focus {
    border-bottom-color: var(--primary-color);
}

.modern-textarea {
    resize: none;
    height: 100px;
}

.form-full-width {
    grid-column: span 2;
    margin-bottom: 50px;
}

.btn-centered {
    display: flex;
    justify-content: center;
}

/* Division Cards */
.divisions-info-section {
    padding-bottom: 100px;
}

.divisions-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.division-info-card {
    background: var(--bg-light);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.division-info-card:hover {
    background: var(--white);
    border-color: var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.division-info-card h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.division-info-card p {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.division-info-card .info-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--bg-light);
    padding: 120px 0;
    text-align: center;
}

.testimonial-swiper {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-item .quote-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 30px;
    opacity: 0.3;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: clamp(22px, 5vw, 32px);
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-body);
}

.testimonial-author h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-pagination {
    bottom: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    background: var(--text-dark);
    opacity: 0.2;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

@media (max-width: 1024px) {
    .divisions-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-full-width {
        grid-column: span 1;
    }

    .divisions-info-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-text {
        font-size: 24px;
    }
}


.logo img,
.nav-logo img {
    max-width: 133px;
    height: auto;
}

.footer-logo img {
    max-width: 120px;  /* adjust as needed */
    height: auto;
}



.brand-item-logo img {
    max-width: 200px;   
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}