/* ================================================
   LIVE IN SPACE — Architecture & Interior Designing
   ================================================ */

/* ====== CSS CUSTOM PROPERTIES ====== */
:root {
    /* Primary palette — deep crimson/maroon from brand logo */
    --primary: #8B1A2B;
    --primary-dark: #6A0F1E;
    --primary-light: #B8384D;
    --primary-rgb: 139, 26, 43;

    /* Accent — silver/charcoal gray from brand wave */
    --accent: #4A4A4A;
    --accent-light: #7A7A7A;
    --accent-dark: #333333;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f7f7f7;
    --cream: #f0f0f0;
    --light-gray: #e5e5e5;
    --mid-gray: #888888;
    --dark-gray: #3a3a3a;
    --charcoal: #252525;
    --black: #1a1a1a;

    /* Semantic */
    --success: #48a868;
    --danger: #cc4444;

    /* Typography */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --font-accent: 'Outfit', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1240px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.18);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====== RESET & BASE ====== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

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

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
}

.section-title.left-align {
    text-align: left;
}

/* ====== TOP BAR ====== */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    font-family: var(--font-accent);
    font-size: 12px;
    letter-spacing: 1.5px;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}

.top-bar-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-locations {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    overflow: hidden;
    white-space: nowrap;
}

.top-bar-locations span {
    font-weight: 500;
}

.top-bar-locations .sep {
    margin: 0 10px;
    color: var(--primary-light);
}

.top-bar-phone {
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.top-bar-phone:hover {
    color: var(--accent);
}

.top-bar-phone i {
    font-size: 11px;
    background: var(--primary-light);
    color: var(--white);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ====== HEADER ====== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-accent {
    font-family: var(--font-accent);
    font-size: 10px;
    font-weight: 500;
    color: var(--mid-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: -2px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link i {
    font-size: 8px;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-gray);
}

.dropdown li a:hover {
    background: var(--cream);
    color: var(--primary);
    padding-left: 24px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ====== HERO SECTION ====== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 22, 20, 0.75) 0%,
        rgba(26, 22, 20, 0.4) 50%,
        rgba(26, 22, 20, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 700px;
    animation: heroFadeUp 1s ease 0.3s both;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.hero-disclaimer {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    align-items: stretch;
    gap: 20px;
    flex-wrap: nowrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0;
    transition: var(--transition);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.4);
}

.hero-cta:hover::before {
    opacity: 1;
}

.hero-cta span {
    position: relative;
    z-index: 1;
}

/* Hero dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: scale(1.2);
}

.hero-dot:hover {
    border-color: var(--white);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 10;
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 2px;
    animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ====== STATS BAR ====== */
.stats-bar {
    background: var(--primary-dark);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--white);
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}

.stat-item:last-child::after {
    display: none;
}

.stat-icon {
    font-size: 22px;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* ====== PACKAGES ====== */
.packages {
    padding: var(--section-padding);
    background: var(--off-white);
}

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

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--light-gray);
    transition: var(--transition);
}

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

.package-card:hover::before {
    background: var(--primary);
}

.package-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.package-card.featured::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    height: 4px;
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.package-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.package-name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.package-desc {
    font-size: 14px;
    color: var(--mid-gray);
    margin-bottom: 24px;
}

.package-pricing {
    margin-bottom: 28px;
}

.package-old-price {
    font-family: var(--font-accent);
    font-size: 16px;
    color: var(--mid-gray);
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.package-price span {
    font-size: 20px;
    font-weight: 500;
}

.package-features {
    text-align: left;
    margin-bottom: 28px;
    flex-grow: 1;
}

.package-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--cream);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--success);
    font-size: 12px;
    flex-shrink: 0;
}

.package-cta {
    display: block;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    margin-top: auto;
}

.package-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

/* ====== SERVICES ====== */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

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

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    text-decoration: none;
}

.service-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(26, 22, 20, 0.85) 0%,
        rgba(26, 22, 20, 0.3) 40%,
        rgba(26, 22, 20, 0.05) 100%
    );
    transition: var(--transition);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-card:hover .service-overlay {
    background: linear-gradient(
        0deg,
        rgba(var(--primary-rgb), 0.85) 0%,
        rgba(var(--primary-rgb), 0.3) 40%,
        rgba(26, 22, 20, 0.05) 100%
    );
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
    transform: translateY(20px);
    transition: var(--transition);
}

.service-card:hover .service-content {
    transform: translateY(0);
}

