/* =========================================
   LAZARUS TURNKEY — Premium Design System
   ========================================= */

/* CSS Variables */
:root {
    /* Brand Colors */
    --color-primary: #F17F20;
    --color-primary-dark: #d86a10;
    --color-primary-light: #f9a84c;
    --color-primary-glow: rgba(241, 127, 32, 0.35);
    --color-secondary: #1a2332;
    --color-secondary-light: #2e3e52;
    --color-accent: #e8a44a;
    color-scheme: light;


    /* Neutral Colors */
    --color-bg: #fafbfc;
    --color-bg-alt: #f1f3f6;
    --color-text: #2c3e50;
    --color-text-light: #6b7c93;
    --color-white: #ffffff;
    --color-border: rgba(0, 0, 0, 0.06);

    /* Layout & Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Visual Effects */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 8px 30px var(--color-primary-glow);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(20px);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-secondary);
    font-weight: 700;
    line-height: 1.2;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.bg-light {
    background: linear-gradient(135deg, #f5f7fa 0%, #ebeff5 100%);
}

/* ============ Typography ============ */
.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-sm);
    position: relative;
    letter-spacing: -0.02em;
}

.divider {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    margin: 0 auto var(--spacing-md);
    border-radius: 2px;
}

.divider.align-left {
    margin: 0 0 var(--spacing-md) 0;
}

.section-desc {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============ Buttons ============ */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--color-primary-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-secondary);
    border-color: var(--color-white);
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============ Navbar ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-smooth);
    padding: var(--spacing-sm) 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
    padding: 6px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 100px;
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-logo {
    height: 60px;
}

@media (max-width: 768px) {
    .nav-logo {
        height: 70px;
    }
    .navbar.scrolled .nav-logo {
        height: 45px;
    }
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    font-weight: 600;
    color: var(--color-white);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.navbar.scrolled .nav-link {
    color: var(--color-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transition: var(--transition-smooth);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-contact {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white) !important;
    padding: 0.65rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 25px var(--color-primary-glow);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-white);
    border-radius: 2px;
}

.navbar.scrolled .bar {
    background-color: var(--color-secondary);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ============ Hero Section ============ */
.hero {
    height: 100vh;
    min-height: 650px;
    background: linear-gradient(160deg, rgba(26, 35, 50, 0.88) 0%, rgba(26, 35, 50, 0.5) 50%, rgba(241, 127, 32, 0.2) 100%),
        url('hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(241, 127, 32, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding-top: 80px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(241, 127, 32, 0.15);
    border: 1px solid rgba(241, 127, 32, 0.3);
    color: var(--color-primary-light);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    transform: translateY(20px);
}

.hero-title {
    color: var(--color-white);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    letter-spacing: -0.03em;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    transform: translateY(30px);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    transform: translateY(30px);
    font-weight: 400;
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    transform: translateY(30px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 13px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

/* ============ Animations ============ */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============ Services Section ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
    height: 340px;
    border: 1px solid var(--color-border);
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.service-card:hover .service-img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.95) 0%, rgba(26, 35, 50, 0.3) 50%, transparent 100%);
    transition: var(--transition-smooth);
}

.service-card:hover .service-overlay {
    background: linear-gradient(to top, rgba(26, 35, 50, 0.98) 0%, rgba(26, 35, 50, 0.5) 60%, rgba(26, 35, 50, 0.2) 100%);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    z-index: 2;
    transform: translateY(0);
    transition: var(--transition-smooth);
}

.service-title {
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
    font-size: 1.3rem;
    font-weight: 700;
}

.service-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 1;
    transition: var(--transition-smooth);
}

/* ============ About Section ============ */
.about.section {
    position: relative;
    overflow: hidden;
}

.about.section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-light));
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-light);
    line-height: 1.8;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-md);
}

.features-list li {
    margin-bottom: 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    padding-left: 0.5rem;
}

.features-list li:last-child .feature-item {
    border-bottom: none;
}

.feature-item .icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 2px;
    box-shadow: 0 3px 10px var(--color-primary-glow);
}

.feature-item strong {
    display: block;
    font-size: 1.05rem;
    color: var(--color-secondary);
    margin-bottom: 0.2rem;
}

.feature-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

.about-image-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(241, 127, 32, 0.08), transparent 70%);
    pointer-events: none;
}

