/* ==========================================================================
   Dikanyego General Solutions - Premium Stylesheet
   ========================================================================== */

/* --- Design Tokens & Variables --- */
:root {
    /* Color Palette */
    --bg-dark-deep: #0a0b0e;
    --bg-dark-main: #0d0f14;
    --bg-dark-card: #151821;
    --bg-dark-hover: #1e222e;
    
    --text-primary: #f5f6f9;
    --text-secondary: #a0a6b5;
    --text-muted: #6b7280;
    
    --accent-blue: #1453cd;
    --accent-blue-hover: #0c3da1;
    --accent-blue-glow: rgba(20, 83, 205, 0.2);
    
    --accent-gold: #ffd000;
    --accent-gold-gradient: linear-gradient(135deg, #ffd000, #ff9f00);
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Layout & Spacing */
    --container-max-width: 1200px;
    --header-height: 80px;
    --header-height-scrolled: 70px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-blue: 0 10px 30px -10px rgba(20, 83, 205, 0.3);
    
    --glass-bg: rgba(21, 24, 33, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-blur: blur(12px);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* --- Base Resets --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    /* NOTE: Do NOT add overflow-x here — even 'hidden' on html breaks
       position:sticky on mobile. Use overflow-x:clip on body instead.
       'clip' visually clips without creating a scroll container (BFC). */
}

body {
    background-color: var(--bg-dark-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    /* 'clip' prevents horizontal overflow without creating a new scroll
       container — this is critical so position:sticky works on the header
       on iOS Safari and Chrome Android. 'hidden' would break sticky. */
    overflow-x: clip;
    max-width: 100vw;               /* Belt-and-suspenders horizontal clip */
    overscroll-behavior-x: none;    /* Prevent rubber-band horizontal swipe */
    -webkit-tap-highlight-color: transparent;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark-deep);
}

::-webkit-scrollbar-thumb {
    background: #252836;
    border-radius: 5px;
    border: 2px solid var(--bg-dark-deep);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* --- Typography Defaults --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-weight: 700;
    line-height: 1.25;
}

p {
    color: var(--text-secondary);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Reusable Components --- */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.btn-primary {
    background-color: var(--accent-blue);
    color: #ffffff;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background-color: var(--accent-blue-hover);
    box-shadow: 0 12px 35px -10px rgba(255, 51, 75, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--accent-blue);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-blue);
    margin: 0 auto;
    border-radius: 2px;
}

/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Top Bar --- */
.top-bar {
    background-color: #06070a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact-info {
    display: flex;
    gap: 24px;
}

.top-contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-contact-info i {
    color: var(--accent-blue);
}

.bee-badge {
    color: var(--accent-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- Header / Navigation --- */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    background-color: transparent;
    border-bottom: 1px solid transparent;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    /* NOTE: Do NOT add will-change: transform here — it creates a new stacking
       context that traps position:fixed children (WhatsApp button) on mobile
       browsers (iOS Safari, Chrome Android). */
}

.main-header.scrolled {
    height: var(--header-height-scrolled);
    background-color: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background-color: var(--accent-blue-glow);
    border: 1px solid rgba(20, 83, 205, 0.3);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
    transform: rotate(180deg);
    background-color: var(--accent-blue);
    color: #ffffff;
    box-shadow: var(--shadow-blue);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    line-height: 1;
}

.brand-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-blue);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #ffffff;
    font-weight: 600;
}

.btn-cta-nav {
    padding: 10px 20px;
    background-color: var(--accent-blue-glow);
    border: 1px solid rgba(20, 83, 205, 0.4);
    border-radius: var(--border-radius-sm);
    color: #ffffff !important;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-cta-nav::after {
    display: none;
}

.btn-cta-nav:hover {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

/* --- Hero Section & Parallax Setup --- */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%; /* taller for scrolling offset */
    background-size: cover;
    background-position: center;
    z-index: 1;
    will-change: transform;
    transform: translateY(0);
}

.hero-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 120px 0;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 11, 14, 0.95) 30%, rgba(10, 11, 14, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 750px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(20, 83, 205, 0.15);
    border: 1px solid rgba(255, 51, 75, 0.2);
    border-radius: 50px;
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-blue);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite ease-in-out;
}