.service-name {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.service-detail {
    font-family: var(--font-accent);
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.service-card:hover .service-name {
    transform: translateY(-20px);
}

.service-card:hover .service-detail {
    opacity: 1;
    transform: translateY(0);
}

/* ====== CTA BANNER ====== */
.cta-banner {
    padding: 80px 0;
    background: var(--off-white);
    text-align: center;
}

.cta-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.cta-banner-title span {
    color: var(--primary);
    font-weight: 700;
}

.cta-banner-desc {
    font-size: 16px;
    color: var(--mid-gray);
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-banner-btn {
    display: inline-block;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.cta-banner-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
}

/* ====== ABOUT ====== */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

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

.about-text .section-subtitle {
    text-align: left;
}

.about-desc {
    font-size: 15px;
    color: var(--mid-gray);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.about-highlights {
    display: flex;
    gap: 24px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}

.about-highlight i {
    color: var(--primary);
    font-size: 18px;
}

.about-cta {
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 4px;
}

.about-cta:hover {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.about-images {
    position: relative;
    height: 550px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 75%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 60%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 55%;
    left: 45%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    z-index: 2;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.3;
    opacity: 0.9;
}

/* ====== GALLERY ====== */
.gallery {
    padding: var(--section-padding);
    background: var(--off-white);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-row: span 2;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(var(--primary-rgb), 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-family: var(--font-accent);
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

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

/* ====== TESTIMONIALS ====== */
.testimonials {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--light-gray);
    flex-shrink: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.testimonial-stars {
    margin-bottom: 16px;
    color: #e6a817;
    font-size: 14px;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
}

.testimonial-author p {
    font-size: 13px;
    color: var(--mid-gray);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.testimonial-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ====== BLOG ====== */
.blog {
    padding: var(--section-padding);
    background: var(--off-white);
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

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

.blog-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--white);
    color: var(--charcoal);
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.blog-content {
    padding: 24px;
}

.blog-category {
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin: 10px 0 12px;
    line-height: 1.35;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--mid-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-read-more {
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-read-more i {
    font-size: 11px;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--primary-dark);
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

/* ====== CONTACT ====== */
.contact {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-subtitle {
    text-align: left;
}

.contact-desc {
    font-size: 15px;
    color: var(--mid-gray);
    margin-bottom: 36px;
    line-height: 1.8;
}

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

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-detail i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.contact-detail h4 {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}

.contact-detail p {
    font-size: 14px;
    color: var(--mid-gray);
}

/* Contact form */
.contact-form-wrapper {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 28px;
    text-align: center;
}

.form-group {
    margin-bottom: 16px;
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--dark-gray);
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--mid-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
}

/* ====== FOOTER ====== */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
}

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

.footer-tag {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-links-col h4 {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-links-col ul li a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-bottom i {
    color: var(--danger);
    margin: 0 2px;
}

/* ====== FLOATING ACTION BUTTONS ====== */
.floating-actions {
    position: fixed;
    right: 24px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    opacity: 0;
    transform: translateX(80px);
    transition: var(--transition-slow);
}

.floating-actions.visible {
    opacity: 1;
    transform: translateX(0);
}

.fab-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.fab-btn.whatsapp {
    background: #25d366;
}

.fab-btn.email {
    background: var(--primary);
}

.fab-btn.estimate {
    background: var(--primary);
    color: var(--white);
}

.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.fab-label {
    position: absolute;
    right: 62px;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.fab-btn:hover .fab-label {
    opacity: 1;
    transform: translateX(0);
}

/* ====== BACK TO TOP ====== */
.back-to-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ====== ANIMATIONS ====== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ====== RESPONSIVE ====== */

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-images {
        height: 400px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }
    
    .testimonial-card {
        min-width: calc(50% - 12px);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .top-bar-locations {
        display: none;
    }
    
    .logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .logo-accent {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 80px 30px 30px;
        transition: var(--transition);
        z-index: 1001;
        overflow-y: auto;
    }
    
    .main-nav.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .nav-link {
        padding: 14px 0;
        border-bottom: 1px solid var(--cream);
        font-size: 14px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        max-height: 700px;
    }
    
    .hero-content {
        padding: 0 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-cta, .hero-price-badge {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item::after {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    
    .gallery-item.large {
        grid-row: span 1;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .about-images {
        height: 300px;
    }
    
    .about-experience-badge {
        width: 90px;
        height: 90px;
    }
    
    .badge-number {
        font-size: 24px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .floating-actions {
        right: 16px;
        bottom: 80px;
    }
    
    .back-to-top {
        right: 16px;
    }
    
    .fab-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .fab-label {
        display: none;
    }
}
