/* 
   Karthika Bricks Premium CSS Design System
   Glassmorphism + Warm Construction Theme
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary-brick: #C34A2C;        /* Warm Brick Red / Terracotta */
    --primary-orange: #F26419;       /* Bright Accent Orange */
    --primary-light: #F68E5F;        /* Light Orange highlight */
    --accent-amber: #E6A15C;         /* Bright Amber/Gold highlight */
    --accent-gold: #DCAE1D;          /* Golden Accent */
    --bg-cream: #FAF8F5;             /* Soft warm sand/cream background */
    --bg-white: #FFFFFF;
    --text-dark: #1E2022;            /* Deep Charcoal for high-contrast reading text */
    --text-muted: #53565A;           /* Medium Charcoal for supporting text */
    --text-light: #F3F4F6;           /* Soft grey-white for dark background contrast */
    --accent-green: #27AE60;         /* Subtle Green accent for Trust/Delivery elements */
    
    /* Glassmorphism settings */
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-bg-hover: rgba(255, 255, 255, 0.65);
    --glass-bg-solid: rgba(250, 248, 245, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-border-hover: rgba(242, 100, 25, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(195, 74, 44, 0.06);
    --glass-shadow-hover: 0 12px 40px 0 rgba(195, 74, 44, 0.12);
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Layout & Utilities */
    --container-max-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --transition-speed: 0.3s;
    --transition-elastic: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(242, 100, 25, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(195, 74, 44, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(220, 174, 29, 0.03) 0%, transparent 50%);
    z-index: -2;
    pointer-events: none;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
}

p {
    font-family: var(--font-body);
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed) ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

/* Grid & Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.section-heading-wrapper {
    margin-bottom: 50px;
    max-width: 700px;
}

.section-heading-wrapper.center {
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-orange);
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Glassmorphism Card Style */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition-elastic);
}

.glass-panel:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: var(--glass-shadow-hover);
    transform: translateY(-5px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-elastic);
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-brick));
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(242, 100, 25, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 100, 25, 0.45);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--primary-brick);
    border: 1px solid rgba(195, 74, 44, 0.3);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(195, 74, 44, 0.08);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary-brick);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-speed) ease;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-page header.site-header:not(.scrolled) {
    background: rgba(15, 15, 15, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: none !important;
}

header.site-header.scrolled {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.site-header .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: var(--transition-speed) ease;
}

header.site-header.scrolled .nav-container {
    height: 75px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-badge-container {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    border: 2px solid rgba(242, 100, 25, 0.15);
    overflow: hidden;
    flex-shrink: 0;
    transition: var(--transition-elastic);
}

.logo-link:hover .logo-badge-container {
    transform: scale(1.05);
    border-color: var(--primary-orange);
    box-shadow: 0 6px 15px rgba(242, 100, 25, 0.15);
}

.logo-badge-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 0;
    transform: scale(1.22); /* Zoom in on the brand mark to reduce empty space margins and make it prominent */
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-orange);
    letter-spacing: -0.5px;
}

nav.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav.main-nav ul li a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-speed) ease;
}

nav.main-nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition-speed) ease;
}

nav.main-nav ul li a:hover {
    color: #FFFFFF;
}

nav.main-nav ul li a:hover::after,
nav.main-nav ul li.active a::after {
    width: 100%;
}

nav.main-nav ul li.active a {
    color: #FFFFFF;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    padding: 14px 10px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    z-index: 9999 !important;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0 !important;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--primary-orange) !important;
    border-radius: 10px;
    transition: var(--transition-speed) ease;
    flex-shrink: 0 !important;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    transform: translateX(100%);
    visibility: hidden;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 120px 40px 40px 40px;
    transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1), visibility 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-panel.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav-panel ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.mobile-nav-panel ul li a {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-speed) ease;
}

.mobile-nav-panel ul li a:hover,
.mobile-nav-panel ul li.active a {
    color: #FFFFFF;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    filter: brightness(0.92);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 15, 15, 0.75) 0%, rgba(15, 15, 15, 0.4) 65%, rgba(0, 0, 0, 0.15) 100%);
}

.hero-content-minimal {
    max-width: 750px;
    animation: slideUp 0.8s ease forwards;
}

