/* ===================================
   LAVORA DECORATIVE - Premium Styles
   =================================== */

/* === CSS Variables === */
:root {
    /* Colors */
    --color-primary: #C9A961;
    --color-primary-dark: #B39348;
    --color-secondary: #1A2332;
    --color-accent: #D4AF37;
    --color-dark: #0F1419;
    --color-light: #F8F6F3;
    --color-cream: #FDFBF7;
    --color-gold: #CFB571;
    --color-bronze: #CD7F32;
    --color-text: #2C3E50;
    --color-text-light: #6C757D;
    --color-white: #FFFFFF;
    --color-overlay: rgba(26, 35, 50, 0.7);
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-padding: 20px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.24);
}

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-cream);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* === Container === */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-secondary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-secondary);
}

/* === Section Styles === */
section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--color-secondary);
}

.section-title span {
    color: var(--color-primary);
    font-style: italic;
}

.section-description {
    font-size: 17px;
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.7;
    max-width: 680px;
}

/* ===================================
   NAVIGATION - REFINED & ELEGANT
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 28px 0;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    box-shadow: 0 1px 0 rgba(26, 35, 50, 0.06);
}

.navbar.scrolled {
    padding: 18px 0;
}

.navbar.scrolled::before {
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(26, 35, 50, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo - Sophisticated */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 175px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--color-secondary);
    transition: color 0.3s ease;
}

.logo-separator {
    width: 1px;
    height: 24px;
    background: var(--color-primary);
    opacity: 0.4;
}

.logo-sub {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-light);
}

/* Navigation Menu - Minimal */
.nav-menu {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

/* Nav Contact - Elegant */
.nav-contact {
    display: flex;
    align-items: center;
}

.nav-phone {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.3px;
    padding: 10px 24px;
    border: 1px solid rgba(26, 35, 50, 0.12);
    transition: all 0.3s ease;
}

.nav-phone:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Hamburger - Refined */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 1px;
    background: var(--color-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

/* ===================================
   HERO SECTION - SOPHISTICATED & ELEGANT
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-cream);
}

/* Background System - Flexible untuk texture images */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay untuk mengontrol brightness dan blend dengan background */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        var(--color-cream) 0%,
        var(--color-cream) 35%,
        rgba(253, 251, 247, 0.85) 50%,
        rgba(253, 251, 247, 0.4) 70%,
        transparent 100%
    );
    z-index: 1;
}

/* Hero Container */
.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
}

/* Hero Text */
.hero-text {
    max-width: 680px;
}

.hero-label {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 32px;
    display: inline-block;
}

.hero-heading {
    font-family: var(--font-secondary);
    font-size: clamp(48px, 6vw, 86px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-secondary);
    margin-bottom: 32px;
}

.hero-heading .line {
    display: block;
}

.hero-heading .accent {
    color: var(--color-primary);
    font-style: italic;
}

.hero-tagline {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 48px;
    max-width: 520px;
}

/* Hero CTA - Refined */
.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 80px;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.cta-primary span,
.cta-primary svg {
    position: relative;
    z-index: 1;
}

.cta-primary:hover::before {
    left: 0;
}

.cta-primary:hover {
    transform: translateY(-2px);
}

.cta-secondary {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 2px;
}

.cta-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-text);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.cta-secondary:hover::after {
    transform: scaleX(0);
    transform-origin: left;
}

/* Hero Stats - Elegant */
.hero-stats {
    display: flex;
    gap: 48px;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 400;
    color: var(--color-secondary);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(26, 35, 50, 0.12);
}

/* Hero Scroll Indicator - Minimal */
.hero-scroll {
    position: absolute;
    bottom: 60px;
    left: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.scroll-text {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-light);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-text-light), transparent);
    animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
    0%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    background: var(--color-cream);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--color-primary);
    z-index: -1;
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(212, 175, 55, 0.1));
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-content {
    text-align: center;
    color: var(--color-white);
}

.badge-number {
    display: block;
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.about-text {
    padding-left: 20px;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--color-white);
    border-left: 3px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 2rem;
    color: var(--color-primary);
    min-width: 40px;
}

.feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.feature-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* ===================================
   SERVICES SECTION - REDESIGNED
   =================================== */
.services {
    background: var(--color-cream);
    position: relative;
}

.services-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--color-white);
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.15);
    border-color: rgba(201, 169, 97, 0.3);
}

/* Service Image - Optimized */
.service-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f5f5f5;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(26, 35, 50, 0) 0%,
        rgba(26, 35, 50, 0.3) 60%,
        rgba(26, 35, 50, 0.6) 100%
    );
    transition: background var(--transition-smooth);
}

