@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@500&display=swap');

:root {
    --primary-color: #E30613;
    --primary-gradient: linear-gradient(135deg, #E30613, #F36A6A);
    --secondary-color: #3660B9;
    --accent-gold: #D89F5F;
    --dark-bg: #1F1F1F;
    --light-bg: #F5EFE6;
    --light-text: #F5F3EF;
    --neutral-wood: #FBF5DE;
    --heavy-wood: #D8B48A;
    --wood-tone: #C2A27E;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --wood-light: #E8D8C3;
    --warm-light: #FAF3E1;
    --warm-dark: #F5E7C6;
    --nav-bg: #FFF8EC;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--light-bg);
    padding-top: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

li, a, button {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 10%;
    background: var(--light-bg);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-nav {
    display: flex;
    opacity: 1;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
    visibility: visible;
}

header:not(.scrolled) .logo-nav { opacity: 0.95; }

.nav-logo-img {
    height: 150px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.nav-logo-title {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-logo-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: var(--heavy-wood);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

nav {
    display: flex;
    align-items: center;
    gap: 45px;
}

.nav_links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
}

/* Nav links — dark text */
.nav_links li a {
    color: var(--text-dark);
    position: relative;
    padding: 10px 0;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Underline — red gradient on hover */
.nav_links li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Nav hover — gradient text (red→pink) */
.nav_links li a:hover {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
    text-shadow: none;
}

.nav_links li a:hover::after {
    width: 100%;
}



.cta {
    display: inline-block;
}

/* CTA Buttons — #E30613 red, hover = lighter red (NOT orange) */
button {
    padding: 14px 32px;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(227, 6, 19, 0.25), 0 2px 8px rgba(227, 6, 19, 0.15);
    position: relative;
    overflow: hidden;
}

button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover::before {
    width: 350px;
    height: 350px;
}

/* Hover = lighter true red — not orange */
button:hover {
    background-color: #C0000A;
    border-color: #C0000A;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(227, 6, 19, 0.4), 0 4px 12px rgba(227, 6, 19, 0.25);
}

button:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.3), 0 3px 8px rgba(227, 6, 19, 0.2);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
}

.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
}

.mobile-drawer.active { pointer-events: all; }

.drawer-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}

.mobile-drawer.active .drawer-overlay { background-color: rgba(0, 0, 0, 0.6); }

.drawer-content {
    position: absolute;
    top: 0; right: 0;
    width: 300px;
    height: 100%;
    background-color: var(--white);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15), -2px 0 12px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    gap: 45px;
}

.mobile-drawer.active .drawer-content { transform: translateX(0); }

.drawer-logo { width: 160px; margin-bottom: 10px; }

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
}

.drawer-nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.active .drawer-nav li { opacity: 1; transform: translateX(0); }
.mobile-drawer.active .drawer-nav li:nth-child(1) { transition-delay: 0.1s; }
.mobile-drawer.active .drawer-nav li:nth-child(2) { transition-delay: 0.15s; }
.mobile-drawer.active .drawer-nav li:nth-child(3) { transition-delay: 0.2s; }
.mobile-drawer.active .drawer-nav li:nth-child(4) { transition-delay: 0.25s; }

.drawer-nav li:last-child { border-bottom: none; }

