/* ROVEN - Complete Professional CSS */
/* Mobile-First Responsive Design with Burger Menu */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #121212;
    color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* ===== CONTAINERS ===== */
.container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.container-medium {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ===== SECTIONS ===== */
.section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-dark {
    background-color: rgba(0, 0, 0, 0.3);
}

.contact-section {
    scroll-margin-top: 5rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.3) 0%, rgba(18, 18, 18, 0.9) 100%);
}

/* ===== NAVBAR ===== */
.navbar {
    position: relative;
    z-index: 1000;
    padding: 1rem;
}

.navbar-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.navbar-content {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #C6A367;
}

/* Burger Button */
.burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.burger-line {
    width: 1.5rem;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-line:not(:last-child) {
    margin-bottom: 0.35rem;
}

.burger-btn.active .burger-line:nth-child(1) {
    transform: translateY(0.55rem) rotate(45deg);
}

.burger-btn.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-1rem);
}

.burger-btn.active .burger-line:nth-child(3) {
    transform: translateY(-0.55rem) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
}

.mobile-menu-list li {
    margin-bottom: 2rem;
}

.mobile-menu-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    display: inline-block;
}

.mobile-menu-link:hover {
    color: #C6A367;
}

/* ===== HERO CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    padding-bottom: 12rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.hero-subtitle {
    font-size: 1rem;
    color: #999999;
    margin-bottom: 2rem;
    max-width: 90%;
    line-height: 1.6;
}

/* ===== STATS BAR ===== */
.stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem 1rem;
}

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

.stat-item {
    text-align: center;
    padding-bottom: 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #C6A367;
}

.stat-label {
    font-size: 0.75rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    line-height: 1.3;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-title-large {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    color: #999999;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.section-subtitle-large {
    font-size: 1rem;
    color: #999999;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

/* Image Collage */
.image-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.collage-main {
    grid-column: span 2;
}

.collage-image-main {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    border-radius: 24px;
}

.collage-image-small {
    width: 100%;
    height: 11rem;
    object-fit: cover;
    border-radius: 20px;
}

/* Services Content */
.services-content {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 32px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-icon {
    background-color: #C6A367;
    border-radius: 9999px;
    padding: 0.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #000000;
}

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

.service-description {
    color: #999999;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    gap: 1.5rem;
}

.product-card {
    background-color: #1E1E1E;
    border-radius: 32px;
    overflow: hidden;
}

.product-image-wrapper {
    padding: 1rem;
}

.product-image {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    border-radius: 24px;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-bullet {
    color: #C6A367;
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
}

.feature-text {
    color: #999999;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ===== PROCESS SECTION ===== */
.process-grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.process-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    /* No additional styles needed */
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: #C6A367;
    margin-bottom: 1rem;
    line-height: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-description {
    color: #999999;
    font-size: 1rem;
    line-height: 1.6;
}

/* Process Image Card */
.process-image-card {
    background-color: #1E1E1E;
    padding: 1rem;
    border-radius: 32px;
}

.process-image-wrapper {
    position: relative;
}

.process-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 24px;
}

.process-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    border-radius: 24px;
}

.process-image-text {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
}

.image-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #C6A367;
    margin-bottom: 0.5rem;
}

.image-title {
    font-size: 1.25rem;
    font-weight: 700;
}

/* ===== PORTFOLIO SLIDER ===== */
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.portfolio-text {
    flex: 1;
    min-width: 200px;
}

.slider-controls {
    display: flex;
    gap: 0.75rem;
}

.slider-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    border: 2px solid #C6A367;
    color: #C6A367;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-btn:hover {
    background-color: #C6A367;
    color: #000000;
}

.slider-btn .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.slider-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: 1rem;
    padding-bottom: 1rem;
    align-items: flex-start;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.slider-item {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 18rem;
    margin-right: 1rem;
}

.portfolio-card {
    background-color: #1E1E1E;
    border-radius: 24px;
    overflow: hidden;
    display: block;
    width: 100%;
}

.portfolio-card-button {
    border: none;
    background: #1E1E1E;
    padding: 0;
    text-align: left;
    color: inherit;
    cursor: pointer;
}

.portfolio-card-button:focus-visible {
    outline: 2px solid #C6A367;
    outline-offset: 4px;
}

.portfolio-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    display: block;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-description {
    color: #999999;
    font-size: 0.875rem;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background-color: #1E1E1E;
    padding: 2rem 1.5rem;
    border-radius: 32px;
    scroll-margin-top: 5rem;
}

.form-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 1rem 1.25rem;
    border-radius: 20px;
    width: 100%;
    background-color: #1E1E1E;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.875rem;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #C6A367;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23C6A367' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-textarea {
    margin-bottom: 1.5rem;
    resize: vertical;
    min-height: 120px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    line-height: 1.45;
    color: #c9c9c9;
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 1rem;
    height: 1rem;
    accent-color: #C6A367;
    flex-shrink: 0;
}