@keyframes scrollMouse {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

.arrow-down {
    animation: bounceArrow 1.5s infinite ease-in-out;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* --- About Section --- */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-dark-main);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-text p {
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.bee-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: var(--bg-dark-card);
    border-left: 4px solid var(--accent-gold);
    padding: 24px;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    margin-top: 40px;
}

.bee-badge-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 100px;
    background: var(--accent-gold-gradient);
    border-radius: var(--border-radius-sm);
    color: var(--bg-dark-deep);
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.2);
}

.bee-badge-large i {
    font-size: 2rem;
    margin-bottom: 4px;
}

.bee-text h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.bee-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 32px;
    transition: var(--transition-smooth);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-dark-hover);
    color: var(--accent-blue);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.core-values-wrapper {
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 60px;
}

.values-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-item {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.value-item:hover {
    background-color: var(--bg-dark-hover);
    border-color: var(--accent-blue);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.value-item h5 {
    font-size: 1rem;
    font-weight: 600;
}

/* --- Services Section --- */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-dark-deep);
}

.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.featured-card {
    background-color: var(--bg-dark-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(20, 83, 205, 0.15);
}

.featured-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.featured-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(21, 24, 33, 0) 50%, var(--bg-dark-card) 100%);
}

.featured-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-tag {
    color: var(--accent-blue);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: inline-block;
}

.featured-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.featured-content p {
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.link-arrow i {
    transition: var(--transition-fast);
}

.link-arrow:hover {
    color: #ffffff;
}

.link-arrow:hover i {
    transform: translateX(4px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-box {
    background-color: var(--bg-dark-card);
    border-radius: var(--border-radius-md);
    padding: 36px 28px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(20, 83, 205, 0.2);
}

.service-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 11, 14, 0.98) 0%, rgba(10, 11, 14, 0.88) 55%, rgba(10, 11, 14, 0.75) 100%);
    z-index: 1;
    transition: var(--transition-smooth);
}

.service-box:hover .service-box-overlay {
    background: linear-gradient(to top, rgba(10, 11, 14, 0.94) 0%, rgba(10, 11, 14, 0.8) 55%, rgba(10, 11, 14, 0.6) 100%);
}

.service-box-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.service-box .service-icon {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 18px;
}

.service-box h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.service-box p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* --- Banner Parallax --- */
.banner-parallax {
    height: 380px;
    display: flex;
    align-items: center;
    text-align: center;
}

.banner-parallax .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.banner-parallax h3 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.banner-parallax p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 32px;
}

.certifications-inline {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.certifications-inline span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.certifications-inline i {
    color: var(--accent-blue);
}

/* --- Quality & Safety Section --- */
.quality-safety-section {
    padding: 100px 0;
    background-color: var(--bg-dark-main);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.safety-content,
.quality-content {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 48px;
    position: relative;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-blue-glow);
    border: 1px solid rgba(20, 83, 205, 0.3);
    border-radius: 50%;
    color: var(--accent-blue);
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.safety-content h3,
.quality-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.safety-content p,
.quality-content p {
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.check-list i {
    color: var(--accent-blue);
    margin-top: 4px;
}

.quality-stat-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background-color: var(--bg-dark-deep);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- References / Testimonials --- */
.references-section {
    padding: 100px 0;
    background-color: var(--bg-dark-deep);
}

.references-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ref-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.ref-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.ref-quote {
    font-size: 2.5rem;
    color: rgba(20, 83, 205, 0.2);
    line-height: 1;
    margin-bottom: 12px;
}

.ref-comment {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.ref-client-details {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-dark-hover);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 1px solid var(--glass-border);
}

.client-info h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.client-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.client-info i {
    color: var(--accent-blue);
}

.client-info .contact-phone {
    margin-top: 2px;
}

/* --- Contact Section --- */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-dark-main);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
}

.contact-form-container,
.contact-info-container {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 48px;
}

.contact-form-container h3,
.contact-info-container h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.contact-form-container p,
.contact-info-container p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--bg-dark-deep);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    padding: 14px 16px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-blue);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-blue-glow);
}

