
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    
    --black: #0A0A0A;
    --charcoal: #1C1C1C;
    --accent: #1f2937;
    --accent-dark: #111827;
    --accent-light: rgba(31, 41, 55, 0.1);
    --cream: #F8F6F3;
    --warm-white: #FDFCFB;
    --stone: #EDE9E3;
    --white: #FFFFFF;

    
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    
    --nav-height: 64px;
    --announcement-height: 40px;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }
address { font-style: normal; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 768px) {
    .container { padding: 0 2rem; }
}

.section {
    padding: 2.5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
    .section-title { font-size: 2.5rem; }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.top-bar {
    background: white;
    color: var(--gray-700);
    height: var(--announcement-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transform: translateY(0);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--gray-200);
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8125rem;
}

.top-bar-text {
    color: var(--gray-600);
    font-size: 0.75rem;
}

.top-bar-text a {
    color: var(--gray-900);
    font-weight: 600;
}

.top-bar-text a:hover {
    text-decoration: underline;
}

.top-bar-message-short {
    display: inline;
}

.top-bar-message-long {
    display: none;
}

@media (min-width: 768px) {
    .top-bar-text {
        font-size: 0.8125rem;
    }

    .top-bar-message-short {
        display: none;
    }

    .top-bar-message-long {
        display: inline;
    }
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .top-bar-social {
        gap: 0.75rem;
    }
}

.top-bar-social a {
    color: var(--gray-500);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.top-bar-social a:hover {
    color: var(--gray-900);
    transform: scale(1.1);
}

.top-bar-social svg {
    width: 16px;
    height: 16px;
}

.header {
    position: fixed;
    top: var(--announcement-height);
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000000;
    transition: top 0.3s ease, box-shadow 0.3s ease;
}

.header .nav {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    position: relative;
}

.nav-logo {
    padding: 0.375rem 0;
}

.header.no-announcement {
    top: 0;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    gap: 1rem;
}

.logo-img {
    height: 28px;
    width: auto;
    border-radius: 4px;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-menu { display: flex; }
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    padding: 0.25rem 0;
    position: relative;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s;
}

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

.nav-cta {
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--accent-dark);
}

.nav-cta::after { display: none; }

.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 6px;
    border-right: 2px solid rgba(255,255,255,0.7);
    border-bottom: 2px solid rgba(255,255,255,0.7);
    transform: rotate(45deg);
    transition: transform 0.2s, border-color 0.2s;
    position: relative;
    top: -2px;
}

.nav-dropdown:hover .dropdown-arrow {
    border-color: white;
    transform: rotate(225deg);
    top: 1px;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu li {
    list-style: none;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.625rem 1.25rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    transition: all 0.2s;
}

.nav-dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
}

.hamburger {
    width: 24px;
    height: 2px;
    background: white;
    position: relative;
    transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: white;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                top 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.3s ease;
    transform-origin: center;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background: white;
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
    background: white;
}

@media (max-width: 1023px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 1rem 1rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.25s ease,
                    visibility 0.25s ease,
                    transform 0.25s ease;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    
    .nav-menu .nav-link {
        display: block;
        font-size: 1rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.85);
        padding: 0.875rem 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        transition: color 0.2s ease, background 0.2s ease;
    }

    .nav-menu .nav-link:last-of-type {
        border-bottom: none;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: #ffffff;
        background: rgba(255,255,255,0.05);
    }

    
    .nav-menu .nav-link::after {
        display: none;
    }

    
    .nav-menu .nav-cta {
        margin-top: 0.5rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        text-align: center;
        background: var(--accent);
        border-radius: 8px;
        border-bottom: none;
    }

    .nav-menu .nav-cta:hover {
        background: var(--accent-dark);
    }
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: calc(var(--nav-height) + var(--announcement-height));
}

.hero.no-announcement {
    margin-top: var(--nav-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem 0;
}

.hero-text {
    max-width: 600px;
}

.hero-tagline {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.25rem;
        line-height: 1.05;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
        letter-spacing: -0.03em;
    }
}

.hero-title-line {
    display: block;
}

.hero-title-line.accent {
    color: white;
    opacity: 0.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

@media (min-width: 480px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

.hero-buttons .btn-primary {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    background: white;
    color: var(--gray-900);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    background: var(--gray-100);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.25),
        0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-outline {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons .btn-outline:hover {
    background: white;
    color: var(--gray-900);
    border-color: white;
    transform: translateY(-3px);
    box-shadow:
        0 8px 30px rgba(255, 255, 255, 0.2),
        0 12px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        padding: 1rem 2rem;
        font-size: 1.0625rem;
    }
}

@media (max-width: 640px) {
    .hero-content.container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    min-height: 44px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    user-select: none;
    position: relative;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--gray-900);
    color: white;
    border-color: var(--gray-900);
}

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

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: white;
    color: var(--gray-900);
    border-color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--gray-700);
    border-color: var(--gray-300);
}