.inline-link {
    color: #C6A367;
    text-decoration: underline;
}

.inline-link:hover {
    color: #d8b881;
}

.file-input-wrapper {
    position: relative;
}

.file-input-wrapper input[type="file"] {
    display: none;
}

.file-label {
    padding: 1rem 1.25rem;
    border-radius: 20px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color 0.3s ease;
    background-color: #1E1E1E;
}

.file-label:hover {
    border-color: #C6A367;
}

.file-label-text {
    color: #666666;
    font-size: 0.875rem;
}

.icon-small {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: #999999;
    margin-top: 1rem;
    line-height: 1.4;
}

.form-message {
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    display: none;
    padding: 1rem;
    border-radius: 12px;
}

.form-message-success {
    color: #C6A367;
    background: rgba(198, 163, 103, 0.1);
    display: block;
}

.form-message-error {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    display: block;
}

.form-message-hidden {
    display: none;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #2D4336;
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-size: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #C6A367;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.contact-value {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
}

.contact-value a {
    color: inherit;
    text-decoration: none;
}

.contact-value a:hover {
    color: #C6A367;
}

.footer-cta {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 32px;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-description {
    color: #999999;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #9ca3af;
    gap: 1rem;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #C6A367;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn.is-loading {
    opacity: 0.65;
    cursor: not-allowed;
}

.btn-gold-small {
    background-color: #C6A367;
    color: #000000;
    flex-shrink: 0;
}

.btn-gold-small:hover {
    opacity: 0.9;
}

.btn-primary {
    background-color: #C6A367;
    color: #000000;
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1rem;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    width: 100%;
    border: 2px solid #C6A367;
    color: #C6A367;
    background: transparent;
    padding: 1rem 1.5rem;
}

.btn-outline:hover {
    background-color: #C6A367;
    color: #000000;
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1rem;
}

.btn-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-with-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* ===== ICONS ===== */
.icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    vertical-align: middle;
}

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

svg {
    display: inline-block;
    vertical-align: middle;
}