.form-group select option {
    background-color: var(--bg-dark-card);
    color: #ffffff;
}

.info-details-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-detail-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-dark-deep);
    border: 1px solid var(--glass-border);
    color: var(--accent-blue);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.info-text a:hover {
    color: var(--accent-blue);
}

/* --- Footer --- */
.main-footer {
    background-color: #060709;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand p {
    font-size: 0.9rem;
    margin: 20px 0 24px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}

.footer-links h4,
.footer-legal h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-blue);
    padding-left: 4px;
}

.footer-legal p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-legal p strong {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Animations & Keyframes --- */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Responsive Media Queries --- */

/* Tablet Screens (under 1024px) */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .references-slider {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* Landscape Tablet / Mobile Breakpoint (under 768px) */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .top-bar {
        display: none; /* Hide top bar for cleaner mobile view */
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section p {
        font-size: 1.05rem;
    }
    
    .featured-services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Mobile Menu Toggle Styling */
    .mobile-menu-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        padding: 13px 9px;
        box-sizing: border-box;
        flex-direction: column;
        justify-content: space-between;
        z-index: 201; /* Stay above navigation menu drawer (z-index 200) */
    }

    /* --- KEY FIX: Use transform instead of right offset ---
       right: -100% keeps the element in the scrollable layer, meaning a 
       horizontal swipe can reveal it. transform: translateX moves it 
       completely out of the paint layer. visibility: hidden also removes
       it from pointer/touch events when closed. */
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: 0;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - var(--header-height));
        /* Solid opaque background — no backdrop-filter so it doesn't
           create a new stacking context that can clip child elements */
        background-color: #0f1219;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 32px;
        gap: 8px;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                    visibility 0s linear 0.45s;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
        z-index: 200;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .nav-menu.active {
        transform: translateX(0);            /* Slide in from the right */
        visibility: visible;
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                    visibility 0s linear 0s; /* Show immediately on open */
    }

    /* Dark backdrop overlay that appears behind the open mobile nav */
    .nav-backdrop {
        position: fixed;
        inset: 0;
        background-color: rgba(6, 7, 10, 0.7);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 199;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.45s ease, visibility 0s linear 0.45s;
    }

    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.45s ease, visibility 0s linear 0s;
    }

    .nav-link {
        font-size: 1.05rem;
        width: 100%;
        padding: 14px 0;   /* Larger tap target */
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        min-height: 48px;
        display: flex;
        align-items: center;
        /* Force white text inside the mobile drawer — the global colour
           (text-secondary = #a0a6b5) renders near-invisible on the dark panel */
        color: #ffffff;
        font-weight: 500;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .btn-cta-nav {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: 12px;
    }

    /* Menu active states for bars */
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}

/* Small Mobile Screens (under 480px) */
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .bee-banner {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--accent-gold);
        border-radius: var(--border-radius-md);
    }
    
    .safety-content,
    .quality-content,
    .contact-form-container,
    .contact-info-container {
        padding: 24px;
    }
    
    .quality-stat-boxes {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


/* Logo Image Styling */
.logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    background-color: #ffffff;
    padding: 2px;
    transition: var(--transition-smooth);
}

.logo:hover .logo-img {
    transform: rotate(5deg) scale(1.08);
    box-shadow: 0 0 15px rgba(255, 208, 0, 0.4);
}

/* ==========================================================================
   Floating WhatsApp Button & Modals Styling
   ========================================================================== */

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    border: none;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    /* Promote to own compositing layer so mobile browsers
       cannot clip it inside a parent stacking context */
    isolation: isolate;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(6, 7, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

/* General Modal Container */
.modal-container {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    max-width: 580px;
    width: 100%;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    font-size: 2.2rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--accent-blue);
}

/* WhatsApp Specific Modal */
.whatsapp-modal-container {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    position: relative;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
}

.whatsapp-modal-header {
    background-color: #0b43a8; /* match blue */
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.whatsapp-avatar-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.whatsapp-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    background-color: #ffffff;
}

