/* ============================================
   TWARIST JUVENOR HR SOLUTIONS - Main Styles
   Premium Dark Theme with Gold Accents
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #0a0e27;
    --primary-light: #131842;
    --secondary: #1a1a4e;
    --accent: #f0c040;
    --accent-hover: #ffcf4a;
    --accent-dark: #c9a020;
    --blue: #4a9eff;
    --purple: #6c5ce7;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 20px;
    --radius-sm: 12px;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-dim: rgba(255, 255, 255, 0.35);
    --success: #2ecc71;
    --danger: #e74c3c;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, var(--accent), #ff9020);
    z-index: 10001;
    transition: width 0.1s ease;
}

/* Floating Particles Background */
.bg-particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(2px);
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(100vw, 100vh) rotate(360deg);
    }
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at 50% 50%, #1a1a4e 0%, #0a0e27 100%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}



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

@media (max-width: 600px) {
    .preloader-logo {
        height: 60px;
        margin-bottom: 20px;
    }
    
    .preloader .spinner {
        width: 40px;
        height: 40px;
    }
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 18px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.92);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.navbar .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 90px;
    width: auto;
    transition: var(--transition);
    object-fit: contain;
    border-radius: 4px;
}

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

.navbar.scrolled .logo-img {
    height: 75px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    background: var(--glass);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.nav-cta {
    padding: 10px 24px !important;
    background: linear-gradient(135deg, var(--accent), #ff9020) !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 192, 64, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 6px 0;
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a4e 40%, #0d1435 100%);
    padding-top: 100px;
    /* clears fixed navbar (~90px) */
    padding-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(74, 158, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(240, 192, 64, 0.06) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease both;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), #ff9020);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
}

.hero-stats .stat-label {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 4px;
}

/* Floating particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.15;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    90% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #ff9020);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(240, 192, 64, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: var(--glass);
    border-color: var(--accent);
    color: var(--accent);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
}

/* ============ SECTIONS ============ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(240, 192, 64, 0.1);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--accent), #ff9020);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark {
    background: var(--primary-light);
}

/* ============ CARDS ============ */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 192, 64, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.glass-card:hover::before {
    opacity: 1;
}

/* ============ SERVICE CARDS ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(240, 192, 64, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(240, 192, 64, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(240, 192, 64, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--primary);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.about-image {
    position: relative;
}

.about-image .img-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
}

.about-image .img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: var(--primary-light);
    border-radius: var(--radius);
}

.about-image .floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--accent), #ff9020);
    color: var(--primary);
    padding: 20px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow);
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    font-size: 14px;
    font-weight: 500;
}

.about-feature i {
    color: var(--accent);
    font-size: 16px;
}

/* ============ PROCESS/STEPS ============ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ff9020);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 16px;
}

.process-step h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============ WHY CHOOSE US ============ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

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

.why-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1), rgba(108, 92, 231, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--blue);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-card:hover .icon {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

/* ============ GALLERY ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    background: var(--primary-light);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item .overlay h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.gallery-item .overlay p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============ SLIDESHOW LIGHTBOX ============ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(5, 7, 22, 0.97);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.lightbox.active {
    display: flex;
}

/* Close button */
.lightbox .close-btn,
#lightboxClose {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox .close-btn:hover,
#lightboxClose:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: rotate(90deg);
}

/* Prev / Next nav */
.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lb-nav:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.lb-prev {
    left: 24px;
}

.lb-next {
    right: 24px;
}

/* Image content */
.lb-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    text-align: center;
}

.lb-content img {
    max-width: 85vw;
    max-height: 78vh;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    object-fit: contain;
}

/* Caption */
.lb-caption {
    margin-top: 16px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    max-width: 600px;
    line-height: 1.5;
}

.lb-caption strong {
    color: var(--accent);
    font-weight: 700;
}

/* Counter */
.lb-counter {
    margin-top: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

/* Responsive nav */
@media (max-width: 640px) {
    .lb-prev {
        left: 10px;
    }

    .lb-next {
        right: 10px;
    }

    .lb-nav {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .lb-content img {
        max-width: 92vw;
        max-height: 65vh;
        border-radius: 10px;
    }

    #lightboxClose {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
}

/* ============ CONTACT FORM ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--secondary), var(--primary-light));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.contact-info-card>p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item .ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(240, 192, 64, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 13px;
    color: var(--text-muted);
}

.form-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.1);
}

.form-control::placeholder {
    color: var(--text-dim);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ============ MISSION/VISION ============ */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 44px;
    position: relative;
    overflow: hidden;
}

.mv-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(240, 192, 64, 0.08), transparent);
}

