@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    --primary: #E31E24;
    --primary-glow: rgba(227, 30, 36, 0.4);
    --bg-dark: #F8F9FA;
    --bg-card: #FFFFFF;
    --text-main: #1A1A1A;
    --text-dim: #555555;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
    --radius-lg: 24px;
    --radius-md: 12px;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.06);
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-card);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

header .container {
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header.scrolled .container {
    padding: 0.4rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    /* Standard premium height */
    width: auto;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header.scrolled .logo img {
    height: 60px;
    /* Smoothly shrinks on scroll */
}

nav ul {
    display: flex;
    gap: 2.5rem;
}

nav ul li a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

nav ul li a:hover,
nav ul li a.active {
    opacity: 1;
    color: var(--primary);
}

/* Dropdown Menu Styles */
nav ul li.dropdown {
    position: relative;
}

nav ul li.dropdown>a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.85rem;
}

.dropdown-menu {
    position: absolute;
    top: 50px;
    left: -20px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    min-width: 320px;
    border-radius: 12px;
    padding: 1rem 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Safe hover bridge */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

nav ul li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 1;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: rgba(227, 30, 36, 0.1);
    color: var(--primary);
    padding-left: 2rem;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--primary-glow);
    color: white !important;
}

/* Global Buttons */
.btn-primary {
    background: var(--primary);
    color: white !important;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Center text and icon */
    gap: 1rem;
    transition: var(--transition);
    box-shadow: 0 10px 25px var(--primary-glow);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--primary-glow);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: white !important;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Center text and icon */
    gap: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.btn-outline:hover {
    background: white;
    color: var(--primary) !important;
    border-color: white;
    transform: translateY(-3px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-main) !important;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.btn-outline-dark:hover {
    background: var(--text-main);
    color: white !important;
    border-color: var(--text-main);
    transform: translateY(-3px);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: calc(100vh - 100px);
    min-height: 650px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
    animation: kenBurns 15s linear infinite alternate;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    flex: 0 0 55%;
    position: relative;
    z-index: 5;
    color: #FFF;
}

.hero-tagline {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    display: block;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slider h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    /* Reduced for smaller font */
    font-weight: 800;
    letter-spacing: -1px;
    /* Less negative for smaller size */
    opacity: 0;
    transform: translateY(30px);
}

.hero-slider h1 span {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(227, 30, 36, 0.3);
}

.hero-slider p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    max-width: 650px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(40px);
}

.hero-btns {
    display: flex;
    /* Ensure buttons are aligned */
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(50px);
}

/* Entrance Animations */
.slide.active .hero-tagline {
    animation: heroFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.3s;
}

.slide.active h1 {
    animation: heroFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.5s;
}

.slide.active p {
    animation: heroFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.7s;
}

