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

:root {
    --primary-color: #00b4d8;
    --secondary-color: #0077b6;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --accent: #00d4ff;
    --gradient: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
}

body {
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: -0.02em;
}

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

/* Top Banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    background: transparent;
    transition: all 0.3s ease;
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.banner-logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    opacity: 0.9;
}

.banner-logo-img:hover {
    opacity: 1;
}


/* Scroll effect for banner */
.top-banner.scrolled {
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

/* Hero Section */
.hero {
    margin-top: 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carousel Container */
.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #111;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.carousel-slide img,
.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: #111;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.carousel-slide img {
    image-rendering: auto;
    filter: blur(3px) brightness(0.78) saturate(0.95);
    transform: scale(1.06) translateZ(0);
}

.carousel-slide video {
    pointer-events: none;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 90% 75% at 50% 42%, rgba(6, 8, 10, 0.62) 0%, rgba(6, 8, 10, 0.38) 55%, rgba(6, 8, 10, 0.22) 100%),
        linear-gradient(180deg, rgba(8, 10, 12, 0.2) 0%, rgba(8, 10, 12, 0.48) 100%);
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(circle at 50% 40%, transparent 0%, rgba(0, 0, 0, 0.06) 100%);
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.carousel-btn:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: rgba(255, 255, 255, 0.8);
    width: 24px;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    width: 100%;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content * {
    pointer-events: auto;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.35);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    padding: 1rem 3rem;
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.btn-primary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--dark-bg);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: transparent;
    padding: 2rem;
    border-radius: 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.02);
}


.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-weight: 300;
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: var(--dark-bg);
}

.gallery-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.gallery-header .section-title {
    margin-bottom: 0;
}

.gallery-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-light);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.gallery-open-btn:hover {
    border-color: var(--accent);
    background: rgba(0, 180, 216, 0.08);
}

.gallery-open-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 18px;
}

.gallery-open-icon span {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.gallery-filter {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-gray);
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.25s ease;
}

.gallery-filter:hover,
.gallery-filter.active {
    color: var(--text-light);
    border-color: var(--accent);
    background: rgba(0, 180, 216, 0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-gray);
    padding: 3rem 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 16/9;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    background: var(--dark-secondary);
    text-align: left;
    display: block;
    width: 100%;
}

.gallery-item img,
.gallery-item-video-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item-video-thumb {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-item-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 1rem;
    color: white;
    pointer-events: none;
}

.gallery-item-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: rgba(255, 255, 255, 0.9);
    pointer-events: none;
}

.gallery-item:hover img,
.gallery-item:hover .gallery-item-video-thumb video {
    transform: scale(1.06);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 180, 216, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

/* Full-screen gallery viewer */
.gallery-viewer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-viewer.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

body.gallery-viewer-open {
    overflow: hidden;
}

.gallery-viewer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.gallery-drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
    width: min(300px, 85vw);
    height: 100%;
    background: var(--dark-secondary);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.4);
}

.gallery-drawer.is-open {
    transform: translateX(0);
}

.gallery-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-drawer-header h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gallery-drawer-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    padding: 0.25rem;
}

.gallery-drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    overflow-y: auto;
    flex: 1;
}

.gallery-drawer-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.85rem 1.25rem;
    background: none;
    border: none;
    border-left: 3px solid transparent;
    color: var(--text-gray);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gallery-drawer-link:hover,
.gallery-drawer-link.active {
    color: var(--text-light);
    background: rgba(0, 180, 216, 0.08);
    border-left-color: var(--accent);
}

.gallery-drawer-hint {
    padding: 1rem 1.25rem;
    font-size: 0.75rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 1.5;
}

.gallery-viewer-main {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.gallery-viewer-toolbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    position: relative;
    z-index: 2;
}

.gallery-menu-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    cursor: pointer;
    transition: background 0.2s ease;
}

.gallery-menu-btn span {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gallery-menu-btn span span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
}

.gallery-menu-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.gallery-viewer-caption {
    flex: 1;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin: 0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gallery-viewer-close {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.gallery-viewer-close:hover {
    border-color: var(--accent);
}

.gallery-viewer-stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 0.5rem 1rem;
    min-height: 0;
    touch-action: pan-y;
}

.gallery-viewer-media {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: calc(100% - 100px);
    max-height: 100%;
    margin: 0 auto;
}

.gallery-viewer-media img,
.gallery-viewer-media video {
    max-width: 100%;
    max-height: min(70vh, 720px);
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.gallery-viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.gallery-viewer-nav:hover {
    background: rgba(0, 180, 216, 0.25);
    border-color: var(--accent);
}

.gallery-viewer-prev {
    left: 0.75rem;
}

.gallery-viewer-next {
    right: 0.75rem;
}

.gallery-viewer-counter {
    text-align: center;
    padding: 0 1rem 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-gray);
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .gallery-viewer-caption {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .gallery-viewer-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #141414 inset !important;
    box-shadow: 0 0 0 1000px #141414 inset !important;
    -webkit-text-fill-color: var(--text-light) !important;
    caret-color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background-color 9999s ease-out 0s;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b0b0b0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--dark-bg);
}

.contact-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: -1rem auto 0;
    max-width: 520px;
    font-weight: 300;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 300;
}

.contact-details {
    margin-top: 2rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    color-scheme: dark;
}

.inquiry-form[hidden] {
    display: none;
}

.inquiry-thanks {
    text-align: center;
    padding: 2rem 1rem;
}

.inquiry-thanks h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.inquiry-thanks p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.footer-text {
    flex: 1;
    text-align: center;
}

.footer-text p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    font-weight: 300;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link svg {
    opacity: 0.6;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-owner-link {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-owner-link:hover {
    color: var(--accent);
}

.contact-details a {
    color: var(--accent);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-banner {
        padding: 1rem 0;
    }
    
    .banner-logo-img {
        height: 60px;
    }
    
    .hero {
        margin-top: 0;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .top-banner {
        padding: 0.8rem 0;
    }
    
    .banner-container {
        padding: 0 1rem;
    }
    
    .banner-logo-img {
        height: 50px;
    }
    
    .hero {
        margin-top: 0;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .carousel-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 24px;
    }

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

    .service-card,
    .contact-form-wrapper {
        padding: 1.25rem;
    }
}

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

.gallery-item,
.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }

