:root {
    --color-primary: #1a1a1a;
    --color-accent: #C5A059;
    --color-accent-light: #E6C88B;
    --color-bg-light: #f9f9f9;
    --color-bg-dark: #111;
    --color-text: #333;
    --color-text-light: #666;
    --color-border: #eee;
    --header-height: 80px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Playfair Display', serif;
    color: var(--color-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.bg-dark {
    background-color: var(--color-bg-dark);
    color: white;
}

.light-text h2,
.light-text p {
    color: white;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-sm {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

/* Header */
.site-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.site-logo {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-list a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--color-primary);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s;
}

.nav-list a:hover::after {
    width: 100%;
}

.header-cta {
    display: block;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    margin: 6px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.hero-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-content-left {
    text-align: right;
}

.hero-content-right {
    text-align: left;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin: 0;
}

.hero-sub {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    display: block;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.8;
}

.hero-image-wrapper {
    margin-top: 2rem;
    overflow: hidden;
    text-align: center;
}

.hero-img {
    width: 100%;
    object-fit: contain;
    display: block;
}

/* Services - 12 Category Aesthetic Mosaic */
.services-grid-12 {
    column-count: 3;
    column-gap: 2.5rem;
    display: block;
    /* Required for column-count */
}

.service-item-mini {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
    /* Required for column-count spacing */
    width: 100%;
    margin-bottom: 2.5rem;
    break-inside: avoid;
}

.service-item-mini:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.service-icon {
    margin-bottom: 2rem;
    color: var(--color-accent);
    background: rgba(197, 160, 89, 0.08);
    /* Faint accent background */
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.service-item-mini:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-item-mini h3 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
}

.service-item-mini ul {
    list-style: none;
    /* Clean list */
    padding: 0;
}

.service-item-mini li {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.4;
}

.service-item-mini li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    opacity: 0.6;
}

/* Responsive Services */
@media (max-width: 1000px) {
    .services-grid-12 {
        column-count: 2;
    }
}

@media (max-width: 650px) {
    .services-grid-12 {
        column-count: 1;
    }

    .service-item-mini {
        padding: 2rem;
    }
}

/* Instagram / Projects Grid */
.text-accent {
    color: var(--color-accent);
    text-decoration: underline;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.insta-card {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 9/16;
    background-color: #222;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
    border: 1px solid var(--color-accent);
}

.insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-card:hover .insta-img {
    transform: scale(1.05);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}

.insta-card:hover .insta-overlay {
    opacity: 1;
    backdrop-filter: blur(3px);
}

.insta-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: white;
}

.insta-text {
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* About Section */
.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Areas Serving Section */
.areas {
    border-top: 1px solid var(--color-border);
}

.area-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    justify-content: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.area-badges li {
    background: white;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.area-badges li:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 1rem 0 1rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-link {
    display: block;
    margin-bottom: 0.8rem;
    color: #aaa;
}

.footer-link:hover {
    color: var(--color-accent);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #aaa;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1500;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    color: white;
}

.fab-btn:hover {
    transform: scale(1.1);
}

.fab-call {
    background-color: var(--color-primary);
}

.fab-whatsapp {
    background-color: #25D366;
}

.fab-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.fab-call svg {
    fill: none;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content-left,
    .hero-content-right {
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .nav-list,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }

    .site-header .container {
        justify-content: space-between;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        transition: 0.3s ease-in-out;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        padding-top: 100px;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-list a {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-img {
        height: 300px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}