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

:root {
    --color-primary: #2d2d2d;
    --color-secondary: #e0e0e0;
    --color-accent: #C9A961;
    --color-gold: #B8964F;
    --color-gray: #898984;
    --color-text: #2d2d2d;
    --color-text-light: #898984;
    --color-bg: #f5f5f5;
    --color-border: #898984;
    --color-white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: #ffffff;
    overflow-x: hidden;
}

/* Ensure all content is always visible - no animations on scroll */
* {
    animation: none !important;
    opacity: 1 !important;
}

/* Allow only specific animations */
.modal-img {
    animation: zoomIn 0.3s ease !important;
}

.whatsapp-float::before {
    animation: pulse 2s infinite !important;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(137, 137, 132, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.logo span {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--color-accent);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    margin-top: 72px;
    overflow: hidden;
    background: #0f0f0f;
    color: var(--color-white);
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    visibility: hidden;
    display: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
    visibility: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.hero-slide:not(.active) .hero-content {
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 15, 15, 0.85) 0%, rgba(15, 15, 15, 0.6) 35%, rgba(15, 15, 15, 0.2) 65%, rgba(15, 15, 15, 0.05) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 580px;
    padding: 0 24px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
    visibility: hidden;
}

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

.hero-content h1 {
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--color-white);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.hero-navigation {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 5;
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--color-accent);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .hero-content {
        max-width: 520px;
        padding: 0 32px;
    }

    .hero-navigation {
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 90vh;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 24px;
        text-align: center;
        align-items: center;
    }

    .hero-content h1 {
        font-size: clamp(32px, 8vw, 48px);
    }

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

@media (max-width: 560px) {
    .hero {
        height: 80vh;
    }

    .hero-navigation {
        bottom: 24px;
        gap: 12px;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
    }

    .hero-nav svg {
        width: 18px;
        height: 18px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-accent);
    color: var(--color-white);
.hero-slide:not(.active) .hero-btn {
    display: none;
}
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.hero-btn:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(138, 102, 47, 0.4);
}

/* Section Styles */
section {
    padding: 100px 0;
}



.intro-highlight {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.05));
    padding: 32px 40px;
    border-radius: 16px;
    border: 2px solid var(--color-accent);
    margin: 50px auto;
    max-width: 700px;
    position: relative;
    box-shadow: 0 8px 32px rgba(201, 169, 97, 0.15);
}

.intro-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.intro-founder {
    font-size: 22px;
    color: var(--color-white);
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.intro-founder strong {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 24px;
}

.intro-description {
    font-size: 20px;
    line-height: 1.9;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.intro-services {
    margin-top: 50px;
    padding: 0;
    background: transparent;
}

.intro-services > p {
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 35px auto;
    max-width: 1000px;
}

.service-icon-card {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.12), rgba(201, 169, 97, 0.03));
    padding: 35px 25px;
    border-radius: 16px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    text-align: center;
    transition: var(--transition);
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.service-icon-card:hover {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.25), rgba(201, 169, 97, 0.08));
    border-color: var(--color-accent);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.25);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-white);
    stroke-width: 2;
}

.service-icon-card:hover .service-icon {
    background: var(--color-gold);
    transform: scale(1.1) rotate(5deg);
}

.service-icon-card span {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.intro-location {
    margin-top: 35px;
    font-size: 18px;
    color: var(--color-accent);
    font-style: italic;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* About Section */
.about-section {
    background: #2d2d2d;
}

.about-section .section-header h2,
.about-section .section-header p {
    color: var(--color-accent);
}

.about-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.about-section .intro-highlight {
    max-width: 900px;
    margin: 40px auto;
}

.about-section .intro-description {
    max-width: 900px;
    margin: 30px auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.about-section .intro-services {
    max-width: 900px;
    margin: 40px auto 60px;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.story-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    flex-shrink: 0;
}

.story-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-accent);
}

.story-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.about-facility {
    background: #3a3a3a;
    color: var(--color-white);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--color-accent);
}

.facility-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.facility-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.facility-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-weight: 600;
}

.facility-address svg {
    color: var(--color-accent);
}

/* Services Section */
.services-section {
    background: #3a3a3a;
}

.services-section .section-header h2 {
    color: var(--color-accent);
}

.services-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(201, 169, 97, 0.08);
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid rgba(201, 169, 97, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(201, 169, 97, 0.25);
    border-color: var(--color-accent);
}

.service-content {
    padding: 40px 32px;
    text-align: center;
    width: 100%;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-accent);
}

.service-content p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Portfolio Section */
.portfolio-section {
    background: #2d2d2d;
}

.portfolio-section .section-header h2 {
    color: var(--color-accent);
}

.portfolio-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.portfolio-category {
    margin: 80px 0 40px;
    text-align: center;
}

.portfolio-category:first-of-type {
    margin-top: 60px;
}