.slide.active .hero-btns {
    animation: heroFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.9s;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Zenith Form Overlay */
.hero-form-container {
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.form-wrapper {
    position: relative;
    pointer-events: auto;
    width: 35%;
    max-width: 500px;
    z-index: 1;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.zenith-form {
    width: 100%;
    padding: 3rem;
    position: relative;
    z-index: 2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.form-glass-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    z-index: 1;
    /* Below the text content */
    pointer-events: none;
}

.zenith-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 20px var(--primary-glow);
    z-index: 10;
}

.zenith-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 20px var(--primary-glow);
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.zenith-form .form-header h3 {
    font-size: 1.8rem;
    color: #ffffff !important;
    margin-bottom: 0.8rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.zenith-form .form-header p {
    font-size: 1.1rem;
    color: #ffffff !important;
    margin: 0 !important;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.form-group {
    position: relative;
    margin-bottom: 1.8rem;
}

.form-group input,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    color: #FFF;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.form-group input:focus,
.form-group select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(227, 30, 36, 0.2);
}

.form-group select option {
    background-color: #1a1a1a;
    color: #FFF;
}

/* intl-tel-input overrides */
.iti {
    width: 100%;
}

.iti__country-list {
    background-color: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #FFF !important;
    border-radius: 12px !important;
    z-index: 1000 !important;
}

.iti__country-name,
.iti__dial-code {
    color: #FFFFFF !important;
    font-weight: 500 !important;
}

.iti__flag-container {
    z-index: 5 !important;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background-color: rgba(227, 30, 36, 0.1);
}

.iti__selected-flag {
    background: transparent !important;
    padding-left: 1.5rem;
}

#hero-mobile {
    padding-left: 100px !important;
}

.iti__selected-dial-code {
    color: #FFFFFF !important;
    font-weight: 500;
    margin-left: 4px;
}

.error-msg {
    color: #ff5f6d;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 0.5rem;
}

.star-rating input {
    display: none !important;
}

.star-rating label {
    font-size: 2.5rem;
    color: #ddd;
    cursor: pointer;
    transition: 0.2s;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
    color: #ffc107;
}

.btn-full {
    width: 100%;
}

/* Slider Navigation (Cleaned) */
.slider-dots-container {
    position: absolute;
    bottom: 4rem;
    width: 100%;
    z-index: 30;
    pointer-events: none;
}

.slider-dots {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    pointer-events: auto;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.4);
    box-shadow: 0 0 15px var(--primary-glow);
}

.dot.active::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    opacity: 0.5;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Inner Hero */
.inner-hero {
    height: 40vh;
    min-height: 350px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('assets/images/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

.inner-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    color: #FFF;
}

.inner-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.inner-hero-content h1 span {
    color: var(--primary);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 6rem;
    padding: 6rem 0;
}

.journey-img {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.journey-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-content {
    flex: 1;
}

.journey-content span {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.journey-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Team Section (Legacy) */
.team-section {
    padding: 6rem 2rem 8rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    padding-bottom: 2rem;
    box-shadow: var(--shadow-premium);
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.team-img {
    height: 450px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.08);
}

.team-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.team-info p {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.team-hover-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary);
    transition: width 0.4s ease;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 0 15px var(--primary-glow);
}

.team-card:hover .team-hover-glow {
    width: 120px;
}

/* CTA Minimal */
.cta-minimal {
    text-align: center;
    background: var(--bg-card);
    border-radius: 20px;
    margin: 0 2rem 4rem;
    border: 1px solid var(--glass-border);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* =========================================
   V2 PREMIUM ABOUT PAGE STYLES
   ========================================= */

/* Premium Animated Hero */
.premium-hero {
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Lighter border */
}

.premium-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 2;
}

.hero-bg-animate {
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg at 50% 50%, rgba(227, 30, 36, 0.1) 0deg, transparent 60deg, rgba(227, 30, 36, 0.05) 120deg, transparent 180deg, rgba(0, 0, 0, 0.8) 240deg, transparent 300deg, rgba(227, 30, 36, 0.1) 360deg);
    animation: rotateGradient 20s linear infinite;
    z-index: 1;
    opacity: 0.7;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.premium-hero .inner-hero-content {
    z-index: 3;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.premium-hero h1 {
    font-size: 5rem;
    letter-spacing: -2px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    z-index: 3;
}

.hero-scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: scrollDrop 2s infinite;
}

@keyframes scrollDrop {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

/* CSS Grid Stable Overlap Layout */
.about-journey {
    background-color: transparent;
}

.about-journey .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 0 6rem;
    /* Removed top padding to fix gap */
}

.about-journey .journey-img {
    height: 600px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

.glass-plate {
    margin-left: -100px;
    /* Safe Overlap */
    padding: 4rem;
    position: relative;
    z-index: 10;
}

.glass-plate .glass-bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    /* Light frosted */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.glass-plate .content-inner {
    position: relative;
    z-index: 2;
    color: var(--text-main);
}

.glass-plate .content-inner .section-watermark {
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.05;
    z-index: -1;
}

.glass-plate .content-inner h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.glass-plate .content-inner p {
    color: var(--text-dim);
    font-size: 1.15rem;
}

/* Stable Premium Team Cards */
.team-section {
    background-color: transparent;
}

.editorial-grid {
    gap: 3rem;
}

.editorial-card {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    overflow: hidden;
    transition: var(--transition);
    padding-bottom: 2rem;
    box-shadow: var(--shadow-premium);
    position: relative;
    text-align: center;
}

.editorial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.editorial-card .grayscale-transition {
    height: 450px;
    margin: 0;
    overflow: hidden;
    margin-bottom: 2rem;
}

.editorial-card .grayscale-transition img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.editorial-card:hover .grayscale-transition img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.08);
    /* Clean zoom */
}

.glass-slide-up {
    position: relative;
    padding: 0 2rem;
    text-align: center;
}

.glass-slide-up h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.glass-slide-up p {
    margin: 0;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Service Page Description Override */
.glass-slide-up p.service-desc {
    color: var(--text-dim);
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    margin-top: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.editorial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary);
    transition: width 0.4s ease;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 0 15px var(--primary-glow);
}

.editorial-card:hover::after {
    width: 120px;
}

/* About Section Redesign */
.about {
    padding: 5rem 2rem;
    background: #FFFFFF;
}

.about .about-container {
    display: flex;
    align-items: center;
    gap: 8rem;
}

.about-img-group {
    flex: 1;
    position: relative;
}

.about-img-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.about-img-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 35px var(--primary-glow);
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.about-content {
    flex: 1;
}

.about-content .sub-title {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: block;
}

.about-content h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.about-content p {
    font-size: 1.25rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-card i {
    font-size: 2.2rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Services */
.section {
    padding: 2rem 2rem 4rem;
    /* Reduced top padding from 4rem */
}

/* Force a consistent, reduced top gap immediately after the page title hero across all pages */
main>section.inner-hero+section.section,
main>section.premium-hero+section.section {
    padding-top: 3rem !important;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFF;
    box-shadow: 0 15px 30px var(--primary-glow);
    transform: translateY(-50%) scale(1.1);
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: -1;
    letter-spacing: 15px;
    pointer-events: none;
    white-space: nowrap;
}

.section-title h2 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.services-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.services-grid::-webkit-scrollbar {
    display: none;
}

#services-carousel .service-card {
    min-width: calc(25% - 1.5rem);
    flex: 0 0 calc(25% - 1.5rem);
    height: 500px;
    /* Uniform height for visionary cards */
}

.service-card {
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.8);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    /* Initial state: partially covering bottom */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-overlay {
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.overlay-content {
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
}

.service-card:hover .overlay-content {
    transform: translateY(0);
}

.service-tag {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: block;
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.service-card:hover .service-tag {
    opacity: 1;
}

.overlay-content h3 {
    font-size: 1.8rem;
    color: #FFF;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease 0.1s;
}

.service-card:hover .overlay-content p {
    height: auto;
    opacity: 1;
    margin-bottom: 2rem;
}

.btn-sm {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    border-radius: 50px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease 0.3s;
}

.service-card:hover .btn-sm {
    opacity: 1;
    transform: scale(1);
}

.service-info p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}



/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */
.stats {
    margin-top: 40px;
    /* Pull it up slightly for the overlap effect */
    position: relative;
    z-index: 10;
    background: transparent;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

.stat-item {
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    transition: var(--transition);
    position: relative;
    border: none;
    background: transparent;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.stat-item:hover::before {
    opacity: 0.03;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 65px;
    height: 65px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.stat-item:hover .stat-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 15px 30px var(--primary-glow);
}

.stat-text h3 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
    font-weight: 800;
    line-height: 1;
}

.stat-text p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Update Services Section to Modern Grid */
.section-title h2 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-premium);
}

.service-info {
    padding: 2.5rem;
    border-top: 1px solid var(--glass-border);
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-link {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* UX Features */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
}

.back-to-top {
    position: fixed;
    bottom: 7rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-premium);
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* Section Transitions */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Why Us Section & Values Section (Dark Zenith Grid) */
.why-us.dark-zenith {
    background: #0a0a0a;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.values-section {
    padding: 6rem 2rem;
}

.values-section.dark-zenith {
    background: transparent;
    padding: 6rem 2rem;
}

.values-section.dark-zenith .section-title h2 {
    color: var(--text-main);
}

.values-section.dark-zenith .section-title span {
    color: var(--primary);
}

.values-section.dark-zenith .section-watermark {
    color: rgba(0, 0, 0, 0.03);
    /* Light watermark for light bg */
}

/* 3 Column override for About Page Values */
.values-section .zenith-grid {
    grid-template-columns: repeat(3, 1fr);
}

.values-section.dark-zenith .zenith-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
}

.values-section.dark-zenith .zenith-card h3 {
    color: var(--text-main);
}

.values-section.dark-zenith .zenith-card p {
    color: var(--text-dim);
}

.values-section.dark-zenith .zenith-glow {
    background: radial-gradient(circle, rgba(227, 30, 36, 0.03) 0%, transparent 70%);
}

.zenith-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.dark-zenith .section-title h2 {
    color: #FFFFFF;
}

.dark-zenith .section-title span {
    color: var(--primary);
}

.dark-zenith .section-watermark {
    color: rgba(255, 255, 255, 0.03);
}

.zenith-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    margin-top: 5rem;
}

.zenith-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 2.5rem;
    border-radius: 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.zenith-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(227, 30, 36, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.zenith-icon {
    width: 80px;
    height: 80px;
    background: rgba(227, 30, 36, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 2.5rem;
    position: relative;
    transition: var(--transition);
}

.zenith-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid rgba(227, 30, 36, 0.2);
    animation: pulseIcon 3s infinite;
}

.zenith-card:hover .zenith-icon {
    background: var(--primary);
    color: white;
    box-shadow: 0 15px 30px var(--primary-glow);
    transform: scale(1.1);
}

.zenith-card h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.zenith-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.zenith-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.5s ease;
    box-shadow: 0 0 15px var(--primary);
}

.zenith-card:hover .zenith-accent {
    width: 100%;
}


/* Testimonials Section */
.testimonials {
    padding: 5rem 2rem;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2rem 0;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: calc(33.33% - 1.67rem);
    flex: 0 0 calc(33.33% - 1.67rem);
    background: #FFFFFF;
    padding: 4rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 0.3rem;
}

.testimonial-content {
    font-size: 1.15rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 3.5rem;
    font-weight: 400;
    opacity: 0.95;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: auto;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-main);
}

.client-details p {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* =========================================
   PREMIUM SERVICE SHOWCASE (ALTERNATING)
   ========================================= */
.premium-service-showcase {
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-image-col {
    flex: 1;
    position: relative;
    width: 100%;
}

.service-image-col .image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-premium);
    height: 550px;
    width: 100%;
    z-index: 2;
}

.service-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-row:hover .service-image-col img {
    transform: scale(1.06);
}

.service-image-glow {
    position: absolute;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(40px);
    opacity: 0;
    transition: var(--transition);
}

.service-row:hover .service-image-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.service-text-col {
    flex: 1;
    position: relative;
    z-index: 3;
}

.service-number {
    font-size: 8rem;
    font-weight: 800;
    color: var(--text-main);
    opacity: 0.04;
    position: absolute;
    top: -85px;
    left: -30px;
    z-index: -1;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    pointer-events: none;
}

.service-row.reverse .service-number {
    left: auto;
    right: -30px;
}

.service-text-col h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -1px;
}