.whatsapp-status-info h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2px;
}

.status-indicator {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-indicator .dot {
    width: 8px;
    height: 8px;
    background-color: #25d366;
    border-radius: 50%;
    display: inline-block;
    animation: statusPulse 1.8s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.whatsapp-modal-body {
    padding: 30px 24px;
    overflow-y: auto;
    background-color: #0a0b0e;
    background-image: radial-gradient(rgba(20, 83, 205, 0.05) 1px, transparent 1px);
    background-size: 16px 16px;
}

.chat-bubble {
    padding: 16px;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) var(--border-radius-md);
    margin-bottom: 24px;
    max-width: 90%;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-bubble.received {
    background-color: var(--bg-dark-card);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.chat-time {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 6px;
}

.whatsapp-lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-whatsapp-submit {
    background-color: #25d366;
    color: #ffffff;
    padding: 14px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-submit:hover {
    background-color: #20ba5a;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Animations */
.animate-modal {
    opacity: 0;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.modal-overlay.active .animate-modal {
    opacity: 1;
    transform: scale(1);
}

/* Modal form specifics */
.modal-body .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.modal-body .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.modal-body .form-group:last-child {
    margin-bottom: 0;
}

/* Custom styles for modal form inputs (matching global inputs) */
.modal-overlay input,
.modal-overlay select,
.modal-overlay textarea {
    background-color: var(--bg-dark-deep);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    padding: 14px 16px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    width: 100%;
}

.modal-overlay input:focus,
.modal-overlay select:focus,
.modal-overlay textarea:focus {
    border-color: var(--accent-blue);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-blue-glow);
}

.modal-overlay select option {
    background-color: var(--bg-dark-card);
    color: #ffffff;
}

/* Mobile adjustments for Modal & Floating Button */
@media (max-width: 768px) {
    .modal-body .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .modal-container {
        padding: 30px 20px;
    }

    /* Smaller WhatsApp float on mobile so it doesn't block content */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Gallery Page & Lightbox Modal Styling
   ========================================================================== */

/* Page Banner Styling */
.page-banner {
    background: linear-gradient(135deg, var(--bg-dark-deep) 40%, rgba(20, 83, 205, 0.15) 100%);
    padding: 50px 0 40px;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    margin-top: 0;
}

.banner-page-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-top: 10px;
    letter-spacing: -1px;
    color: #ffffff;
}

.banner-page-subtitle {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery-page-section {
    padding: 60px 0 80px;
    background-color: var(--bg-dark-main);
}

.gallery-section-desc {
    max-width: 700px;
    margin: 12px auto 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--bg-dark-card);
    cursor: pointer;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    border-color: rgba(255, 208, 0, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 11, 14, 0.95) 0%, rgba(10, 11, 14, 0.7) 50%, rgba(10, 11, 14, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    z-index: 2;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: auto; /* Push content to bottom */
    align-self: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-zoom-icon {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-blue);
    transform: rotate(90deg);
}

.gallery-hover-overlay h4 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.gallery-hover-overlay p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(6, 7, 10, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2002;
    line-height: 1;
}

.lightbox-close:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.lightbox-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2001;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.lightbox-details {
    text-align: center;
    margin-top: 24px;
    width: 100%;
}

.lightbox-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.lightbox-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery CTA */
.gallery-cta {
    padding: 100px 0;
    background-color: var(--bg-dark-deep);
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.gallery-cta-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.gallery-cta-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 36px;
    color: var(--text-secondary);
}

.gallery-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Mobile responsive fixes for gallery */
@media (max-width: 768px) {
    .page-banner {
        padding: 30px 0 20px;
    }
    
    .banner-page-content h1 {
        font-size: 2.2rem;
    }
    
    .gallery-page-section {
        padding: 35px 0 60px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-cta {
        padding: 60px 0;
    }
    
    .gallery-cta-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .gallery-cta-actions .btn {
        width: 80%;
        max-width: 320px;
    }
    
    .lightbox-overlay {
        padding: 20px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }
}