.category-title {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.portfolio-carousel {
    position: relative;
    overflow: hidden;
    margin: 30px 0;
}

.portfolio-carousel-container {
    overflow: hidden;
    position: relative;
}

.portfolio-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.portfolio-carousel .portfolio-item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 169, 97, 0.9);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--color-accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.carousel-prev:active,
.carousel-next:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev svg,
.carousel-next svg {
    width: 24px;
    height: 24px;
}

.carousel-prev:disabled,
.carousel-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 45, 45, 0.9), transparent);
    padding: 24px;
    transform: translateY(100%);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 600;
}

/* Clients Section */
.clients-section {
    background: #3a3a3a;
}

.clients-section .section-header h2 {
    color: var(--color-accent);
}

.clients-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.clients-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.clients-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.clients-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.clients-benefits {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.clients-benefits li {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    padding-left: 8px;
}

.clients-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(173, 150, 110, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(173, 150, 110, 0.3);
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clients-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.client-image {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(201, 169, 97, 0.2);
}

.client-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.3);
    border-color: var(--color-accent);
}

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

.client-image:hover img {
    transform: scale(1.1);
}

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

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 12px;
    color: var(--color-accent);
}

.section-header p {
    font-size: 18px;
    color: var(--color-text-light);
}


/* Contact Section */
.contact-section {
    background: #2d2d2d;
}

.contact-section .section-header h2 {
    color: var(--color-accent);
}

.contact-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(173, 150, 110, 0.3);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.contact-card {
    background: rgba(201, 169, 97, 0.08);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(173, 150, 110, 0.2);
}

.contact-icon {
    width: 72px;
    height: 72px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-icon svg {
    color: var(--color-white);
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-accent);
}

.contact-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

.contact-card a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.contact-card a:hover {
    color: var(--color-accent);
}

.contact-card a[href^="mailto:"] {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.contact-email {
    display: flex;
    justify-content: center;
}

.whatsapp-btn-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-accent);
    color: var(--color-white) !important;
    padding: 12px 24px;
    border-radius: 30px;
    margin-top: 16px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.whatsapp-btn-inline:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(138, 102, 47, 0.3);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(173, 150, 110, 0.4);
    z-index: 999;
    transition: var(--transition);
    cursor: pointer;
}

.whatsapp-float:hover {
    background: var(--color-gold);
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(138, 102, 47, 0.5);
}

.whatsapp-float svg {
    color: var(--color-white);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-accent);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Footer */
.footer {
    background: #2d2d2d;
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: -0.5px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-address {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
}

.footer-phone {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
}

.footer-phone a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

.footer-phone a:hover {
    color: var(--color-gold);
}

.footer-left p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-tagline {
    margin-top: 8px;
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--color-secondary);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal.active {
    display: flex;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.modal-close:hover {
    background: var(--color-gold);
    transform: rotate(90deg);
}

.modal-container {
    max-width: 90vw;
    max-height: 90vh;
}

.modal-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    animation: zoomIn 0.3s ease;
}

/* Animations */
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .clients-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .clients-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .client-image {
        height: 280px;
    }
    
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    
    .services-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .services-list {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 1024px) {
    .logo img {
        height: 45px;
        max-width: 180px;
    }
    
    .footer-logo img {
        height: 40px;
        max-width: 180px;
    }
}

@media (max-width: 640px) {
    .logo img {
        height: 40px;
        max-width: 150px;
    }
    
    .footer-logo img {
        height: 35px;
        max-width: 150px;
    }
}

@media (max-width: 1024px) {
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo img {
        height: 50px;
        max-width: 250px;
    }
    
    .footer-info {
        gap: 15px;
    }
    
    .footer-address {
        font-size: 15px;
    }
    
    .footer-phone {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(137, 137, 132, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        margin-bottom: 40px;
        border-radius: 12px;
    }
    
    .map-container iframe {
        height: 300px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .clients-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

    .section-header h2 {
        font-size: 28px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev svg,
    .carousel-next svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
}

@media (max-width: 640px) {
    .carousel-prev,
    .carousel-next {
        width: 35px;
        height: 35px;
    }
    
    .carousel-prev svg,
    .carousel-next svg {
        width: 18px;
        height: 18px;
    }
    
    .portfolio-carousel .portfolio-item {
        flex: 0 0 100%;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .story-number {
        font-size: 36px;
    }
    
    .intro-founder {
        font-size: 18px;
    }
    
    .intro-founder strong {
        font-size: 20px;
    }
    
    .intro-description {
        font-size: 17px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-icon-card span {
        font-size: 18px;
    }
    
    .service-icon-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .intro-highlight {
        padding: 24px 20px;
    }
    
    .intro-services > p {
        font-size: 20px;
    }
    
    .about-facility {
        padding: 32px 24px;
    }
    
    .clients-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .footer-tagline {
        font-size: 14px;
    }
}