.hero-subheading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.hero-heading {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: var(--bg-white);
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-cards-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 1s ease forwards 0.4s;
    opacity: 0;
}

.floating-glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 30px rgba(195, 74, 44, 0.05);
    transition: var(--transition-elastic);
}

.floating-glass-card:hover {
    transform: scale(1.03) translateX(-5px);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(242, 100, 25, 0.3);
}

.card-icon-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(242, 100, 25, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.floating-glass-card.green-accent .card-icon-container {
    background: rgba(39, 174, 96, 0.1);
    color: var(--accent-green);
}

.card-text-wrapper h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.card-text-wrapper p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Trust Strip Section */
.trust-strip-section {
    padding: 40px 0;
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-card {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.trust-card .trust-icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.trust-card .trust-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.intro-image-container {
    position: relative;
}

.intro-image-container img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.intro-img-overlay-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    max-width: 250px;
    background: rgba(255, 255, 255, 0.8);
}

.tag-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.tag-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.tag-item svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

/* Products Preview Section */
.products-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-preview-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    height: 100%;
}

.product-card-img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

/* Dynamic Image Slider Carousel inside Card */
.product-slider-container {
    position: relative;
    background: #1a1a1a; /* Dark background for contain fit style */
}

.product-slider-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-slider-slides .product-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-slider-slides .product-card-img.active {
    opacity: 1;
    z-index: 2;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s, border-color 0.3s;
}

.slider-btn:hover {
    background: var(--primary-orange);
    border-color: transparent;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.slider-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.slider-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.slider-indicators .indicator.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.5s ease;
}

.product-preview-card:hover .product-card-img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.product-card-desc {
    margin-bottom: 24px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex-grow: 1;
}

.product-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.product-card-actions .btn {
    width: 100% !important;
    display: block;
    text-align: center;
    box-sizing: border-box;
    height: 44px;
    line-height: 24px;
    font-size: 0.9rem !important;
    padding: 10px 18px !important;
    border-radius: var(--radius-sm) !important;
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    text-align: left;
}

.why-card .why-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(242, 100, 25, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Gallery Mosaic Preview */
.gallery-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
    gap: 16px;
    margin-bottom: 40px;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.5s ease;
}

.mosaic-item:hover img {
    transform: scale(1.06);
}

.mosaic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(30, 32, 34, 0.7) 0%, rgba(30, 32, 34, 0) 50%);
    opacity: 0;
    transition: var(--transition-speed) ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.mosaic-item:hover .mosaic-overlay {
    opacity: 1;
}

.mosaic-text {
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

/* Asymmetrical Grid Classes */
.mosaic-col-2 {
    grid-column: span 2;
}

.mosaic-row-2 {
    grid-row: span 2;
}

/* Call to Action Banner */
.cta-banner {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-white), var(--bg-cream));
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 100, 25, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-banner-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-banner-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* About Page Styles */
.internal-hero {
    padding: 140px 0 70px 0;
    background: linear-gradient(180deg, rgba(242, 100, 25, 0.05) 0%, transparent 100%);
    position: relative;
}

.internal-hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    max-width: 800px;
}

.internal-hero-title span {
    background: linear-gradient(135deg, var(--primary-brick), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-narrative {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-statement-card {
    border-left: 4px solid var(--primary-orange);
    padding: 24px;
    background: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

.brand-statement-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-brick);
    font-style: italic;
}

.about-collage-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-collage-container img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.about-collage-container img.tall-img {
    height: 456px;
    grid-row: span 2;
}

.timeline-section {
    background: rgba(255,255,255,0.3);
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.4);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0 auto;
    padding-left: 40px;
}

.timeline-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-orange), var(--accent-amber));
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    top: 5px;
    left: -39px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-cream);
    border: 4px solid var(--primary-orange);
    z-index: 2;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-brick);
    margin-bottom: 8px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 24px;
    border-radius: var(--radius-md);
}