.mv-card .mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #ff9020);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 24px;
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.mv-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.mv-card ul {
    list-style: none;
    padding: 0;
}

.mv-card ul li {
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--glass-border);
}

.mv-card ul li:last-child {
    border-bottom: none;
}

.mv-card ul li i {
    color: var(--accent);
    font-size: 14px;
}

/* ============ FOOTER ============ */
.footer {
    position: relative;
    z-index: 10;
    background: #0a0e27;
    padding: 100px 0 0;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.footer-wave .shape-fill {
    fill: #0d1435;
}

.footer-glow {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 192, 64, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.pre-footer-cta {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pre-footer-cta .cta-text h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.pre-footer-cta .cta-text p {
    color: var(--text-muted);
    font-size: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text);
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    font-size: 14px;
    color: #ffffff !important;
    opacity: 0.75;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    font-size: 10px;
    color: var(--accent);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent) !important;
    opacity: 1;
    transform: translateX(10px);
}

.footer-links a:hover i {
    transform: scale(1.5);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    font-size: 13px;
    color: var(--text-dim);
    position: relative;
    z-index: 2;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-5px) rotate(8deg);
}

/* ============ PAGE BANNER ============ */
.page-banner {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #0a0e27, #1a1a4e);
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 80%, rgba(240, 192, 64, 0.06), transparent 60%);
}

.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 12px;
    position: relative;
}

.page-banner .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    position: relative;
}

.page-banner .breadcrumb a {
    color: var(--accent);
}

/* ============ ALERTS / MESSAGES ============ */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: var(--success);
}

.alert-danger {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: var(--danger);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 1100px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary-light);
        flex-direction: column;
        padding: 100px 24px 24px;
        gap: 8px;
        transition: var(--transition);
        border-left: 1px solid var(--glass-border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(30px);
        align-items: flex-start;
    }

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

    .nav-links a {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }

    .nav-cta {
        margin-top: 20px;
        text-align: center;
        justify-content: center;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .navbar .logo {
        font-size: 20px;
    }
}