.service-text-col p {
    font-size: 1.15rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* =========================================
   GALLERY MASONRY LAYOUT
   ========================================= */
.gallery-section {
    padding-bottom: 8rem;
}

.masonry-grid {
    column-count: 3;
    column-gap: 2rem;
    padding: 2rem 0;
    width: 100%;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.9);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.gallery-item:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(227, 30, 36, 0.1);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* =========================================
   FEEDBACK SECTION (Fidelity-First Redesign)
   ========================================= */
.feedback-section {
    padding: 6rem 0;
    background: #fdfdfd;
}

/* =========================================
   FEEDBACK PAGE - ZENITH PREMIUM REDESIGN
   ========================================= */

.feedback-grid-v2 {
    display: grid;
    grid-template-columns: 570px 1fr;
    gap: 4rem;
    align-items: start;
    padding: 0 2rem 4rem;
    /* Removed top padding to fix gap */
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
}

@media (max-width: 1100px) {
    .feedback-grid-v2 {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.feedback-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/images/hero.png') center center/cover !important;
    height: 50vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Glassmorphic Container */
.premium-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.feedback-form-container {
    width: 100% !important;
    max-width: none !important;
    flex: 1;
}

.premium-glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(223, 30, 36, 0.05), transparent 60%);
    pointer-events: none;
}

/* Testimonial Side Styling (Feedback Page - Aligned with Home Page) */
.testimonial-side {
    position: sticky;
    top: 130px;
}

.testimonial-carousel {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    padding: 1rem;
    position: relative;
    overflow: hidden;
    text-align: left;
    /* Align left to match home page card */
}

/* Remove decorative accents from previous stunning attempt */
.testimonial-carousel::before,
.testimonial-carousel::after {
    display: none;
}

.carousel-viewport {
    position: relative;
    width: 100%;
}

.carousel-track {
    position: relative;
    width: 100%;
    min-height: 320px;
    /* Reduced min-height for tighter layout */
    display: flex;
    align-items: center;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Home Style Classes used in Feedback Slides */
.carousel-slide .testimonial-stars {
    color: #FFD700;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 0.3rem;
}

.carousel-slide .testimonial-content {
    font-size: 1.15rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 3.5rem;
    font-weight: 400;
    opacity: 0.95;
}

.carousel-slide .client-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: auto;
}

.carousel-slide .client-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-main);
}