.btn-outline-light:hover {
    background: var(--gray-900);
    color: white;
    border-color: var(--gray-900);
    transform: translateY(-2px);
}

.btn-outline-terracotta {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline-terracotta:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(55, 65, 81, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
    border-color: var(--gray-200);
    box-shadow: none;
}

.btn-ghost:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
    color: var(--gray-900);
    transform: translateY(-1px);
}

.btn-ghost:active {
    background: var(--gray-200);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-radius: 6px;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.0625rem;
    border-radius: 10px;
}

.btn-xl {
    padding: 1.125rem 2.75rem;
    font-size: 1.125rem;
    border-radius: 50px;
    letter-spacing: 0.02em;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.btn:hover .btn-icon {
    transform: translateX(2px);
}

.btn-icon-only {
    padding: 0.75rem;
    border-radius: 8px;
}

.btn-icon-only .btn-icon {
    width: 20px;
    height: 20px;
    margin: 0;
}

.btn-social {
    background: white;
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-social:hover {
    transform: translateY(-2px);
    border-color: var(--gray-300);
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

.btn-facebook:hover {
    background: #1877F2;
    color: white;
    border-color: #1877F2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.btn-link {
    background: transparent;
    color: var(--accent);
    border: none;
    padding: 0.5rem 0;
    font-weight: 600;
    position: relative;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.25s ease;
}

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

.btn-link:hover {
    color: var(--accent-dark);
}

.btn:disabled,
.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
    box-shadow: none;
}

.btn.loading {
    pointer-events: none;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
}

.btn-primary.loading::after,
.btn-secondary.loading::after {
    border-color: white;
    border-right-color: transparent;
}

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

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.about-lead {
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    font-weight: 500;
    line-height: 1.6;
}

.about-text {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.feature-icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.about-image {
    position: relative;
}

.image-frame {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.image-frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-image:hover .image-frame img {
    transform: scale(1.02);
}

.image-accent { display: none; }

.stats {
    background: var(--cream);
    border-top: 1px solid var(--stone);
    border-bottom: 1px solid var(--stone);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number { font-size: 3rem; }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.services-cta {
    margin-top: 1.5rem;
    background: var(--black);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .services-cta {
        grid-template-columns: 1fr 1fr;
        min-height: 280px;
    }
}

.services-cta-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .services-cta-content {
        padding: 2.5rem 3rem;
    }
}

.services-cta-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .services-cta-title {
        font-size: 1.875rem;
    }
}

.services-cta-text {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.services-cta-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    list-style: none;
    padding: 0;
}

.services-cta-list li {
    color: rgba(255,255,255,0.85);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services-cta-list li::before {
    content: '✓';
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .services-cta-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem 2rem;
    }
}

.services-cta .btn-primary {
    align-self: flex-start;
}

.services-cta-image {
    position: relative;
    height: 200px;
}

@media (min-width: 768px) {
    .services-cta-image {
        height: auto;
    }
}

.services-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 20px 20px;
}

@media (min-width: 768px) {
    .services-cta-image img {
        border-radius: 0;
    }
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--gray-300);
}

.service-card:hover .service-icon {
    background: var(--accent);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    color: white;
}

.service-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .service-image { height: 200px; }
}

@media (min-width: 1024px) {
    .service-image { height: 150px; }
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.25rem;
    position: relative;
}

@media (min-width: 768px) {
    .service-content { padding: 1.5rem; }
}

@media (min-width: 1024px) {
    .service-content { padding: 1.25rem; }
}

.service-icon {
    display: none;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .service-title { font-size: 1.25rem; }
}

@media (min-width: 1024px) {
    .service-title { font-size: 1rem; }
}

.service-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.service-features li {
    font-size: 0.6875rem;
    color: var(--gray-600);
    padding: 0.25rem 0.5rem;
    background: var(--gray-100);
    border-radius: 4px;
    font-weight: 500;
}

.service-features li.more {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent);
    transition: color 0.2s ease;
}

.service-link::after {
    content: '\2192';
    transition: transform 0.2s ease;
}

.service-link:hover {
    color: var(--accent-dark);
}

.service-link:hover::after {
    transform: translateX(4px);
}

.projects {
    background: var(--gray-50);
}

.gallery-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: var(--gray-200);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s;
}