.service-card:hover .service-image-overlay {
    background: linear-gradient(
        180deg, 
        rgba(201, 169, 97, 0.1) 0%,
        rgba(201, 169, 97, 0.3) 60%,
        rgba(201, 169, 97, 0.5) 100%
    );
}

/* Service Content - Cleaner Layout */
.service-content {
    padding: 30px 26px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all var(--transition-smooth);
    position: relative;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.25);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.service-content h3 {
    font-size: 1.375rem;
    margin-bottom: 14px;
    color: var(--color-secondary);
    line-height: 1.3;
    transition: color var(--transition-fast);
}

.service-card:hover .service-content h3 {
    color: var(--color-primary);
}

.service-content > p {
    margin-bottom: 22px;
    line-height: 1.7;
    color: var(--color-text-light);
    font-size: 0.9375rem;
    flex: 1;
}

.service-list {
    padding-left: 0;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
    padding-top: 20px;
}

.service-list li {
    padding: 7px 0;
    padding-left: 26px;
    position: relative;
    color: var(--color-text);
    font-size: 0.875rem;
    line-height: 1.5;
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--color-primary);
    font-size: 0.75rem;
}

/* ===================================
   PORTFOLIO SECTION
   =================================== */
.portfolio {
    background: var(--color-cream);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text-light);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9), rgba(201, 169, 97, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    color: var(--color-white);
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    font-size: 1.75rem;
    color: var(--color-white);
    margin-bottom: 12px;
}

.portfolio-info p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-view {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    color: var(--color-primary);
    border: none;
}

    border-radius: 50%;
    cursor: pointer;
    font-size: 1.125rem;
    transition: all var(--transition-fast);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-view:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process {
    background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-dark) 100%);
    color: var(--color-white);
}

.process .section-subtitle {
    color: var(--color-primary);
}

.process .section-title,
.process .section-title span {
    color: var(--color-white);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    padding-top: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
    z-index: 0;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    position: relative;
}

.timeline-number::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    opacity: 0.3;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.3); opacity: 0; }
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 12px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    background: var(--color-light);
    position: relative;
}

/* ===================================
   COVERAGE AREA SECTION
   =================================== */
.coverage-area {
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.coverage-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(201, 169, 97, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.coverage-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.coverage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.coverage-card:hover::before {
    transform: scaleX(1);
}

.coverage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.coverage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all var(--transition-smooth);
}

.coverage-card:hover .coverage-icon {
    transform: scale(1.1) rotate(5deg);
}

.coverage-icon i {
    font-size: 1.75rem;
    color: var(--color-white);
}

.coverage-card h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 24px;
    color: var(--color-secondary);
    font-weight: 600;
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coverage-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-text-light);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    transition: all var(--transition-fast);
}

.coverage-list li:last-child {
    border-bottom: none;
}

.coverage-list li:hover {
    padding-left: 5px;
    color: var(--color-text);
}