/* Side Navigation Arrows */
.carousel-side-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.carousel-side-nav:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.carousel-side-nav.prev {
    left: -15px;
}

.carousel-side-nav.next {
    right: -15px;
}

/* Dots Styling */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

/* Progress Indicators / Dots (Dark style) */
.carousel-dots .dot-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot-btn.active {
    background: var(--primary);
    transform: scale(1.3);
}

.testimonial-carousel::after {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 150px;
    color: rgba(227, 30, 36, 0.05);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.test-stars {
    color: #FFC107;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.3));
}

.test-name {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.test-date {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    display: block;
    font-weight: 500;
}

.testimonial-card-light p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.9;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* Form Styling - Zenith Light */
.zenith-form-light {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    width: 100%;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .form-group-row {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zenith-input {
    width: 100%;
    background: #fff !important;
    border: 1px solid #E2E8F0 !important;
    padding: 0.8rem 1.2rem !important;
    border-radius: 12px !important;
    color: var(--text-main) !important;
    font-size: 0.95rem !important;
    transition: var(--transition) !important;
    outline: none !important;
}

.zenith-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.08) !important;
    transform: translateY(-2px);
}

.form-divider {
    border: 0;
    border-top: 1px solid #EDF2F7;
    margin: 1rem 0;
}

.rating-section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.rating-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--primary);
    border-radius: 2px;
}

