/* ============================================
   MEMAAR ASSOCIATES - Premium Architecture Site
   ============================================ */

/* CSS Variables */
:root {
    --color-beige: #F5EFDC;
    --color-brown: #5C3A21;
    --color-ochre: #D9913A;
    --color-white: #ffffff;
    --color-text: #5C3A21;
    --color-text-light: rgba(92, 58, 33, 0.8);
    --color-text-muted: rgba(92, 58, 33, 0.7);
    --color-border: rgba(92, 58, 33, 0.2);

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    --shadow-sm: 0 2px 8px rgba(92, 58, 33, 0.08);
    --shadow-md: 0 8px 24px rgba(92, 58, 33, 0.12);
    --shadow-lg: 0 16px 48px rgba(92, 58, 33, 0.16);

    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-brown);
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.text-ochre {
    color: var(--color-ochre);
}

.accent-line {
    width: 64px;
    height: 4px;
    background-color: var(--color-ochre);
    margin-bottom: 1.5rem;
}

.accent-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

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

.btn-primary {
    background-color: var(--color-ochre);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: #C0802A;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--color-brown);
    color: var(--color-brown);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-brown);
    color: var(--color-white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-letter {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brown);
    line-height: 1;
}

.logo-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-ochre);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-brown);
    letter-spacing: 0.05em;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-brown);
    position: relative;
}

.nav-link:hover {
    color: var(--color-ochre);
}

.header-cta {
    display: inline-flex;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-brown);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    gap: 1rem;
}

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

.nav-link-mobile {
    font-size: 1rem;
    color: var(--color-brown);
    padding: 0.5rem 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-color: var(--color-beige);
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-brown);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-ochre);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.hero-image-wrapper {
    position: relative;
    animation: slideIn 1s ease-out;
}

.hero-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-decoration-1 {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 100%;
    height: 100%;
    background-color: rgba(217, 145, 58, 0.2);
    border-radius: 8px;
    z-index: 1;
}

.hero-decoration-2 {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 128px;
    height: 128px;
    background-color: var(--color-ochre);
    border-radius: 8px;
    z-index: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(92, 58, 33, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 4px;
    height: 12px;
    background-color: var(--color-ochre);
    border-radius: 4px;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.about-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.about-decoration {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(217, 145, 58, 0.3);
    border-radius: 8px;
    z-index: 1;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.founder-card {
    background-color: rgba(245, 239, 220, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
}

.founder-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.founder-title {
    color: var(--color-text-muted);
}

.about-block-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.about-block-text {
    color: var(--color-text-light);
    line-height: 1.7;
}

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

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.value-item i {
    color: var(--color-ochre);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--color-beige);
}

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

.service-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service-card:hover .service-icon {
    background-color: var(--color-ochre);
    color: var(--color-white);
}

.service-card:hover .service-title {
    color: var(--color-ochre);
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(217, 145, 58, 0.1);
    color: var(--color-ochre);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    transition: var(--transition);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.service-description {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: var(--color-beige);
    color: var(--color-brown);
    transition: var(--transition);
}

.filter-btn:hover {
    background-color: rgba(217, 145, 58, 0.2);
}

.filter-btn.active {
    background-color: var(--color-ochre);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.portfolio-item:hover {
    box-shadow: var(--shadow-lg);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(92, 58, 33, 0.9), rgba(92, 58, 33, 0.5), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--color-white);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.portfolio-item.hidden {
    display: none;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    margin: 0 auto;
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: var(--color-white);
}

.lightbox-caption h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lightbox-caption p {
    color: rgba(255, 255, 255, 0.7);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: var(--color-white);
    font-size: 2rem;
    background: none;
    transition: var(--transition);
    padding: 1rem;
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--color-ochre);
}

/* Why Choose Us Section */
.why-choose {
    padding: 5rem 0;
    background-color: var(--color-beige);
}

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

.feature-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card:hover .feature-icon {
    background-color: var(--color-ochre);
    color: var(--color-white);
}

.feature-card:hover .feature-title {
    color: var(--color-ochre);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(217, 145, 58, 0.1);
    color: var(--color-ochre);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: var(--transition);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.feature-description {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--color-white);
}

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

.contact-info-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(217, 145, 58, 0.1);
    color: var(--color-ochre);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.contact-item a:hover {
    color: var(--color-ochre);
}

.quick-connect {
    background-color: var(--color-beige);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.quick-connect h4 {
    margin-bottom: 0.75rem;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 256px;
}

.contact-form-wrapper {
    background-color: var(--color-beige);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-brown);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-ochre);
    box-shadow: 0 0 0 3px rgba(217, 145, 58, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%235C3A21' 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 1rem center;
    padding-right: 2.5rem;
}

/* Footer */
.footer {
    background-color: var(--color-brown);
    color: var(--color-white);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-letter {
    color: var(--color-white);
}

.footer-logo .logo-name,
.footer-logo .logo-tagline {
    color: var(--color-white);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-title {
    color: var(--color-white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: var(--color-white);
    font-size: 0.9375rem;
    margin: 1.5rem 0 0.75rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact li i {
    color: var(--color-ochre);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact a:hover {
    color: var(--color-ochre);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--color-ochre);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
}

/* Toast */
.toast {
    position: fixed;
    top: 100px;
    right: 2rem;
    background-color: var(--color-brown);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 1100;
    opacity: 0;
    transform: translateX(120%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 360px;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.success {
    background-color: #16a34a;
}

.toast i {
    font-size: 1.25rem;
}

/* Legal Pages */
.legal-page {
    padding-top: 120px;
    padding-bottom: 5rem;
    background-color: var(--color-white);
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-brown);
    margin-bottom: 2rem;
    font-weight: 500;
}

.back-link:hover {
    color: var(--color-ochre);
}

.legal-title {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.legal-meta {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin: 1rem 0 0.75rem;
}

.legal-section p,
.legal-section li {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-contact-card {
    background-color: var(--color-beige);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

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

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.7); }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-ochre);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C0802A;
}

::selection {
    background-color: var(--color-ochre);
    color: var(--color-white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid,
    .portfolio-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .nav-desktop,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 7rem 0 4rem;
    }

    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

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

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

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

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

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .toast {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

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

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