.coverage-list li i {
    color: var(--color-primary);
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Coverage CTA */
.coverage-cta {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-dark));
    border-radius: 12px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.coverage-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(201, 169, 97, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(201, 169, 97, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(201, 169, 97, 0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(201, 169, 97, 0.1) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    opacity: 0.5;
    pointer-events: none;
}

.coverage-cta-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.coverage-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.coverage-cta-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.coverage-cta-text {
    flex: 1;
}

.coverage-cta-text h3 {
    font-size: 1.75rem;
    color: var(--color-white);
    margin-bottom: 12px;
}

.coverage-cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
}

.coverage-cta .btn {
    flex-shrink: 0;
}

/* Responsive Coverage Area */
@media (max-width: 992px) {
    .coverage-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .coverage-cta-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .coverage-card {
        padding: 30px 25px;
    }
    
    .coverage-cta {
        padding: 40px 30px;
    }
    
    .coverage-cta-text h3 {
        font-size: 1.5rem;
    }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(201, 169, 97, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.quote-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.testimonial-author h4 {
    font-size: 1.125rem;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.rating {
    display: flex;
    gap: 4px;
}

.rating i {
    color: var(--color-accent);
    font-size: 1rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-text-light);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active,
.dot:hover {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--color-white);
    font-size: 1.25rem;
}

.contact-item h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.contact-item p {
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 1.25rem;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--color-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-light);
    border: 2px solid transparent;
    border-radius: 0;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 18px 36px;
    font-size: 1.0625rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--color-secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(201, 169, 97, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(201, 169, 97, 0.03) 87.5%, rgba(201, 169, 97, 0.03)),
}

        linear-gradient(150deg, rgba(201, 169, 97, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(201, 169, 97, 0.03) 87.5%, rgba(201, 169, 97, 0.03));
    background-size: 80px 140px;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-logo h3 {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.footer-logo h3 span {
    color: var(--color-primary);
}

.footer-tagline {
    color: var(--color-primary);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-description {
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 1.125rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    border-radius: 0;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: none;
    color: var(--color-white);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.newsletter-form button:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.whatsapp-button {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-smooth);
    position: relative;
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-45deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(10deg);
    }
    70% {
        transform: scale(0.9) rotate(-5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.whatsapp-button i {
    font-size: 2rem;
    color: var(--color-white);
    transition: transform var(--transition-fast);
}

.whatsapp-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-button:hover i {
    transform: scale(1.1);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

/* Pulse animation ring */
.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: pulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Tooltip */
.whatsapp-tooltip {
    background: var(--color-white);
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(-20px);
    transition: all var(--transition-smooth);
    pointer-events: none;
    white-space: nowrap;
    border-right: 4px solid #25D366;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-tooltip p {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-secondary);
    background: linear-gradient(135deg, #25D366, #128C7E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-button i {
        font-size: 1.75rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Accessibility - Hidden text for screen readers */
.whatsapp-button::after {
    content: 'Hubungi kami via WhatsApp untuk konsultasi gratis';
    position: absolute;
    left: -9999px;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    
    .about-content {
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .process-timeline {
        flex-wrap: wrap;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 40px;
    }
    
    .contact-wrapper {
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 24px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 32px;
        padding: 60px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .nav-contact {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero Section - Enhanced Mobile */
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-container {
        padding: 0 24px;
    }
    
    .hero-background {
        display: flex;
        align-items: center;
    }
    
    .hero-image-main {
        width: 100%;
        height: 45vh;
        top: 0;
        right: 0;
        bottom: auto;
    }
    
    .hero-image-main img {
        object-position: center center;
    }
    
    .hero-overlay {
        background: linear-gradient(to bottom,
            rgba(253, 251, 247, 0) 0%,
            rgba(253, 251, 247, 0.3) 30%,
            rgba(253, 251, 247, 0.85) 45%,
            var(--color-cream) 60%,
            var(--color-cream) 100%
        );
    }
    
    .hero-content {
        padding-top: calc(45vh - 60px);
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-label {
        font-size: 10px;
        margin-bottom: 20px;
    }
    
    .hero-heading {
        font-size: clamp(32px, 9vw, 48px);
        margin-bottom: 20px;
    }
    
    .hero-tagline {
        font-size: 15px;
        margin-bottom: 32px;
        line-height: 1.6;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-bottom: 50px;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 16px 32px;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 calc(33.333% - 14px);
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-scroll {
        display: none;
    }
    
    /* Sections */
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-left: 0;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        width: 140px;
        height: 140px;
    }
    
    .badge-number {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .service-image {
        height: 240px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-image {
        height: 300px;
    }
    
    .timeline-item {
        flex: 0 0 100%;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 35px 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 20px;
    }
    
    .logo-image {
        height: 100px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .logo-sub {
        font-size: 9px;
    }
    
    .nav-menu {
        padding: 60px 24px;
        max-width: 100%;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    /* Hero - Extra Small Mobile */
    .hero {
        min-height: 100vh;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-image-main {
        height: 40vh;
    }
    
    .hero-content {
        padding-top: calc(40vh - 50px);
    }
    
    .hero-label {
        font-size: 9px;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }
    
    .hero-heading {
        font-size: clamp(28px, 8vw, 36px);
        margin-bottom: 16px;
    }
    
    .hero-tagline {
        font-size: 14px;
        margin-bottom: 28px;
    }
    
    .hero-cta {
        margin-bottom: 40px;
        gap: 12px;
    }
    
    .cta-primary {
        padding: 14px 24px;
        font-size: 13px;
    }
    
    .cta-secondary {
        font-size: 13px;
    }
    
    .hero-stats {
        gap: 16px;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 0 0 calc(33.333% - 12px);
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 8px;
        letter-spacing: 1px;
    }
    
    /* Services - Small Mobile */
    .service-image {
        height: 220px;
    }
    
    .service-content {
        padding: 24px 20px 26px;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    
    .service-icon i {
        font-size: 1.25rem;
    }
    
    .service-content h3 {
        font-size: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    
    .hero-description {
        font-size: 1.0625rem;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
        padding-left: 45px;
    }
    
    .section-subtitle::before {
        width: 35px;
    }
    
    .about-features {
        gap: 16px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .service-card {
        padding: 30px 24px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.75rem;
    }
    
    .portfolio-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .testimonial-card {
        padding: 30px 24px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.bg-light { background-color: var(--color-light); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }


/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* ===================================
   LOADING STATES
   =================================== */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid var(--color-primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .navbar,
    .hamburger,
    .scroll-top,
    .hero-buttons,
    .scroll-indicator {
        display: none;
    }
}