/* ===== TABLET BREAKPOINT (481px to 768px) ===== */
@media (min-width: 481px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        max-width: 80%;
    }

    .section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .section-title-large {
        font-size: 3rem;
    }

    .container,
    .container-medium {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .collage-image-main {
        height: 18rem;
    }

    .collage-image-small {
        height: 14rem;
    }

    .product-image {
        height: 18rem;
    }

    .process-image {
        height: 28rem;
    }

    .slider-item {
        width: 20rem;
        flex: 0 0 auto;
    }

    .portfolio-image {
        height: 26rem;
    }

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-cta {
        padding: 2.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

/* ===== DESKTOP BREAKPOINT (769px+) ===== */
@media (min-width: 769px) {
    .burger-btn {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    .navbar-content {
        padding: 1rem 2rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 5rem;
        max-width: 64rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        max-width: 42rem;
    }

    .section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .section-header {
        margin-bottom: 5rem;
    }

    .section-title-large {
        font-size: 3.75rem;
    }

    .section-subtitle-large {
        font-size: 1.25rem;
        max-width: 48rem;
    }

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

    .stat-item {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-item:last-child {
        border-right: none;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }

    .services-content {
        padding: 3rem;
    }

    .collage-image-main {
        height: 20rem;
        border-radius: 40px;
    }

    .collage-image-small {
        height: 16rem;
        border-radius: 32px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .product-card {
        border-radius: 40px;
    }

    .product-image-wrapper {
        padding: 1.25rem;
    }

    .product-image {
        height: 20rem;
        border-radius: 32px;
    }

    .product-content {
        padding: 2.5rem;
    }

    .product-title {
        font-size: 1.875rem;
    }

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

    .process-column {
        gap: 4rem;
    }

    .step-number {
        font-size: 6rem;
        margin-bottom: 1.5rem;
    }

    .step-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }

    .step-description {
        font-size: 1.125rem;
    }

    .process-image-card {
        padding: 1.5rem;
        border-radius: 40px;
    }

    .process-image {
        height: 37.5rem;
        border-radius: 32px;
    }

    .image-label {
        font-size: 0.875rem;
    }

    .image-title {
        font-size: 1.5rem;
    }

    .portfolio-header {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .slider-container {
        padding-left: 2rem;
        align-items: flex-start;
    }

    .slider-item {
        width: 24rem;
        margin-right: 2rem;
        flex: 0 0 auto;
    }

    .portfolio-card {
        border-radius: 32px;
    }

    .portfolio-image {
        height: 31.25rem;
    }

    .portfolio-info {
        padding: 2rem;
    }

    .portfolio-title {
        font-size: 1.5rem;
    }

    .slider-btn {
        width: 3.5rem;
        height: 3.5rem;
    }

    .slider-btn .icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .contact-form {
        padding: 3rem;
        border-radius: 40px;
    }

    .form-grid {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-input,
    .form-select,
    .file-label {
        padding: 1.25rem 1.5rem;
        border-radius: 24px;
        font-size: 1rem;
    }

    .form-textarea {
        padding: 1.25rem 1.5rem;
        border-radius: 24px;
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn-large {
        padding: 1.5rem 2.5rem;
        font-size: 1.125rem;
    }

    .form-note {
        font-size: 0.875rem;
        margin-top: 1.5rem;
    }

    .footer {
        padding: 5rem 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }

    .footer-logo {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }

    .contact-list {
        gap: 1.5rem;
        font-size: 1.125rem;
    }

    .contact-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .footer-cta {
        padding: 3rem;
        border-radius: 40px;
    }

    .cta-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }

    .cta-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: row;
        margin-top: 4rem;
        padding-top: 2rem;
        font-size: 0.875rem;
    }

    .footer-links {
        gap: 2rem;
    }
}

/* ===== LARGE DESKTOP (1200px+) ===== */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 6rem;
    }
}

/* ===== TOUCH OPTIMIZATION ===== */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
    }

    .nav-link {
        padding: 0.75rem 0;
    }

    .slider-btn {
        min-width: 44px;
        min-height: 44px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PORTFOLIO MODAL ===== */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.portfolio-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #C6A367;
    border-color: #C6A367;
    color: #000000;
}

.modal-content {
    width: 100%;
    max-width: 75rem;
    background: #1E1E1E;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: 90vh;
    overflow-y: auto;
}

/* Modal Gallery */
.modal-gallery {
    background: #000000;
    padding: 1rem;
}

.gallery-main {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

.gallery-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(198, 163, 103, 0.9);
    border: none;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-nav:hover {
    background: #C6A367;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.gallery-nav:disabled:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%);
}

.gallery-nav.is-hidden {
    display: none;
}

.gallery-nav-prev {
    left: 1rem;
}

.gallery-nav-next {
    right: 1rem;
}

.gallery-nav .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.gallery-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: #C6A367 #000000;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: #000000;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: #C6A367;
    border-radius: 2px;
}

.gallery-thumbnail {
    flex: 0 0 auto;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: transparent;
    padding: 0;
    transition: all 0.3s ease;
}

.gallery-thumbnail:hover {
    border-color: #C6A367;
}

.gallery-thumbnail.active {
    border-color: #C6A367;
}

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

/* Modal Info */
.modal-info {
    padding: 2rem 1.5rem;
}

.modal-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1.3;
}

.modal-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #C6A367;
    color: #000000;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-description {
    margin-bottom: 1.5rem;
}

.description-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #C6A367;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.description-text {
    color: #999999;
    line-height: 1.7;
    font-size: 0.95rem;
}

.modal-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.detail-item:first-child {
    padding-top: 0;
}

.detail-label {
    font-size: 0.875rem;
    color: #999999;
}

.detail-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

.modal-actions .btn {
    flex: 1;
}

/* Tablet view */
@media (min-width: 481px) {
    .gallery-main-image {
        height: 400px;
    }

    .modal-info {
        padding: 2.5rem;
    }

    .modal-title {
        font-size: 2rem;
    }

    .gallery-thumbnail {
        width: 100px;
        height: 75px;
    }
}

/* Desktop view */
@media (min-width: 769px) {
    .modal-container {
        padding: 2rem;
    }

    .modal-content {
        grid-template-columns: 1.2fr 1fr;
        max-height: 85vh;
    }

    .modal-gallery {
        padding: 2rem;
    }

    .gallery-main-image {
        height: 500px;
    }

    .modal-info {
        padding: 3rem;
        overflow-y: auto;
    }

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

    .description-text {
        font-size: 1rem;
    }

    .gallery-nav {
        width: 3rem;
        height: 3rem;
    }

    .gallery-nav .icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .gallery-thumbnail {
        width: 110px;
        height: 82px;
    }
}

@media (min-width: 1024px) {
    .gallery-main-image {
        height: 600px;
    }
}

/* Hover effect for portfolio cards */
.portfolio-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(198, 163, 103, 0.2);
}
