/* ============================================
   MANI INTERIOR DESIGNER - LUXURY STYLE
   ============================================ */

/* ROOT VARIABLES */
:root {
    --primary: #1E1E1E;
    --secondary: #D4A373;
    --accent: #FFFFFF;
    --background: #F8F5F2;
    --text: #2B2B2B;
    --gold: #D4A373;
    --gold-light: #E8C896;
    --gold-dark: #B8895A;
    --dark: #1E1E1E;
    --dark-alt: #2A2A2A;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 8px 32px rgba(212, 163, 115, 0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Playfair Display', serif;
    --font-heading-alt: 'Cinzel', serif;
    --font-heading-bold: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-body-alt: 'Open Sans', sans-serif;
    --radius: 16px;
    --radius-sm: 8px;
}

/* 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);
    color: var(--text);
    background: var(--background);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--font-heading-alt);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 16px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    color: var(--primary);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -3px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.section-header.light .section-title {
    color: var(--accent);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--accent);
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.5);
    color: var(--accent);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.btn-submit {
    width: 100%;
    justify-content: center;
}

/* GLASSMORPHISM */
.glassmorphism {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

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

.loader-m {
    font-family: var(--font-heading-alt);
    font-size: 80px;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
    animation: pulseGold 1.5s ease-in-out infinite;
}

.loader-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
    animation: loaderLine 2s ease-in-out infinite;
}

.loader-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 16px;
}

@keyframes pulseGold {
    0%, 100% { opacity: 0.6; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
}

@keyframes loaderLine {
    0% { width: 0; }
    50% { width: 200px; }
    100% { width: 0; }
}

/* ============================================
   HEADER
   ============================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

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

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

.logo-m {
    font-family: var(--font-heading-alt);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1.2;
}

.logo-text small {
    display: block;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

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

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
    position: relative;
    padding-bottom: 4px;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-actions .btn {
    padding: 10px 24px;
    font-size: 13px;
}

/* MENU TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(30, 30, 30, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 100px 40px 40px;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-inner ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-menu-inner a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 400;
    transition: var(--transition);
}

.mobile-menu-inner a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.mobile-menu-inner .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

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

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 30, 30, 0.85) 0%,
        rgba(30, 30, 30, 0.4) 50%,
        rgba(30, 30, 30, 0.7) 100%
    );
    z-index: 1;
}

/* FLOATING SHAPES */
.hero-floating-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    top: -200px;
    right: -200px;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    animation: floatShape 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--gold);
    top: 50%;
    left: 30%;
    animation: floatShape 15s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 750px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(212, 163, 115, 0.4);
    border-radius: 50px;
    font-family: var(--font-heading-alt);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    background: rgba(212, 163, 115, 0.08);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 7vw, 80px);
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.5vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* SCROLL INDICATOR */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.01% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* HERO NAV */
.hero-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    font-size: 16px;
}

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

/* HERO DOTS */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

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

.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading-alt);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-image {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.about-experience {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--primary);
    color: var(--accent);
    padding: 20px 30px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow);
    border-left: 3px solid var(--gold);
}

.about-experience .exp-number {
    display: block;
    font-family: var(--font-heading-alt);
    font-size: 32px;
    color: var(--gold);
    font-weight: 700;
}

.about-experience .exp-text {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose {
    background: var(--background);
}

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

.why-card {
    background: var(--accent);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.why-img {
    height: 200px;
    overflow: hidden;
}

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

.why-card:hover .why-img img {
    transform: scale(1.05);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.4);
}

.why-icon i {
    font-size: 24px;
    color: var(--accent);
}

.why-content {
    padding: 20px 28px 28px;
    text-align: center;
}

.why-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}

.why-content p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 16px;
}

.why-features {
    list-style: none;
    text-align: left;
}

.why-features li {
    font-size: 13px;
    color: #888;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.why-features li i {
    color: var(--gold);
    font-size: 14px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--primary);
}

.services .section-title {
    color: var(--accent);
}

.services .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 163, 115, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 30, 30, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.service-overlay i {
    font-size: 28px;
    color: var(--gold);
}

.service-info {
    padding: 20px;
}

.service-info h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
}

.service-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 8px;
}

.service-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    color: #666;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--accent);
}

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

.portfolio-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

.portfolio-item:nth-child(2) {
    grid-row: span 2;
    height: auto;
}

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

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 30, 30, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

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

.portfolio-info h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 4px;
}

.portfolio-info span {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects {
    background: var(--background);
}

.project-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 40px;
    background: rgba(30, 30, 30, 0.05);
    padding: 4px;
    border-radius: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.project-tab {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    color: #666;
    font-weight: 500;
}

.project-tab.active {
    background: var(--primary);
    color: var(--accent);
}

.projects-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.projects-grid.active {
    display: grid;
}

.project-card {
    background: var(--accent);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.project-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.project-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-status.ongoing {
    background: rgba(212, 163, 115, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.project-status.design {
    background: rgba(100, 200, 255, 0.2);
    border-color: #64c8ff;
    color: #64c8ff;
}

.project-status.concept {
    background: rgba(180, 130, 255, 0.2);
    border-color: #b482ff;
    color: #b482ff;
}

.project-details {
    padding: 20px;
}

.project-details h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}

.project-details p {
    font-size: 13px;
    color: #777;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-details p i {
    color: var(--gold);
    width: 16px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--primary);
}

.testimonials .section-title {
    color: var(--accent);
}

.testimonial-swiper {
    padding: 20px 0 60px;
}

.testimonial-card {
    padding: 40px 30px;
    position: relative;
    min-height: 300px;
}

.quote-icon {
    font-size: 32px;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

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

.testimonial-author span {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
}

/* Swiper customization */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--gold);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: var(--primary);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    color: var(--accent);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 30, 0.9);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

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

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 20px;
    color: var(--gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 163, 115, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

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

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 40px;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form select {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.contact-form select option {
    background: var(--primary);
    color: var(--accent);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    font-size: 22px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 320px;
}

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

.footer h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-links a:hover,
.footer-services a:hover {
    color: var(--gold);
    padding-left: 6px;
}

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

.insta-grid a {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1;
}

.insta-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-grid a:hover img {
    transform: scale(1.1);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

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

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--accent);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

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

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.5);
}

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

/* Tablet */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-actions .btn {
        display: none;
    }

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

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

    .portfolio-item:nth-child(2) {
        grid-row: auto;
        height: 300px;
    }

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

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

    .hero-nav,
    .hero-dots {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 32px;
    }

    .about-img-wrapper img {
        height: 350px;
    }

    .about-experience {
        left: 10px;
        bottom: 20px;
        padding: 16px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .contact-form-wrapper {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

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

    .project-tabs {
        border-radius: var(--radius);
        background: none;
        padding: 0;
        gap: 8px;
    }

    .project-tab {
        border: 1px solid #ddd;
    }

    .mobile-menu-inner a {
        font-size: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .portfolio-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 16px;
        font-size: 12px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .about-experience .exp-number {
        font-size: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }
}