.about-logo {
    max-width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============ Projects Section ============ */
.projects-subheader {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    text-align: left;
}

.projects-subheader h3 {
    font-size: 1.8rem;
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
}

.projects-subheader h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    border-radius: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.project-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* ============ Contact Section ============ */
.contact.section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-desc {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
    line-height: 1.8;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    font-size: 1.3rem;
    background: linear-gradient(135deg, rgba(241, 127, 32, 0.12), rgba(241, 127, 32, 0.05));
    color: var(--color-primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 2px;
    font-size: 1rem;
}

.info-item p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Contact Form — Glassmorphism */
.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8ecf1;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    background: var(--color-white);
    color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-primary-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0bec5;
}

.form-status {
    margin-top: var(--spacing-sm);
    text-align: center;
    font-weight: 600;
    min-height: 24px;
    border-radius: var(--radius-sm);
    padding: 0.5rem;
}

.form-status.success {
    color: #2e7d32;
    background: rgba(46, 125, 50, 0.08);
}

.form-status.error {
    color: #c62828;
    background: rgba(198, 40, 40, 0.08);
}

/* ============ Footer ============ */
.footer {
    background: linear-gradient(160deg, var(--color-secondary) 0%, #0f1923 100%);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-sm);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    height: 60px;
    margin-bottom: var(--spacing-sm);
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
    line-height: 1.7;
}

.partners-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.partner-link {
    text-align: center;
    transition: var(--transition-smooth);
}

.partner-link:hover {
    transform: translateY(-3px);
}

.partner-logo {
    height: 45px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    background-color: var(--color-white);
    padding: 6px 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.partner-link:hover .partner-logo {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.footer h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 8px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ============ WhatsApp Button ============ */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-bounce);
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

/* Pulse animation on WhatsApp */
.whatsapp-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ============ Media Queries ============ */
@media (max-width: 992px) {
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .about.section::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease;
    }

    .nav-menu.active {
        top: 0;
    }

    .nav-menu .nav-link {
        color: var(--color-secondary);
        font-size: 1.3rem;
    }

    .nav-logo {
        height: 45px;
    }

    .hero {
        min-height: 550px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .service-card {
        height: 280px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto var(--spacing-sm);
    }

    .footer-brand p {
        max-width: 100%;
    }

    .partners-logos {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .whatsapp-button {
        bottom: 20px !important;
        left: 20px !important;
        right: auto !important;
        width: 54px;
        height: 54px;
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: var(--spacing-lg) 0;
    }

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

    .projects-subheader h3 {
        font-size: 1.5rem;
    }

    .project-card {
        height: 250px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card {
        height: 260px;
    }
}

/* ============ Under Construction Banner ============ */
.construction-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    background-color: var(--color-primary); /* Fallback */
    color: var(--color-white) !important;
    text-align: center;
    padding: 8px 40px;
    z-index: 10001; /* Above navbar */
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.4;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bannerPulse 3s infinite;
    min-height: 40px;
}

@media (max-width: 600px) {
    .construction-banner {
        padding: 8px 30px;
        font-size: 0.75rem;
    }
}


.construction-close {
    position: absolute;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.construction-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

@keyframes bannerPulse {
    0% { background-color: var(--color-primary); }
    50% { background-color: var(--color-primary-dark); }
    100% { background-color: var(--color-primary); }
}

/* Push navbar down when banner is present 
body { padding-top: 40px; } 

.navbar { 
    top: 0; 
    transition: top 0.3s ease; 
} 

@media (max-width: 600px) {
    body { padding-top: 0; }
    .navbar { top: 0; }
}
*/

/* ============ Lightbox ============ */
.lightbox {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img,
.lightbox-canvas {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    object-fit: contain;
    display: block;
}

.lightbox.active img,
.lightbox.active .lightbox-canvas {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 1.8rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* ============ Cookie Banner ============ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 10000;
    padding: var(--spacing-sm) var(--spacing-md);
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--color-text);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
    }
}

/* ============ FAQ Section ============ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding: 0 1.5rem;
    background-color: var(--color-white);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============ Image Watermarks ============ */
.gallery-item::after,
.service-watermark-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    transform: translate(-50%, -50%);
    background: url('Logo Main.png') center/contain no-repeat;
    opacity: 0.15; /* Highly transparent */
    pointer-events: none; /* Allows clicking through to images */
    z-index: 5;
}

.service-watermark-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    cursor: pointer;
}

.service-watermark-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    transition: transform 0.3s ease !important;
}

.service-watermark-wrapper:hover img {
    transform: scale(1.02) !important;
}