/* Base Styles & Variables */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

:root {
    --primary-gold: #dfae5a;
    --primary-gold-hover: #cf9c47;
    --dark-bg: #000000;
    --text-light: #ffffff;
    --text-gray: #b3b3b3;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --container-width: 1280px;
    --container-padding: 24px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: normal;
}

.italic {
    font-style: italic;
}

.highlight {
    color: var(--primary-gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: #000000;
}

.btn-primary:hover {
    background-color: var(--primary-gold-hover);
}

.btn-large {
    padding: 16px 32px;
    font-size: 15px;
    gap: 12px;
}

/* Navbar */
.navbar {
    background-color: #000000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 24px;
    height: auto;
}

.logo-text {
    font-size: 16px;
    letter-spacing: 1px;
}

.logo-text strong {
    font-weight: 700;
}

.logo-text .light {
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #0a0a0a;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    padding: 20px;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-size: 16px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    padding-top: 100px; /* offset for navbar */
    position: relative;
    background-image: url('img/hero-living-room.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    width: fit-content;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
}

.subtitle {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.subtitle .line {
    width: 40px;
    height: 1px;
    background-color: var(--primary-gold);
}

.subtitle-text {
    color: var(--primary-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.title {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    font-weight: 400;
    white-space: nowrap;
}

.description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
    margin-top: 48px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 16px;
}

/* About Section */
.about-section {
    background-color: #FCFCFA;
    padding: 120px 0;
    color: #111111;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.about-content {
    flex: 1;
    max-width: 550px;
}

.about-content .section-title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-description {
    font-size: 16px;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.about-img {
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -24px;
    left: 20px; /* Adjusting left position so it overlaps correctly */
    background-color: #000000;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge .badge-number {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-size: 42px;
    line-height: 1;
    margin-bottom: 8px;
}

.experience-badge .badge-text {
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Core Specialty Section */
.specialty-section {
    background-color: var(--dark-bg);
    padding: 100px 0;
    color: var(--text-light);
}

.specialty-header {
    margin-bottom: 48px;
}

.specialty-header .section-title {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.specialty-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.specialty-content {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.specialty-image {
    flex: 1;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.specialty-features-box {
    flex: 1;
    background-color: #0c0c0c;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
}

.sf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
    margin-bottom: 40px;
}

.sf-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.sf-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(223, 174, 90, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 14px;
}

.sf-text {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
}

.sf-cta-area {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
}

.sf-cta-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

/* Complementary Services Section */
.services-section {
    background-color: #FCFCFA;
    padding: 100px 0;
    color: #111111;
}

.services-header {
    margin-bottom: 56px;
}

.services-header .section-title {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #111111;
}

.text-dark {
    color: #111111 !important;
}

.services-description {
    font-size: 15px;
    color: #444444;
    font-weight: 500;
}

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

.service-card {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.sc-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
}

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

.sc-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 32px;
    height: 32px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 13px;
    z-index: 2;
}

.sc-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sc-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: #111111;
}

.sc-desc {
    font-size: 13px;
    color: #555555;
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

.justify-center {
    justify-content: center;
}

/* Trust Signals Section */
.trust-section {
    background-color: #FCFCFA;
    padding: 100px 0;
    color: #111111;
}

.trust-header {
    margin-bottom: 64px;
}

.trust-header .section-title {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-item:nth-child(4n) {
    border-right: none;
}

.trust-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background-color: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 18px;
    margin-bottom: 16px;
}

.trust-text {
    font-size: 13px;
    font-weight: 600;
    color: #111111;
}

/* Our Process Section */
.process-section {
    background-color: var(--dark-bg);
    padding: 100px 0;
    color: var(--text-light);
}

.process-header {
    margin-bottom: 64px;
}

.process-header .section-title {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.process-item {
    display: flex;
    flex-direction: column;
    padding-right: 32px;
    padding-left: 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.process-item:first-child {
    padding-left: 0;
}

.process-item:last-child {
    padding-right: 0;
    border-right: none;
}

.process-num {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 24px;
}

.process-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.process-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    background-color: #FCFCFA;
    padding: 100px 0;
    color: #111111;
}

.gallery-header {
    margin-bottom: 56px;
}

.gallery-categories {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 48px;
    letter-spacing: 0.5px;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
}

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

.item-1 { grid-column: 1; grid-row: 1; }
.item-2 { grid-column: 1; grid-row: 2; }
.item-3 { grid-column: 1; grid-row: 3; }
.item-4 { grid-column: 2; grid-row: 1 / span 2; }
.item-5 { grid-column: 2; grid-row: 3; }
.item-6 { grid-column: 3; grid-row: 1 / span 2; }

/* Financing Section */
.financing-section {
    background-color: #F6F4EE;
    padding: 80px 0;
}

.financing-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.financing-content {
    max-width: 600px;
}

.financing-content .subtitle {
    margin-bottom: 12px;
}

.financing-content .section-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.financing-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
}

/* Service Areas Section */
.areas-section {
    background-color: #FCFCFA;
    padding: 100px 0;
    color: #111111;
}

.areas-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.areas-content {
    flex: 1;
}

.areas-content .section-title {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 40px;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    font-size: 15px;
    font-weight: 500;
}

.area-item.border-top {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.area-icon {
    color: var(--primary-gold);
    font-size: 14px;
}

.areas-footer {
    margin-top: 16px;
    font-size: 13px;
    color: #555555;
}

.areas-map {
    flex: 1;
    background-color: #050505;
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.custom-map {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Contact Section */
.contact-section {
    background-color: #000000;
    padding: 100px 0;
    color: #ffffff;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.contact-info {
    flex: 1;
    max-width: 500px;
}

.contact-info .section-title {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.contact-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 500;
}

.ci-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(223, 174, 90, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 14px;
}

.contact-form-wrapper {
    flex: 1;
    max-width: 540px;
    background-color: #080808;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
}

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

.btn-submit {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
}

.form-footer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: left;
    margin-top: 12px;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 8, 5, 0.92);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-container .section-title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #030202;
    padding: 80px 0 60px;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 300px;
}

.footer-title {
    font-size: 11px;
    color: var(--primary-gold);
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.footer-contact li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-gold);
    font-size: 12px;
    margin-top: 3px;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .title {
        font-size: 56px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        gap: 40px;
    }
    
    .about-content .section-title {
        font-size: 48px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-item:nth-child(4n) {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
    }
    .trust-item:nth-child(2n) {
        border-right: none;
    }
    
    .trust-item:nth-last-child(-n+4) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    .trust-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 0;
    }
    
    .process-item {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .process-item:nth-child(3n) {
        border-right: none;
        padding-right: 0;
    }
    
    .process-item:nth-child(3n+1) {
        padding-left: 0;
    }
    
    .process-item:last-child {
        border-right: none;
    }
    
    .areas-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .areas-content {
        width: 100%;
    }
    
    .areas-map {
        width: 100%;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .contact-form-wrapper {
        max-width: 100%;
    }
    
    .cta-container .section-title {
        font-size: 48px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        background-position: 70% center;
    }
    
    .hero-overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    }
    
    .title {
        font-size: 42px;
    }
    
    .subtitle .line {
        width: 20px;
    }
    
    .subtitle-text {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .desktop-br {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .about-image-wrapper {
        justify-content: center;
        width: 100%;
    }
    
    .experience-badge {
        left: 0;
        bottom: -20px;
    }
    .specialty-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .specialty-image img {
        min-height: 300px;
    }
    
    .specialty-features-box {
        padding: 32px 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-header .section-title {
        font-size: 36px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    }
    
    .trust-item:last-child {
        border-bottom: none !important;
    }
    
    .trust-header .section-title {
        font-size: 36px;
    }
    
    .process-header .section-title {
        font-size: 36px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px 0;
    }
    
    .process-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0 0 32px 0 !important;
    }
    
    .process-item:last-child {
        border-bottom: none;
        padding-bottom: 0 !important;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(200px, 300px);
    }
    
    .gallery-masonry > * {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    
    .financing-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 36px;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .sf-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .area-item:nth-child(n+2) {
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .cta-container .section-title {
        font-size: 40px;
    }
}

/* ==========================================================================
   ADVANCED ANIMATIONS
   ========================================================================== */

/* Standard Reveal (Fade Up) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Scale Reveal (Images & Maps) */
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-scale.reveal-visible {
    opacity: 1;
    transform: scale(1);
}

/* Hover Micro-Interactions */
.service-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.8s, transform 0.8s;
}
.service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.gallery-img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s;
    transform-origin: center;
}
.gallery-img:hover {
    transform: scale(1.02) !important;
    z-index: 2;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Specific Hero Animation */
.hero-content {
    animation: fadeUpIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeUpIn {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