/* Modern Card-Based Rating Matrix */
.rating-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.rating-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    gap: 1.5rem;
    overflow: visible;
    flex-wrap: wrap;
    /* Allow wrapping if space is tight */
}

.rating-card:hover {
    border-color: var(--primary);
    background: #FFFAFA;
}

.rating-label {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem;
    flex-shrink: 0;
    min-width: 180px;
    /* Reduced to give more room to pills */
}

.rating-options {
    display: flex;
    gap: 1rem;
    flex-grow: 1;
    justify-content: flex-end;
}

.rating-pill {
    position: relative;
}

.rating-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.rating-pill label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    background: #F7FAFC;
    border: 1px solid #EDF2F7;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dim);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
    min-width: 80px;
}

.rating-pill input[type="radio"]:checked+label {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.2);
}

@media (max-width: 768px) {
    .rating-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .rating-options {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .rating-pill label {
        padding: 0.6rem 1rem;
        flex: 0 1 auto;
    }
}

@media (max-width: 480px) {
    .rating-options {
        display: grid;
        grid-template-columns: 1fr;
    }
}

/* Star Rating Enhancement */
.star-rating-v2 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: left;
    gap: 0.8rem;
}

.star-rating-v2 input {
    display: none !important;
}

.star-rating-v2 label {
    font-size: 2rem;
    color: #E2E8F0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.star-rating-v2 label:hover,
.star-rating-v2 label:hover~label,
.star-rating-v2 input:checked~label {
    color: #FFC107;
    transform: scale(1.1);
}

/* Checkboxes Enhancement */
.procured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.zenith-check-card {
    position: relative;
    cursor: pointer;
}

.zenith-check-card input {
    position: absolute;
    opacity: 0;
}

.check-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0.5rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-weight: 700;
    color: var(--text-main);
    transition: var(--transition);
}