.drawer-link {
    display: block;
    padding: 18px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-link:hover {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(8px);
}

.drawer-cta {
    margin-top: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.active .drawer-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.drawer-cta button { width: 100%; justify-content: center; }

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }
.scroll-reveal-delay-1 { transition-delay: 0.1s; }
.scroll-reveal-delay-2 { transition-delay: 0.2s; }
.scroll-reveal-delay-3 { transition-delay: 0.3s; }
.scroll-reveal-delay-4 { transition-delay: 0.4s; }

/* Home Section */
.home {
    position: relative;
    z-index: 0;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    display: flex;
    align-items: center;
    background: linear-gradient(
        135deg,
        #F5EFE6,
        #E8D8C3
    );
    background-image: url('assets/web/background-design.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

.home::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 30%,
        rgba(0, 0, 0, 0.3) 55%,
        rgba(0, 0, 0, 0.15) 75%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

.home::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(245, 239, 230, 0.3) 50%,
        rgba(245, 239, 230, 0.8) 100%
    );
    pointer-events: none;
}

.home-content {
    position: relative;
    z-index: 2;
    padding: 90px 6% 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.home-text {
    position: relative;
    z-index: 4;
    pointer-events: auto;
    max-width: 650px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    flex-shrink: 0;
    order: 1;
}

.home-text h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 28px;
    line-height: 1.1;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.home-text p {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin: 0 auto 28px;
    line-height: 1.6;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    opacity: 0.96;
    max-width: 580px;
}

.logo-hero { display: none; }

/* About Section */
.about {
    padding: 110px 10%;
    background-color: var(--warm-dark);
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text { flex: 1; max-width: 600px; }

.about-text h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-intro {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 28px;
    line-height: 1.5;
}

.about-text p {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 28px;
    line-height: 1.75;
}

.about-list { list-style: none; margin-top: 35px; }

.about-list li {
    font-size: 18px;
    color: var(--text-dark);
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

/* Checkmark in brand blue (#3660B9) */
.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 22px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image img:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 110px 10%;
    background-color: var(--warm-light);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.services-container h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.services-intro {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 65px;
    line-height: 1.65;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 55px;
}

.service-card {
    background-color: var(--white);
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    border-left: 3px solid transparent;
}

/* Service card hover — red left border */
.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border-left: 3px solid var(--primary-color);
}

.service-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover h3 { color: var(--primary-color); }

.service-card p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.65;
    opacity: 0.88;
}

.services-cta { display: inline-block; margin-top: 25px; }
.services-cta button { padding: 16px 45px; font-size: 17px; }

/* Portfolio Section */
.portfolio {
    padding: 110px 10%;
    background-color: var(--warm-dark);
}

.portfolio-container { max-width: 1400px; margin: 0 auto; }

.portfolio-container h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.5px;
}

.portfolio-intro {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.65;
    text-align: center;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 32px;
    background-color: var(--white);
    color: var(--text-dark);
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.filter-btn:hover {
    background-color: rgba(227, 6, 19, 0.08);
    color: var(--primary-color);
    border-color: rgba(227, 6, 19, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(227, 6, 19, 0.3);
}

.filter-btn.active:hover { background-color: #C0000A; border-color: #C0000A; }

/* Gallery */
.gallery-section { margin-bottom: 0; }

.flex-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 55px;
    align-items: flex-start;
}

.portfolio .flex-gallery { justify-content: center; }

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--dark-bg);
    flex: 1 1 calc(33.333% - 14px);
    min-width: 280px;
    height: 400px;
    opacity: 1;
    transform: scale(1);
}

.gallery-section .video-item {
    flex: 0 1 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
    min-width: 280px;
    height: 320px;
}

.gallery-item.hidden { display: none !important; opacity: 0; transform: scale(0.9); }
.gallery-item.filtering { transition: opacity 0.3s ease, transform 0.3s ease; }

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2), 0 12px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.gallery-item img,
.gallery-item .video-preview {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.gallery-item:hover img,
.gallery-item:hover .video-preview {
    transform: scale(1.15);
    filter: brightness(1.05);
}

.project-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 14px 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.72) 100%);
    color: var(--white);
    z-index: 3;
}

.project-caption h4 { font-family: "Montserrat", sans-serif; font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.project-caption p { font-family: "Montserrat", sans-serif; font-size: 13px; line-height: 1.45; margin: 0; opacity: 0.92; }

.portfolio-preview,
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 55px;
}

.btn-wrapper { text-align: center; margin: 55px 0 0; }

.view-portfolio-btn {
    padding: 17px 55px;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(227, 6, 19, 0.25), 0 2px 8px rgba(227, 6, 19, 0.15);
}