@media (min-width: 768px) {
    .gallery-item img { height: 320px; }
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
    transition: all 0.3s;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
}

.gallery-category {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.25rem;
    display: block;
}

.gallery-title {
    font-size: 0.9375rem;
    color: white;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

@media (max-width: 639px) {
    .gallery-overlay {
        transform: translateY(0);
    }
}

.section-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.usp {
    background: var(--white);
}

.usp-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .usp-grid { grid-template-columns: repeat(3, 1fr); }
}

.usp-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.usp-item:hover {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.usp-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 1rem;
    background: var(--accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usp-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.usp-title {
    font-size: 1rem;
    margin-bottom: 0.375rem;
}

.usp-text {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.instagram {
    background: var(--cream);
}

.instagram-feed {
    margin-bottom: 1.25rem;
    min-height: 180px;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
}

.cta-banner {
    position: relative;
    padding: 6rem 0;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.7));
}

.cta-banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-banner-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .cta-banner-title { font-size: 2.5rem; }
}

.cta-banner-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    background: white;
    color: var(--accent-dark);
    border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.cta-banner .btn-large:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    background: var(--cream);
}

.contact {
    background: var(--gray-50);
    position: relative;
}

.contact-compact {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .contact-compact {
        grid-template-columns: 1.2fr 1fr;
    }
}

.contact-compact-form {
    padding: 2rem;
}

@media (min-width: 768px) {
    .contact-compact-form {
        padding: 2.5rem;
    }
}

.contact-compact-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0.5rem 0 0.5rem;
}

.contact-compact-subtitle {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.contact-compact-info {
    background: var(--black);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .contact-compact-info {
        padding: 2.5rem;
    }
}

.contact-compact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.9375rem;
}

.contact-detail svg {
    width: 18px;
    height: 18px;
    color: white;
    flex-shrink: 0;
}

.contact-detail a {
    color: rgba(255,255,255,0.9);
    transition: color 0.2s;
}

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

.contact-compact-image {
    flex: 1;
    min-height: 140px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-compact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-compact-social {
    display: flex;
    gap: 0.5rem;
}

.contact-compact-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.contact-compact-social a:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.contact-compact-social svg {
    width: 18px;
    height: 18px;
    color: white;
}

.contact-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 2.5rem;
        align-items: start;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    border-color: var(--gray-300);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

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

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(55, 65, 81, 0.25);
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card-content h3 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 0.375rem;
}

.contact-card-content p {
    color: var(--gray-800);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
}

.contact-card-content a {
    color: var(--accent);
    font-weight: 600;
    transition: color 0.2s ease;
}

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

.hours-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.375rem 1rem;
    font-size: 0.875rem;
}

.hours-grid span:nth-child(odd) {
    color: var(--gray-600);
}

.hours-grid span:nth-child(even) {
    color: var(--accent);
    font-weight: 600;
    text-align: right;
}

.contact-social {
    padding: 1rem 1.25rem;
    background: var(--accent);
    border-radius: 10px;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-social h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.9);
    margin: 0;
    white-space: nowrap;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: white;
}

.social-links a:hover svg {
    color: var(--accent-dark);
}

.social-links svg {
    width: 18px;
    height: 18px;
    color: white;
    transition: color 0.2s ease;
}

.contact-form-wrapper {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 1.25rem;
    border: 1px solid var(--gray-100);
}

@media (min-width: 768px) {
    .contact-form-wrapper { padding: 1.5rem; }
}

.form-title {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.form-subtitle {
    color: var(--gray-500);
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    gap: 0.875rem;
}

@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--gray-800);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    transition: all 0.2s;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--gray-400);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.5rem;
}

.footer {
    background: var(--charcoal);
    color: white;
    padding-top: 0;
    position: relative;
}

.footer::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.footer-inner {
    padding-top: 2.5rem;
}

.footer-logo {
    height: 56px;
    width: auto;
    padding: 0.625rem;
    background: var(--black);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.footer-main {
    display: grid;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 2rem;
    }
}

.footer-description {
    color: rgba(255,255,255,0.6);
    font-size: 0.8125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    transform: translateY(-2px) scale(1.1);
}

.footer-social a:first-child:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social a:last-child:hover {
    background: #1877F2;
}

.footer-social svg {
    width: 16px;
    height: 16px;
    color: white;
}

.footer-title {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.8125rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact address {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 0.8125rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-contact a {
    color: rgba(255,255,255,0.9);
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-tagline {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-tagline span {
    color: white;
    font-weight: 600;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms;
        transition-duration: 0.01ms;
    }
}

@media (max-width: 767px) {
    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.9375rem; }

    .hero { min-height: 80vh; }
    .hero-title { font-size: 2rem; }
    .hero-description { font-size: 0.9375rem; }

    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        min-height: 44px;
    }
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        min-height: 48px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero { min-height: 85vh; }

    .section-subtitle {
        font-size: 1rem;
        max-width: 560px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }

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




.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: calc(var(--nav-height) + var(--announcement-height));
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 100%
    );
}

.page-hero-content {
    text-align: center;
    padding: 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-content .section-tag {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-hero {
        min-height: 60vh;
    }
    .page-hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .page-hero-title {
        font-size: 3.5rem;
    }
}

.page-hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}


.about-page {
    background: var(--white);
}

.about-page-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-page-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }
}

.about-page-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-page-image .image-frame img {
    aspect-ratio: 4/3;
}


.about-services {
    background: var(--cream);
}

.about-services-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-services-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
    }
}

.about-services-content .section-tag {
    margin-bottom: 0.5rem;
}

.about-services-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-services-image .image-frame img {
    aspect-ratio: 4/3;
}


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

@media (max-width: 767px) {
    .stats-grid-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .stats-grid-3 .stat-item {
        padding: 1.25rem;
    }
}

@media (min-width: 768px) {
    .stats-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}


.certifications {
    background: var(--white);
}

.certifications-grid {
    display: grid;
    gap: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .certifications-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: none;
    }
}

.certification-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--stone);
}

.certification-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.certification-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

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

.cert-placeholder svg {
    width: 40px;
    height: 40px;
    color: white;
}

.certification-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.certification-text {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}


.environment {
    background: var(--accent);
    color: white;
}

.environment-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.environment-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.environment-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.environment-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .environment-title {
        font-size: 2rem;
    }
}

.environment-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}




.service-detail {
    background: var(--white);
}

.service-detail.alt-bg {
    background: var(--cream);
}

.service-detail-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }

    .service-detail-grid.reverse {
        grid-template-columns: 1fr 1.2fr;
    }

    .service-detail-grid.reverse .service-detail-image {
        order: -1;
    }
}

.service-detail-content .section-tag {
    margin-bottom: 0.5rem;
}

.service-detail-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-detail-image .image-frame img {
    aspect-ratio: 4/3;
}


.services-other {
    background: var(--cream);
}

.services-other-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .services-other-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .services-other-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.service-other-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--stone);
}

.service-other-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.service-other-item svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.service-other-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}



.page-hero-small {
    min-height: 40vh;
}

@media (min-width: 768px) {
    .page-hero-small {
        min-height: 45vh;
    }
}


.contact-page {
    background: var(--cream);
    padding: 4rem 0;
}

.contact-page-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-page-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

.contact-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.contact-page-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}


.contact-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--stone);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

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

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

.contact-info-item:first-of-type {
    padding-top: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    justify-content: center;
}

.contact-info-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

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


.contact-social-card {
    background: var(--gray-900);
    border-radius: 16px;
    padding: 1.5rem 2rem;
}

.contact-social-card .contact-info-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.contact-social-buttons {
    display: flex;
    gap: 0.75rem;
}

.contact-social-buttons .btn-social {
    flex: 1;
    justify-content: center;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    border-radius: 10px;
}


.map-section {
    padding: 3rem 0;
    background: var(--cream);
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    display: block;
    border: 0;
    border-radius: 12px;
}


.contact-page-form {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--stone);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
    .contact-page-form {
        padding: 2rem;
    }
}

.contact-page-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


.footer-cert {
    margin-top: 1.5rem;
}

.footer-cert-img {
    width: 80px;
    height: auto;
    border-radius: 8px;
}

.references {
    background: var(--cream);
}

.references-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .references-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.reference-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--stone);
}

.reference-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.reference-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.reference-card:hover .reference-image img {
    transform: scale(1.05);
}

.reference-content {
    padding: 1.25rem;
}

.reference-category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: var(--accent-light);
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.reference-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.reference-text {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.instagram {
    background: var(--white);
}

.instagram-feed {
    margin-bottom: 2rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-social:hover {
    border-color: var(--gray-300);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-social .btn-icon {
    width: 20px;
    height: 20px;
}

.cta-banner-light {
    background: var(--white);
    padding: 4rem 0;
    position: relative;
}

.cta-banner-light .cta-banner-content {
    text-align: center;
}

.cta-banner-light .cta-banner-title {
    color: var(--gray-900);
    text-shadow: none;
}

.cta-banner-light .cta-banner-text {
    color: var(--gray-600);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 8px;
    opacity: 0.8;
    transition: all 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}