.zenith-check-card input:checked+.check-content {
    border-color: var(--primary);
    background: #FFFAFA;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.check-box {
    width: 20px;
    height: 20px;
    border: 2px solid #CBD5E0;
    border-radius: 4px;
    position: relative;
}

.zenith-check-card input:checked+.check-content .check-box {
    background: var(--primary);
    border-color: var(--primary);
}

.zenith-check-card input:checked+.check-content .check-box::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Submit Button Customization */
.feedback-btn {
    margin-top: 2rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Submit Button Custom */
#feedback-form button[type="submit"] {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 1.2rem 3rem;
    font-weight: 800;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    margin-top: 1rem;
}

#feedback-form button[type="submit"]:hover {
    background: #c21a20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.2);
}

@media (max-width: 768px) {
    .matrix-row-label {
        width: auto;
    }

    .rating-matrix th,
    .rating-matrix td {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }
}

/* Footer Premium Redesign */
footer {
    position: relative;
    background: #050505;
    padding: 8rem 0 0rem;
    color: #FFFFFF;
    border-top: 1px solid rgba(227, 30, 36, 0.15);
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 30px 2px var(--primary);
    z-index: 5;
}

footer::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
    margin-bottom: 5rem;
}

/* Premium gradient text for footer titles */
.footer-links h4,
.footer-about h4 {
    margin-bottom: 2.5rem;
    font-size: 1.4rem;
    font-weight: 800;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-about h4 {
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-transform: none;
    background: linear-gradient(90deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 90%;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.2rem;
    color: #FFFFFF;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    border-color: rgba(227, 30, 36, 0.5);
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover i {
    transform: scale(1.1);
}

.footer-links ul li {
    margin-bottom: 1.2rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    font-size: 1.05rem;
}

.footer-links ul li a:hover {
    color: #FFFFFF;
    transform: translateX(8px);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.footer-links ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--primary);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover::before {
    left: -15px;
    opacity: 1;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.8rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.footer-contact li:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-contact .icon {
    color: var(--primary);
    font-size: 1.2rem;
    min-width: 40px;
    height: 40px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(227, 30, 36, 0.2);
    transition: all 0.3s ease;
}

.footer-contact li:hover .icon {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 15px rgba(227, 30, 36, 0.4);
}

.footer-bottom {
    text-align: center;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Responsive Extensions */
@media (max-width: 1200px) {
    .about .about-container {
        gap: 4rem;
    }

    .hero-slider h1 {
        font-size: 2.5rem;
    }

    .about-journey .about-container {
        grid-template-columns: 1fr;
        padding: 4rem 0;
        gap: 2rem;
    }

    .glass-plate {
        margin-left: 0;
        margin-top: -50px;
        width: 90%;
        margin-inline: auto;
        padding: 3rem;
    }
}

@media (max-width: 992px) {
    .premium-service-showcase {
        padding: 5rem 5%;
        gap: 6rem;
    }

    .masonry-grid {
        column-count: 2;
    }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 3.5rem;
        text-align: center;
    }

    .service-image-col .image-wrapper {
        height: 400px;
    }

    .service-number {
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 6rem;
    }

    .service-row.reverse .service-number {
        left: 50%;
        right: auto;
    }

    .about .about-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-slider {
        height: auto;
        min-height: auto;
        padding-bottom: 8rem;
    }

    .slider-container {
        height: 600px;
        position: relative;
    }

    .hero-form-container {
        position: relative;
        padding: 0 5%;
        margin-top: -100px;
        z-index: 30;
    }

    .form-wrapper {
        width: 100%;
        max-width: none;
    }

    .hero-content {
        flex: 1;
        width: 100%;
        text-align: center;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .hero-slider h1 {
        font-size: 3.5rem;
    }

    .hero-slider p {
        margin: 0 auto 3rem;
    }

    .slider-dots-container {
        bottom: 120px;
        left: 50%;
        transform: translateX(-50%);
    }


    .zenith-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .about-img-main img {
        height: 450px;
    }

    .experience-badge {
        right: 50%;
        transform: translateX(50%) translateY(50%);
        bottom: 0;
    }

    @keyframes floating {

        0%,
        100% {
            transform: translateX(50%) translateY(0);
        }

        50% {
            transform: translateX(50%) translateY(-15px);
        }
    }

    .feature-card {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .zenith-grid {
        grid-template-columns: 1fr;
    }

    .about-journey .about-container {
        grid-template-columns: 1fr;
        padding: 2rem 0;
        gap: 0;
    }

    .about-journey .journey-img {
        width: 100%;
        height: 350px;
    }

    .glass-plate {
        margin-left: 0;
        width: 95%;
        margin-top: -60px;
        /* Slight overlap from top */
        padding: 2rem;
    }

    .glass-plate .content-inner h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .hero-slider h1 {
        font-size: 3rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
    }

    .masonry-grid {
        column-count: 1;
    }
}

/* Contact Page Styles - Premium Zen Redesign */
.contact-section {
    position: relative;
    padding: 8rem 0;
    background: #fff;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.contact-detail-card {
    display: flex;
    gap: 1.8rem;
    padding: 2.8rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.contact-detail-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 45px rgba(227, 30, 36, 0.08);
}

.detail-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, rgba(227, 30, 36, 0.02) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    flex-shrink: 0;
    border: 1px solid rgba(227, 30, 36, 0.1);
}

.detail-info h4 {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.detail-info p {
    color: var(--text-dim);
    line-height: 1.7;
    font-size: 1rem;
}

.social-reach-out {
    margin-top: 4rem;
    padding-left: 1rem;
}

.social-reach-out h4 {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-dim);
    font-weight: 700;
}

.social-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.social-pill {
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    background: white;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.social-pill:hover {
    background: var(--text-main);
    color: white;
    border-color: var(--text-main);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-pill.fb:hover {
    background: #3b5998;
    border-color: #3b5998;
}

.social-pill.ig:hover {
    background: #e1306c;
    border-color: #e1306c;
}

.social-pill.tw:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-pill.yt:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.contact-form-wrapper {
    padding: 4.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

@media (max-width: 600px) {
    .contact-form-wrapper {
        padding: 2.5rem 1.5rem;
    }
}

.form-header {
    margin-bottom: 0.2rem;
    text-align: left;
}

.form-header h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.form-header p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

.zenith-input,
.zenith-select,
.zenith-textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: #fff !important;
    border: 1.5px solid #555 !important;
    border-radius: var(--radius-md);
    color: #000 !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.zenith-input,
.zenith-select {
    height: 48px;
    /* Forces exact same vertical height */
    line-height: normal;
}

/* Custom premium dropdown arrow */
.zenith-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1.2rem center !important;
    background-size: 14px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 45px !important;
}

.zenith-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group {
    margin-bottom: 1.2rem;
    position: relative;
}

.form-group-row {
    display: flex;
    gap: 2rem;
}

.form-group-row .form-group {
    flex: 1;
}

.mobile-group-zen .iti {
    width: 100% !important;
    display: block !important;
}

.iti__flag-container {
    padding-left: 12px !important;
}

/* Force flag and dial code visibility */
.iti__selected-dial-code {
    color: #333 !important;
    font-weight: 600 !important;
}

.iti--allow-dropdown input {
    padding-left: 90px !important;
    /* Increased padding for dial code visibility */
}

@media (max-width: 768px) {
    .form-group-row {
        flex-direction: column;
        gap: 0;
    }
}

.zenith-input:focus,
.zenith-select:focus,
.zenith-textarea:focus {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
}

.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-section {
    padding: 0 0 8rem 0;
}

.map-container {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 10px solid white;
}

/* =========================================
   SERVICE FEATURES GRID (Detailed Pages)
   ========================================= */
.service-details-section {
    padding-top: 0 !important;
    /* Seamless flow from parent */
    padding-bottom: 8rem;
}

.features-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

@media (max-width: 900px) {
    .features-grid-v2 {
        grid-template-columns: 1fr;
    }
}

.feature-block {
    background: #fff;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(227, 30, 36, 0.2);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: rgba(227, 30, 36, 0.08);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.feature-content h3 {
    font-size: 1.6rem;
    color: var(--text-main);
    margin-bottom: 1.8rem;
    font-weight: 800;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.feature-list li {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.7;
    position: relative;
    padding-left: 2.2rem;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary);
    font-size: 1.1rem;
}

.feature-list li strong {
    color: var(--text-main);
    font-weight: 700;
}