/* 
========================
CORE VARIABLES (2026)
========================
*/
:root {
    /* Color Palette - Platinum & Gold */
    --primary-color: #c5a059;
    --primary-dark: #a6833d;
    --secondary-color: #1a1a1a;
    --accent-color: #8e8e8e;
    --bg-light: #fcfcfc;
    --bg-dark: #0a0a0a;
    --text-main: #2d2d2d;
    --text-muted: #666666;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    
    /* Shadows & Blurs */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --blur: 12px;

    /* Spacing & Borders */
    --container-width: 1280px;
    --section-padding: 100px 0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-med: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Overrides */
body.dark-theme {
    --bg-light: #0a0a0a;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --white: #121212;
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* 
========================
BASE STYLES
========================
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    transition: background-color var(--transition-med);
    overflow-x: hidden;
}

h1, h2, h3, h4, .playfair {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    outline: none;
    border: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.center {
    text-align: center;
}

/* 
========================
LOADING SCREEN
========================
*/
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 5px;
    position: relative;
    margin-bottom: 20px;
}

.loader-logo span {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.loader-line {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    animation: loading 1.5s infinite;
}

.loader-content p {
    color: var(--white);
    margin-top: 15px;
    letter-spacing: 3px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

/* 
========================
CUSTOM CURSOR
========================
*/
.cursor-dot, .cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10001;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
}

@media (max-width: 1024px) {
    .cursor-dot, .cursor-outline { display: none; }
}

/* 
========================
SCROLL PROGRESS & BACK TO TOP
========================
*/
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    z-index: 10002;
    width: 0%;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-med);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: white;
}

/* 
========================
NAVIGATION
========================
*/
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-med);
    padding: 20px 0;
}

.main-header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur));
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 4.5px;
    margin-top: -5px;
    color: var(--text-muted);
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    background: var(--secondary-color);
    color: white !important;
    padding: 12px 28px;
    border-radius: var(--radius-full);
}

.nav-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle {
    background: transparent;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-main);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 
========================
HERO SECTION
========================
*/
.hero {
    height: 100vh;
    min-height: 800px;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    display: block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 2rem;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    opacity: 0.9;
}

/* Hero Search Box */
.hero-search {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur));
    padding: 10px;
    border-radius: var(--radius-md);
    max-width: 900px;
    border: 1px solid var(--glass-border);
}

.search-box {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
}

.search-input {
    display: flex;
    align-items: center;
    background: white;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    color: var(--text-main);
}

.search-input i {
    margin-right: 15px;
    color: var(--primary-color);
}

.search-input input, .search-input select {
    width: 100%;
    background: transparent;
}

.hero-badges {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(5px);
}

.badge-icon {
    color: var(--primary-color);
}

/* 
========================
BUTTONS
========================
*/
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 16px 35px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-med);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-med);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-secondary {
    background: var(--white);
    color: var(--secondary-color);
    padding: 12px 25px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

/* 
========================
TRUSTED BY SECTION
========================
*/
.trusted {
    padding: 60px 0;
    background: var(--white);
}

.logo-marquee {
    overflow: hidden;
    padding: 40px 0;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

.marquee-content img {
    height: 40px;
    margin: 0 60px;
    filter: grayscale(1);
    opacity: 0.5;
    transition: 0.3s;
}

.marquee-content img:hover {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 
========================
ABOUT SECTION
========================
*/
.about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.about-images {
    position: relative;
    padding-right: 50px;
}

.main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sub-img {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 60%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 8px solid var(--bg-light);
    box-shadow: var(--shadow-lg);
}

.experience-card {
    position: absolute;
    top: 50px;
    left: -30px;
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-card h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.section-tag {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.section-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-list {
    margin: 2rem 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-list i {
    color: var(--primary-color);
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 3rem;
}

.about-signature img {
    height: 60px;
    filter: invert(var(--dark-invert, 0));
}

/* 
========================
STATISTICS SECTION
========================
*/
.stats {
    background: var(--secondary-color);
    color: white;
    padding: 80px 0;
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: inline-block;
}

.stat-percent {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* 
========================
SERVICES SECTION
========================
*/
.services-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 4rem;
}

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-med);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-link {
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.active-card {
    background: var(--primary-color);
    color: white;
}

.active-card .service-icon, 
.active-card .service-link, 
.active-card p {
    color: white;
}

/* 
========================
PORTFOLIO SECTION
========================
*/
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.portfolio-filters {
    display: flex;
    gap: 1rem;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
    color: var(--text-main);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.portfolio-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.portfolio-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.1);
}

.property-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
}

.property-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.portfolio-item:hover .property-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 25px;
}

.info-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.info-top h3 {
    font-size: 1.3rem;
}

.price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.property-specs {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.property-specs i {
    color: var(--primary-color);
    margin-right: 5px;
}

.portfolio-cta {
    margin-top: 4rem;
}

/* 
========================
FAQ ACCORDION
========================
*/
.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-med);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

/* 
========================
CONTACT SECTION
========================
*/
.contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.info-list {
    margin: 3rem 0;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    font-size: 1.2rem;
}

.info-item h4 {
    margin-bottom: 5px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--glass-border);
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: white;
}

.full-width {
    width: 100%;
}

/* 
========================
FOOTER
========================
*/
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    margin-bottom: 60px;
}

.footer-logo .logo-text { color: white; }

.footer-desc {
    margin: 20px 0 30px;
    opacity: 0.7;
    max-width: 300px;
}

.footer-cta {
    display: flex;
    gap: 15px;
}

.footer-btn {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-btn.whatsapp { background: #25d366; }

.footer-links h4, .footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    opacity: 0.7;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-news-form {
    display: flex;
    margin: 20px 0;
}

.footer-news-form input {
    flex: 1;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.footer-news-form button {
    padding: 0 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-legal a {
    margin-right: 20px;
}

/* 
========================
ANIMATIONS & REVEALS
========================
*/
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 1s ease;
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Floating Animation */
.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* 
========================
FLOATING ACTIONS
========================
*/
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-med);
}

.float-btn.phone { background: var(--secondary-color); }
.float-btn.whatsapp { background: #25d366; }

.float-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

/* 
========================
RESPONSIVE DESIGN
========================
*/
@media (max-width: 1100px) {
    :root { --section-padding: 70px 0; }
    .hero-title { font-size: 3.5rem; }
    .services-grid, .portfolio-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (max-width: 850px) {
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        padding: 100px 50px;
        transition: 0.5s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    .nav-menu.show { right: 0; }
    .nav-list { flex-direction: column; align-items: flex-start; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-images { padding-right: 0; margin-bottom: 80px; }
}

@media (max-width: 600px) {
    .hero-search .search-box { grid-template-columns: 1fr; }
    .services-grid, .portfolio-grid, .footer-grid { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .hero-badges { flex-direction: column; gap: 10px; }
}