.view-portfolio-btn:hover {
    background-color: #C0000A;
    border-color: #C0000A;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(227, 6, 19, 0.4), 0 4px 12px rgba(227, 6, 19, 0.25);
}

.view-portfolio-btn:active { transform: translateY(-1px) scale(1); box-shadow: 0 6px 20px rgba(227, 6, 19, 0.3); }

/* Video Section */
.video-section { margin-top: 85px; padding-bottom: 45px; transition: opacity 0.3s ease; }
[data-section] { transition: opacity 0.3s ease; }

.video-section h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 45px;
    text-align: center;
    letter-spacing: -0.3px;
}

/* Section underline — red gradient */
.video-section h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: var(--primary-gradient);
    margin: 18px auto 0;
    border-radius: 2px;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-gallery .gallery-item,
.video-gallery .video-item { height: 400px; }

.video-slider { display: block; width: min(100%, 420px); margin: 0 auto; }

.video-slider .video-item {
    width: 100%;
    aspect-ratio: 9 / 16;
    height: auto;
    max-height: 80vh;
}

.video-slider-controls {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.video-position {
    min-width: 84px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(44, 44, 44, 0.78);
    padding: 0;
}

.video-thumbnail,
.video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--dark-bg);
}

.video-thumbnail:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2), 0 12px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.video-preview { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }

.play-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumbnail:hover .play-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.play-button {
    width: 85px;
    height: 85px;
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.video-thumbnail:hover .play-button {
    transform: scale(1.2) rotate(90deg);
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 16px 48px rgba(227, 6, 19, 0.5), 0 8px 20px rgba(227, 6, 19, 0.3);
}

.play-button svg { width: 32px; height: 32px; margin-left: 4px; }

.video-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumbnail:hover .video-label { opacity: 1; transform: translateY(0); }

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    background-color: var(--dark-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.video-modal-content video { width: 100%; height: 100%; display: block; }

.video-modal .close {
    position: absolute;
    top: 30px; right: 50px;
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.5);
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.video-modal .close:hover { background-color: var(--primary-color); transform: rotate(90deg); }

/* Full Portfolio Page */
.full-portfolio-page {
    padding: 250px 10% 80px;
    background-color: var(--warm-light);
    min-height: 100vh;
}

.portfolio-page-container { max-width: 1400px; margin: 0 auto; }

.portfolio-header { text-align: center; margin-bottom: 70px; }

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 25px;
}

.back-link:hover { color: var(--secondary-color); transform: translateX(-5px); }
.back-link i { font-size: 14px; }

.portfolio-header h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 22px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.portfolio-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.85;
}

.full-gallery-section { margin-bottom: 80px; }

.full-gallery-section h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 45px;
    text-align: center;
    letter-spacing: -0.5px;
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.full-gallery-grid .gallery-item { border-radius: 12px; height: 400px; }

/* .gallery-pagination {
    margin: 26px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: none;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
} */

/* Pagination — red brand */
/* .pagination-btn {
    appearance: none;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(227, 6, 19, 0.25);
    border-radius: 999px;
    background-color: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: none;
    transform: none;
    letter-spacing: 0;
    position: static;
    overflow: visible;
    min-width: 84px;
    height: 38px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
} */

.pagination-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    background-color: rgba(227, 6, 19, 0.08);
    color: #C0000A;
    transform: none;
    box-shadow: none;
}

.pagination-btn::before,
.page-number-btn::before { display: none; }

.pagination-btn:active:not(:disabled) { transform: translateY(0); box-shadow: none; }

.pagination-btn:disabled {
    opacity: 0.4;
    background-color: rgba(44, 44, 44, 0.06);
    border-color: rgba(44, 44, 44, 0.14);
    color: rgba(44, 44, 44, 0.45);
    cursor: not-allowed;
}