/* Products Catalog Detail Grid */
.products-catalog-section {
    padding: 60px 0 100px 0;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.product-detail-layout:last-child {
    margin-bottom: 0;
}

.product-detail-layout.reverse {
    direction: rtl;
}

.product-detail-layout.reverse .product-text-side {
    direction: ltr;
}

.product-gallery-side {
    position: relative;
}

.product-gallery-main {
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    height: 400px;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.product-text-side h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.product-text-side .product-cat-desc {
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.spec-chip {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
}

.spec-chip-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 2px;
}

.spec-chip-value {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Product Detail Page Specifics */
.detail-hero {
    padding: 140px 0 60px 0;
}

.back-to-products {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.back-to-products:hover {
    color: var(--primary-orange);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.detail-img-container {
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.detail-img-container img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.detail-info-panel h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.detail-description {
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.detail-info-panel .specs-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-brick);
}

.detail-bullets {
    list-style: none;
    margin-bottom: 32px;
}

.detail-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.detail-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Gallery Masonry Layout */
.gallery-filter-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition-elastic);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-brick));
    color: var(--bg-white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(242, 100, 25, 0.2);
}

.masonry-grid {
    column-count: 3;
    column-gap: 20px;
    width: 100%;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.04);
}

.masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(30,32,34,0.8) 0%, rgba(30,32,34,0) 60%);
    opacity: 0;
    transition: var(--transition-speed) ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-title {
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 32, 34, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--bg-white);
    font-size: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary-orange);
}

.lightbox-caption {
    display: none !important;
}

/* Contact Page Layout */
.contact-layout-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item-card {
    display: flex;
    gap: 20px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(242, 100, 25, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-item-content p {
    font-size: 0.95rem;
}

.contact-item-content a {
    font-weight: 600;
    color: var(--primary-brick);
}

.contact-item-content a:hover {
    color: var(--primary-orange);
}

/* Enquiry Form Styling */
.enquiry-form-panel {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--glass-border);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-speed) ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(242, 100, 25, 0.1);
    background: var(--bg-white);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C34A2C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 48px;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
}

.form-success-message {
    display: none;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    animation: fadeIn 0.5s ease forwards;
}

.form-success-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 12px;
}

.form-success-message h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--accent-green);
}

.form-success-message p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.whatsapp-conversion-prompt {
    font-size: 0.9rem;
    margin-top: 24px;
    text-align: center;
    color: var(--text-muted);
}

.whatsapp-conversion-prompt a {
    color: var(--accent-green);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.whatsapp-conversion-prompt a:hover {
    text-decoration: underline;
}

/* Sticky WhatsApp Float */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    font-size: 1.8rem;
    transition: var(--transition-elastic);
    cursor: pointer;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--bg-white);
    border-color: rgba(39, 174, 96, 0.4);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.25);
    color: #25D366; /* Standard WhatsApp Brand Green on hover */
}

/* Tooltip style */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-speed) ease;
}

.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--text-dark);
}

.whatsapp-sticky:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Footer Section */
footer.site-footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

footer.site-footer p {
    color: #A0A5AB;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-elastic);
}

.social-icon-btn:hover {
    background: var(--primary-orange);
    color: var(--bg-white);
    border-color: var(--primary-orange);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 6px 15px rgba(242, 100, 25, 0.35);
}

.footer-links h3,
.footer-contact h3 {
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li a {
    color: #A0A5AB;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--primary-orange);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-contact-item svg {
    color: var(--primary-orange);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact-item span {
    color: #A0A5AB;
}

.footer-contact-item a {
    color: #A0A5AB;
}

.footer-contact-item a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
}

/* Animations Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */

/* Tablet (Portrait) */
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-heading {
        font-size: 3rem;
    }
    
    .hero-cards-block {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .floating-glass-card {
        flex: 1 1 calc(50% - 20px);
        min-width: 250px;
    }
    
    .trust-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    
    .mosaic-col-2 {
        grid-column: span 1;
    }
    
    .mosaic-row-2 {
        grid-row: span 1;
    }
    
    .about-editorial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-collage-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-detail-layout.reverse {
        direction: ltr;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .masonry-grid {
        column-count: 2;
    }
    
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-contact {
        grid-column: span 2;
    }
}

/* Mobile View */
@media (max-width: 767px) {
    .container {
        padding-right: 16px !important;
        padding-left: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .section-padding {
        padding: 40px 0 !important;
    }
    
    .hero-section {
        margin: 16px !important;
        border-radius: var(--radius-lg) !important;
        min-height: 480px !important;
        padding: 90px 16px 70px 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }
    
    .hero-background-wrapper {
        border-radius: var(--radius-lg) !important;
        overflow: hidden !important;
    }
    
    .hero-heading {
        font-size: 2.4rem !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 12px !important;
        line-height: 1.15 !important;
    }
    
    .hero-description {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 24px !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    .internal-hero {
        padding: 100px 0 40px 0;
    }
    
    .internal-hero-title {
        font-size: 2.0rem !important;
        line-height: 1.25;
    }
    
    .trust-strip-section {
        padding: 0 0 16px 0 !important;
        margin-top: -32px !important;
    }
    
    .trust-strip-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        width: 100% !important;
    }
    
    .trust-card {
        padding: 16px 20px !important;
        min-height: 72px !important;
        display: flex !important;
        align-items: center !important;
        gap: 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-radius: var(--radius-md) !important;
    }
    
    .trust-strip-section + section.section-padding {
        padding-top: 16px !important;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-mosaic-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }
    
    .cta-banner {
        padding: 40px 24px !important;
    }
    
    .cta-banner-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .cta-actions .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    .intro-image-container img {
        max-height: 300px !important;
        border-radius: var(--radius-lg) !important;
    }
    
    .intro-img-overlay-card {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        margin: 16px 0 0 0 !important;
        max-width: 100% !important;
    }
    
    .about-collage-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-collage-container .about-display-img-single {
        height: 240px !important;
    }
    
    .masonry-grid {
        column-count: 1;
        column-gap: 0;
    }
    
    .masonry-item {
        margin-bottom: 16px;
        width: 100%;
    }
    
    .masonry-item img {
        width: 100%;
        height: auto;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .glass-panel {
        padding: 20px !important;
    }
    
    .product-gallery-main {
        height: 250px;
    }
    
    .detail-img-container img {
        max-height: 320px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-contact {
        grid-column: span 1;
    }
    
    .site-footer {
        padding: 48px 0 32px 0 !important;
    }
    
    .whatsapp-sticky {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .products-preview-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        position: fixed;
        font-size: 2.5rem;
        background: rgba(0, 0, 0, 0.5);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 50px;
    }
}

/* Tablet & Mobile Viewports Navigation Hook */
@media (max-width: 991px) {
    nav.main-nav, 
    .header-actions .btn {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    header.site-header .nav-container {
        height: 70px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-badge-container {
        width: 38px;
        height: 38px;
    }
    
    .logo-badge-img {
        width: 32px;
        height: 32px;
    }
    
    .mobile-nav-panel {
        max-width: 100%;
        padding: 100px 24px 40px 24px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2.3rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Light context social media icons styling (e.g. inside light glass panels) */
.glass-panel .social-icon-btn {
    color: var(--text-dark) !important;
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
}

.glass-panel .social-icon-btn:hover {
    color: var(--bg-white) !important;
    background: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
    box-shadow: 0 6px 15px rgba(242, 100, 25, 0.35) !important;
}

/* Highlighted product card / detail layout */
.prominent-card {
    border: 1px solid rgba(242, 100, 25, 0.22) !important;
    box-shadow: 0 10px 30px rgba(195, 74, 44, 0.08) !important;
    background: linear-gradient(135deg, rgba(242, 100, 25, 0.04) 0%, rgba(255, 255, 255, 0.8) 100%) !important;
    position: relative;
    overflow: hidden;
}

/* Services Grid on Homepage */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: var(--radius-md);
    transition: var(--transition-elastic);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(242, 100, 25, 0.08);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    nav.main-nav, 
    .header-actions .btn {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 9999 !important;
    }
}

/* Advantages Section Grid Layout */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.advantage-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    border-radius: var(--radius-md);
    transition: var(--transition-elastic);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--primary-orange); /* Highlighted side border */
    box-shadow: var(--glass-shadow);
}

.advantage-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: var(--glass-shadow-hover);
    transform: translateY(-5px);
}

.advantage-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(242, 100, 25, 0.08);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-dark);
    line-height: 1.5;
}

.advantage-card h3 strong {
    color: var(--primary-orange);
    font-weight: 800;
}

/* For 7 items, span the last one to be balanced */
.advantage-card.span-full {
    grid-column: span 3;
}

@media (max-width: 991px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .advantage-card.span-full {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .advantage-card.span-full {
        grid-column: span 1;
    }
}