@media (max-width: 992px) {

    .about-grid,
    .contact-grid,
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        gap: 32px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .why-img-row {
        grid-template-columns: 1fr;
    }

    .office-grid {
        grid-template-columns: 1fr;
    }

    .office-img-stack {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .services-img-grid {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gp-large {
        grid-column: span 2;
    }

    .stats-banner-grid {
        grid-template-columns: 1fr 1fr;
    }

    .val-card {
        flex-direction: column;
    }

    .val-img {
        width: 100%;
        height: 180px;
    }

    .office-img-stack {
        grid-template-columns: 1fr;
    }

    .pre-footer-cta {
        flex-direction: column;
        gap: 24px;
        padding: 30px 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }

    .gp-large {
        grid-column: span 1;
    }

    .stats-banner-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NEW COMPONENTS - Image-based layouts
   ============================================ */

/* --- Image-based Service Cards --- */
.services-img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.svc-img-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.svc-img-card:hover {
    transform: translateY(-10px);
    border-color: rgba(240, 192, 64, 0.3);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.svc-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.svc-img-card:hover .svc-img-wrap img {
    transform: scale(1.08);
}

.svc-img-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #ff9020);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    box-shadow: 0 6px 20px rgba(240, 192, 64, 0.4);
}

.svc-img-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svc-img-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.svc-img-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

/* --- Industry Sector Grid --- */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.industry-card {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.industry-card:hover img {
    transform: scale(1.12);
    filter: brightness(0.45);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    transition: var(--transition);
}

.industry-overlay i {
    font-size: 28px;
    color: var(--accent);
}

.industry-overlay span {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

.industry-card:hover .industry-overlay {
    background: rgba(10, 14, 39, 0.2);
}

/* --- Why Choose Us Split Layout --- */
.why-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-img-col>img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    object-fit: contain;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: var(--radius-sm);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.why-list-item:hover {
    border-color: rgba(240, 192, 64, 0.2);
    transform: translateX(6px);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(240, 192, 64, 0.15), rgba(255, 144, 32, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.why-list-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-list-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Gallery Preview Grid (Home) --- */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gp-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    aspect-ratio: 4/3;
}

.gp-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease;
}

.gp-item:hover img {
    transform: scale(1.08);
}

.gp-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gp-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.9) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

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

.gp-item .overlay h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.gp-item .overlay p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Stats Banner --- */
.stats-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(240, 192, 64, 0.08) 0%, rgba(255, 144, 32, 0.05) 100%);
    border-top: 1px solid rgba(240, 192, 64, 0.1);
    border-bottom: 1px solid rgba(240, 192, 64, 0.1);
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stats-banner-item {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.stats-banner-item>i {
    font-size: 36px;
    color: var(--accent);
    opacity: 0.9;
    flex-shrink: 0;
}

.stats-banner-item strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    line-height: 1;
}

.stats-banner-item span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* --- Office / Team Image Grid (About) --- */
.office-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
    align-items: start;
}

.office-img-main img {
    width: 100%;
    border-radius: var(--radius);
    height: 480px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
}

.office-img-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.office-img-stack img {
    width: 100%;
    border-radius: var(--radius-sm);
    height: 148px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.office-img-stack img:hover {
    transform: scale(1.03);
    border-color: rgba(240, 192, 64, 0.3);
}

/* --- Values with Image (About) --- */
.values-img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.val-card {
    display: flex;
    flex-direction: column;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.val-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 192, 64, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.val-img {
    height: 180px;
    overflow: hidden;
}

.val-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.5s ease;
    filter: brightness(0.75);
}

.val-card:hover .val-img img {
    transform: scale(1.06);
    filter: brightness(0.65);
}

.val-body {
    padding: 28px;
}

.val-body .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #ff9020);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 16px;
}

.val-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.val-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- Process icons (Home) --- */
.process-icon {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 12px;
    opacity: 0.8;
}

/* ============ RESPONSIVE for new components ============ */
@media (max-width: 1100px) {
    .services-img-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gp-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-img-grid {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-img-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-img-col>img {
        height: 260px;
    }

    .office-grid {
        grid-template-columns: 1fr;
    }

    .office-img-main img {
        height: 260px;
    }

    .office-img-stack {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .office-img-stack img {
        height: 100px;
    }

    .values-img-grid {
        grid-template-columns: 1fr;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gp-large {
        grid-column: span 2;
    }

    .stats-banner-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-banner-item {
        justify-content: flex-start;
    }
}

@media (max-width: 500px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }

    .gp-large {
        grid-column: span 1;
    }

    .stats-banner-grid {
        grid-template-columns: 1fr;
    }

    .office-img-stack {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SERVICES IMAGE GRID (Index / Mission)
   ============================================ */
.services-img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.svc-img-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.svc-img-card:hover {
    transform: translateY(-10px);
    border-color: rgba(240, 192, 64, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.svc-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--primary-light);
    border-bottom: 1px solid var(--glass-border);
}

.svc-img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-img-card:hover .svc-img-wrap img {
    transform: scale(1.1);
}

.svc-img-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.svc-img-body {
    padding: 25px;
}

.svc-img-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.svc-img-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link:hover {
    gap: 12px;
}

/* ============================================
   SERVICE DETAIL SECTIONS (services.php)
   ============================================ */
.svc-detail-section {
    padding: 80px 0;
}

.svc-detail-section:first-of-type {
    padding-top: 40px;
}

.svc-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.svc-detail-row-rev {
    direction: rtl;
}

.svc-detail-row-rev>* {
    direction: ltr;
}

/* Image side */
.svc-detail-img {
    position: relative;
}

.svc-detail-img img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    object-position: center 15%;
    background: var(--primary-light);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    display: block;
    transition: transform 0.5s ease;
}

.svc-detail-img:hover img {
    transform: scale(1.02);
}

.svc-detail-badge {
    position: absolute;
    bottom: -18px;
    left: 32px;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), #ff9020);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(240, 192, 64, 0.4);
}

/* Text side */
.svc-detail-body {
    padding: 20px 0;
}

.svc-detail-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    margin: 12px 0 20px;
    line-height: 1.2;
}

.svc-detail-body p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.svc-detail-body .btn {
    margin-top: 10px;
}

/* Feature bullet list */
.svc-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.svc-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    padding: 8px 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

.svc-feature-list li i {
    color: var(--accent);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive: service detail */
@media (max-width: 992px) {
    .svc-detail-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .svc-detail-row-rev {
        direction: ltr;
    }

    .svc-detail-img img {
        height: 280px;
    }

    .svc-feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .svc-detail-img img {
        height: 220px;
    }

    .svc-detail-badge {
        width: 48px;
        height: 48px;
        font-size: 18px;
        bottom: -14px;
        left: 20px;
    }

    .svc-detail-body h2 {
        font-size: 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* Navbar Mobile Logo */
    .logo-img {
        height: 60px;
    }
    
    .navbar.scrolled .logo-img {
        height: 55px;
    }
    
    /* Section Spacing */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 420px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 15px;
    }
}