/* .page-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: visible;
    scrollbar-width: none;
    padding: 2px;
    margin: 0 auto;
    width: fit-content;
    max-width: 100%;
} */

.page-numbers::-webkit-scrollbar { display: none; }

/* .page-number-btn {
    appearance: none;
    width: 38px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(227, 6, 19, 0.2);
    background-color: var(--white);
    color: var(--text-dark);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: none;
    transform: none;
    letter-spacing: 0;
    position: static;
    overflow: visible;
    flex: 0 0 auto;
    transition: all 0.25s ease;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
} */

/* Active page — red gradient fill */
.page-number-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: none;
}

.page-number-btn:hover:not(.active) {
    background-color: rgba(227, 6, 19, 0.08);
    border-color: rgba(227, 6, 19, 0.35);
    box-shadow: none;
    transform: none;
}

.page-number-btn:active { box-shadow: none; transform: none; }

/* .page-info {
    margin-top: 12px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: rgba(44, 44, 44, 0.72);
} */

.portfolio-cta-section {
    text-align: center;
    padding: 80px 0 60px;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.portfolio-cta-section h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.portfolio-cta-section p {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 35px;
    opacity: 0.8;
}

.portfolio-contact-btn { display: inline-block; }
.portfolio-contact-btn button { padding: 17px 55px; font-size: 17px; }

/* Contact Section */
.contact { padding: 110px 10%; background-color: var(--warm-light); }
.contact-container { max-width: 1200px; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 55px; }

.contact-header h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.contact-intro {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--white);
    padding: 50px 45px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.form-row { display: grid; grid-template-columns: 1fr; gap: 25px; margin-bottom: 25px; }
.form-row:has(.form-group:nth-child(2)) { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; margin-bottom: 28px; }

.form-group label {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.required { color: var(--primary-color); }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: var(--white);
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

/* Form focus — red brand */
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(0, 0, 0, 0.4); }

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23151515' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.form-group textarea { resize: vertical; min-height: 140px; font-family: "Montserrat", sans-serif; line-height: 1.6; }

#emailGroup,
#phoneGroup { transition: opacity 0.3s ease, transform 0.3s ease; }

.radio-group { display: flex; gap: 30px; margin-top: 8px; }

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.radio-label:hover { color: var(--primary-color); }
.radio-label input[type="radio"] { position: absolute; opacity: 0; cursor: pointer; }

.radio-custom {
    position: relative;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Radio checked — primary red */
.radio-label input[type="radio"]:checked ~ .radio-custom {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.radio-label input[type="radio"]:checked ~ .radio-custom::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background-color: var(--white);
}

.radio-label:hover .radio-custom { border-color: var(--primary-color); }

.form-submit { margin-top: 35px; text-align: center; }
.submit-btn { padding: 16px 55px; font-size: 17px; min-width: 200px; }

/* Footer */
.footer { 
    background-color: var(--light-bg); 
    padding: 50px 10% 35px; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
}

.footer-container { 
    max-width: 1200px; 
    margin: 0 auto; 
}

.footer-content { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 28px; 
    text-align: center; 
}

.footer-logo { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.footer-logo-text { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    line-height: 1.1; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

.footer-logo-text:hover { 
    transform: scale(1.05); 
}

.footer-logo-title { 
    font-family: "Montserrat", sans-serif; 
    font-size: 24px; 
    font-weight: 900; 
    color: var(--light-text); 
    letter-spacing: 2px; 
    text-transform: uppercase; 
}

.footer-logo-subtitle { 
    font-family: "Montserrat", sans-serif; 
    font-size: 11px; 
    font-weight: 400; 
    color: var(--accent-gold); 
    letter-spacing: 1.5px; 
    text-transform: uppercase; 
    margin-top: 2px; 
}

.footer-links { 
    display: flex; 
    gap: 18px; 
    align-items: center; 
    flex-wrap: wrap; 
    justify-content: center; 
}

.footer-links .separator { 
    color: rgba(--dark-bg); 
    font-size: 14px; user-select: none; 
}

.footer-links a { 
    font-family: "Montserrat", sans-serif; 
    font-size: 15px; 
    font-weight: 500; 
    color: var(--text-dark);
    text-decoration: none; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    position: relative; 
}

.footer-links a:hover { 
    color: var(--primary-color); 
    transform: translateY(-2px); 
}

.footer-contact { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    align-items: center; 
}

.footer-contact p { 
    font-family: "Montserrat", sans-serif;
    font-size: 15px; 
    color: rgba(245, 243, 239, 0.85); 
    margin: 0; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.footer-contact i { 
    color: var(--primary-color); 
    font-size: 14px; 
}

.footer-socials { 
    display: flex; 
    gap: 20px; 
    align-items: center; 
}

.footer-socials a {
    width: 42px; height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer socials hover — primary red */
.footer-socials a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.4), 0 4px 10px rgba(227, 6, 19, 0.3);
}

.footer-socials i { font-size: 18px; }
.footer-copyright { margin-top: 8px; }
.footer-copyright p { font-family: "Montserrat", sans-serif; font-size: 16px; color: var(--text-dark); margin: 0; }

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body:not(.portfolio-page) .lightbox-counter,
body:not(.portfolio-page) .prev,
body:not(.portfolio-page) .next { display: none !important; }

.lightbox-counter {
    position: absolute;
    top: 35px; left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 600;
    z-index: 10001;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 35px; right: 50px;
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover { color: var(--primary-color); background-color: rgba(255, 255, 255, 0.1); transform: rotate(90deg); }

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    border-radius: 50%;
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev:hover, .next:hover { color: var(--primary-color); background-color: rgba(255, 255, 255, 0.12); transform: translateY(-50%) scale(1.1); }
.prev { left: 30px; }
.next { right: 30px; }

/* Tablet Breakpoint (769px - 1280px) */
@media screen and (max-width: 1280px) and (min-width: 769px) {
    .logo-hero { 
        order: 2; 
        position: relative; 
        width: 380px; 
        max-width: 40vw; 
        min-width: 220px; 
        margin-left: auto; 
        transform: none; 
    }

    .home-content { 
        padding: 90px 6% 40px; 
        display: flex; 
        align-items: center; 
        justify-content: space-between; 
        gap: 40px; 
        min-height: 100vh; 
    }

    .home-text { 
        position: relative; 
        z-index: 4; 
        pointer-events: auto; 
        max-width: 650px; 
        width: 100%; 
        text-align: center; 
        margin: 0 auto; 
        flex-shrink: 0; 
        order: 1; 
    }

    .home-text h1 { 
        font-size: 48px; 
        line-height: 1.15; 
        margin-bottom: 20px; 
    }

    .home-text p { 
        font-size: 19px; 
        max-width: 100%; 
        margin-bottom: 22px; 
    }

    .portfolio-filters {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 35px;
    }

    .filter-btn {
        font-size: 14px;
        padding: 10px 24px;
    }

    .full-gallery-grid { gap: 20px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

html, body { overflow-x: hidden; }

@media screen and (max-width: 1024px) and (min-width: 769px) {
    .full-gallery-grid { 
        gap: 20px; 
        grid-template-columns: repeat(2, minmax(0, 1fr)); 
    }
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 900px) {
    .contact-layout { 
        grid-template-columns: 1fr 1.5fr; 
        gap: 30px; 
    }

    .contact-aside { 
        text-align: center; 
    }

    .contact-details p { 
        justify-content: center; 
    }

    .contact-socials { 
        justify-content: center; 
    }
}

.contact-aside,
.contact-aside p,
.contact-aside h3,
.contact-details p { 
    font-family: "Montserrat", sans-serif; 
    color: var(--text-dark); 
}

.contact-aside h3 { 
    font-size: 22px; 
    font-weight: 700; 
    margin-bottom: 12px; 
}

.contact-aside p { 
    font-size: 15px; 
    color: #666; 
    line-height: 1.6; 
    margin-bottom: 10px;
}

.contact-details p { 
    font-size: 15.5px; 
    font-weight: 500; 
}

.contact-layout { 
    display: grid; 
    grid-template-columns: 1fr 1.5fr; 
    gap: 60px; 
    align-items: start; 
}

.contact-aside { 
    background: var(--white); 
    padding: 35px; 
    border-radius: 16px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.06); 
}

.contact-details p { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-size: 16px; 
    margin-bottom: 14px; 
    font-weight: 500; 
}

.contact-details i { 
    color: var(--primary-color); 
}

.contact-socials { 
    margin-top: 25px; 
    display: flex; 
    gap: 15px; 
}

.contact-socials a {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-socials a:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(227, 6, 19, 0.3);
}

.contact-form { 
    background: var(--white); 
    padding: 50px; 
    border-radius: 16px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.06); 
    width: 100%; 
    max-width: 100%; 
}

@media screen and (max-width: 768px) {
    header { padding: 15px 5%; }
    header.scrolled { padding: 10px 5%; }
    nav { display: none; }
    .hamburger { display: flex; }
    .home { min-height: 100vh; }
    .home::before { background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.35) 70%, rgba(0, 0, 0, 0.2) 100%); }
    .home { width: 100vw; max-width: 100%; }
    .logo-hero { order: -1; width: 60vw; max-width: 260px; min-width: 160px; margin: 0 auto -15px; position: relative; }
    .home-content { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 100px 5% 60px; min-height: 100vh; }
    .logo-hero:hover { filter: brightness(1.05); }
    .home-text { order: 2; position: relative; color: var(--light-text); max-width: 600px; width: 100%; padding: 0; text-align: center; margin: 0 auto; }
    .home-text h1 { font-family: "Montserrat", sans-serif; font-size: 36px; color: var(--white); margin-bottom: 15px; line-height: 1.2; letter-spacing: -0.5px; }
    .home-text p { font-family: "Montserrat", sans-serif; font-size: 20px; color: var(--white); max-width: 600px; line-height: 1.6; opacity: 0.9; }
    .about { padding: 60px 5%; }
    .about-container { flex-direction: column; gap: 40px; }
    .about-text { max-width: 100%; }
    .about-text h2 { font-size: 32px; margin-bottom: 20px; }
    .about-intro { font-size: 18px; margin-bottom: 20px; }
    .about-text p { font-size: 16px; margin-bottom: 20px; }
    .about-list li { font-size: 16px; padding: 10px 0; padding-left: 28px; }
    .about-list li::before { font-size: 18px; }
    .about-image { order: -1; }
    .about-image img { max-width: 100%; }
    .services { padding: 60px 5%; }
    .services-container h2 { font-size: 32px; margin-bottom: 15px; }
    .services-intro { font-size: 16px; margin-bottom: 40px; }
    .services-grid { grid-template-columns: 1fr; gap: 25px; }
    .projects { padding: 60px 5%; }
    .projects-container h2 { font-size: 32px; }
    .projects-intro { font-size: 18px; margin-bottom: 40px; }
    .image-gallery { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 15px; }
    .show-more-btn { padding: 14px 40px; font-size: 16px; }
    .video-gallery { grid-template-columns: 1fr; }
    .video-thumbnail { aspect-ratio: 16/9; }
    .play-button { width: 70px; height: 70px; }
    .play-button svg { width: 28px; height: 28px; }
    .video-label { font-size: 16px; padding: 16px; }
    .video-modal-content { width: 95%; }
    .video-modal .close { top: 20px; right: 20px; font-size: 40px; width: 45px; height: 45px; }
    .video-section h2 { font-size: 26px; }
    .portfolio { padding: 60px 5%; }
    .portfolio-container h2 { font-size: 36px; }
    .portfolio-intro { font-size: 17px; margin-bottom: 30px; }
    .portfolio-filters { gap: 10px; margin-bottom: 35px; flex-wrap: wrap; }
    .filter-btn { font-size: 14px; padding: 10px 24px; }
    .flex-gallery { gap: 15px; }
    .gallery-item { flex: 1 1 calc(50% - 8px); min-width: 140px; height: 350px; }
    .gallery-section .video-item { flex: 1 1 calc(50% - 8px); max-width: none; min-width: 140px; height: 300px; }
    .view-portfolio-btn { padding: 15px 40px; font-size: 16px; }
    .full-portfolio-page { padding: 220px 5% 60px; }
    .portfolio-header h1 { font-size: 42px; }
    .portfolio-subtitle { font-size: 17px; }
    .full-gallery-grid { gap: 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .video-slider .video-item { height: auto; }
    .close { top: 20px; right: 20px; font-size: 40px; }
    .lightbox-counter { font-size: 16px; padding: 8px 20px; }
    .prev, .next { font-size: 30px; padding: 15px; }
    .prev { left: 10px; }
    .next { right: 10px; }
    .contact { padding: 60px 5%; }
    .contact-container { max-width: 1200px; margin: 0 auto; }
    .contact-header { text-align: center; margin-bottom: 60px; }
    .contact-header h2 { font-family: "Montserrat", sans-serif; font-size: 48px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
    .contact-intro { font-size: 18px; color: #555; max-width: 600px; margin: 0 auto; }
    .contact-form { padding: 25px 20px; }
    .contact-aside { padding: 25px 20px; }
    .form-row:has(.form-group:nth-child(2)) { grid-template-columns: 1fr; gap: 25px; }
    .contact-layout { grid-template-columns: 1fr; gap: 25px; }
    .footer { padding: 40px 5% 30px; }
    .footer-content { gap: 25px; }
    .footer-links { gap: 15px; }
    .footer-links .separator { font-size: 13px; }
    .footer-links a { font-size: 14px; }
    .footer-contact p { font-size: 14px; }
    .footer-contact i { font-size: 13px; }
    .footer-socials a { width: 40px; height: 40px; }
    .footer-socials i { font-size: 17px; }
    .footer-copyright p { font-size: 12px; }
}

@media screen and (max-width: 480px) {
    header { padding: 12px 5%; }
    .nav-logo-title { font-size: 14px; }
    .nav-logo-subtitle { font-size: 7px; }
    .home-content { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 20px; padding: 100px 5% 40px; }
    .logo-hero { order: -1; width: 60vw; max-width: 260vw; min-width: 160px; margin: 0 auto -15px; position: relative; }
    .home-text { display: flex; flex-direction: column; align-items: center; width: 100%; margin: 0 auto; position: relative; }
    .home-text h1 { font-size: 34px; }
    .home-text p { font-size: 16px; max-width: 320px; }
    .about { padding: 50px 5%; }
    .about-text h2 { font-size: 28px; margin-bottom: 18px; }
    .about-intro { font-size: 16px; margin-bottom: 18px; }
    .about-text p { font-size: 15px; margin-bottom: 18px; line-height: 1.6; }
    .about-list { margin-top: 25px; }
    .about-list li { font-size: 15px; padding: 8px 0; padding-left: 26px; }
    .about-list li::before { font-size: 16px; }
    .services { padding: 50px 5%; }
    .services-container h2 { font-size: 28px; }
    .services-intro { font-size: 15px; margin-bottom: 35px; }
    .services-grid { gap: 20px; }
    .service-card { padding: 30px 25px; }
    .service-card h3 { font-size: 20px; margin-bottom: 12px; }
    .service-card p { font-size: 15px; }
    .image-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gallery-item { border-radius: 8px; }
    .show-more-btn { padding: 12px 35px; font-size: 15px; }
    .video-gallery { grid-template-columns: 1fr; }
    .play-button { width: 60px; height: 60px; }
    .play-button svg { width: 24px; height: 24px; }
    .video-label { font-size: 14px; padding: 12px; }
    .portfolio { padding: 50px 5%; }
    .portfolio-container h2 { font-size: 28px; margin-bottom: 18px; }
    .portfolio-intro { font-size: 16px; margin-bottom: 25px; }
    .portfolio-filters { gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
    .filter-btn { font-size: 13px; padding: 9px 20px; }
    .flex-gallery { gap: 12px; }
    .gallery-item { flex: 1 1 100%; min-width: 100%; height: 350px; }
    .gallery-section .video-item { flex: 1 1 100%; max-width: none; min-width: 100%; height: 300px; }
    .view-portfolio-btn { padding: 14px 35px; font-size: 14px; }
    .full-portfolio-page { padding: 220px 5% 50px; }
    .portfolio-header h1 { font-size: 32px; margin-bottom: 18px; }
    .portfolio-subtitle { font-size: 16px; }
    .full-gallery-grid { gap: 15px; grid-template-columns: 1fr; }
    .gallery-pagination { gap: 10px; padding: 0; }
    .gallery-pagination .page-numbers { order: 1; width: 100%; margin: 0; justify-content: center; overflow-x: auto; }
    .gallery-pagination #prevPageBtn { order: 2; }
    .gallery-pagination #nextPageBtn { order: 3; }
    .pagination-btn { font-size: 13px; padding: 0 12px; min-width: 78px; height: 36px; }
    .page-number-btn { width: 32px; height: 32px; font-size: 13px; }
    .video-slider-controls { gap: 10px; padding: 0; flex-wrap: wrap; }
    .video-position { min-width: 84px; font-size: 12px; }
    .video-slider .video-item { height: auto; max-height: 70vh; }
    .contact { padding: 50px 5%; }
    .contact-header h2 { font-size: 28px; margin-bottom: 18px; }
    .contact-intro { font-size: 16px; }
    .contact-form { padding: 30px 20px; }
    .form-group label { font-size: 14px; }
    .form-group input[type="text"], .form-group input[type="email"], .form-group input[type="tel"], .form-group select, .form-group textarea { font-size: 15px; padding: 12px 16px; }
    .radio-group { gap: 20px; }
    .radio-label { font-size: 15px; }
    .submit-btn { padding: 14px 45px; font-size: 16px; min-width: 180px; }
    .footer { padding: 35px 5% 25px; }
    .footer-content { gap: 22px; }
    .footer-logo-title { font-size: 18px; }
    .footer-logo-subtitle { font-size: 9px; }
    .footer-links { gap: 12px; }
    .footer-links .separator { font-size: 12px; }
    .footer-links a { font-size: 13px; }
    .footer-contact { gap: 8px; }
    .footer-contact p { font-size: 13px; }
    .footer-contact i { font-size: 13px; }
    .footer-socials { gap: 16px; }
    .footer-socials a { width: 38px; height: 38px; }
    .footer-socials i { font-size: 16px; }
    .footer-copyright p { font-size: 11px; }
}

@media screen and (max-width: 375px) {
    header { padding: 12px 4%; }
    .nav-logo-title { font-size: 12px; }
    .nav-logo-subtitle { font-size: 6px; }
    .home-content { padding: 85px 4% 35px; gap: 30px; justify-content: center; min-height: 100vh; }
    .logo-hero { width: 55vw; max-width: 220px; min-width: 150px; margin: 0 auto -10px; position: relative; }
    .home-text h1 { font-size: 30px; }
    .home-text p { font-size: 15px; }
    button { padding: 12px 28px; font-size: 15px; }
    .footer-logo-title { font-size: 16px; }
    .footer-logo-subtitle { font-size: 8px; }
}

/* toast message */
#toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #111;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    letter-spacing: 0.2px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

#toast.show {
    opacity: 1;
    transform: translateY(0);
}

#toast.success { background: #16a34a; }
#toast.error { background: #dc2626; }
#toast.warning { background: #f59e0b; }