/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --primary-blue: #0066cc;
    --dark-blue: #003d7a;
    --light-blue: #3399ff;
    --accent-blue: #00a8ff;
    --black: #1a1a1a;
    --dark-gray: #2d2d2d;
    --gray: #666666;
    --light-gray: #e5e5e5;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #003d7a 100%);
    --gradient-secondary: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-blue);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 168, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.15) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-main {
    display: block;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.title-sub {
    display: block;
    font-size: 0.6em;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.4s forwards;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1.4s ease-out 0.6s forwards;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    min-width: 140px;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: inherit;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-price {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    margin-top: 0.3rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1.6s ease-out 0.8s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn i {
    font-size: 1rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.phone-number {
    font-weight: 700;
    font-size: 1.1em;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Animated Bubbles
   ============================================ */
.bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0.7;
    animation: rise linear infinite;
    pointer-events: none;
}

.bubble::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 20%;
    left: 10%;
}

.bubble::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 30%;
    left: 30%;
}

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        bottom: 100vh;
        transform: translateX(0);
        opacity: 0;
    }
}

/* Different sizes and speeds for bubbles */
.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 20%;
    animation-duration: 10s;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 30px;
    height: 30px;
    left: 30%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 50px;
    height: 50px;
    left: 40%;
    animation-duration: 9s;
    animation-delay: 0.5s;
}

.bubble:nth-child(5) {
    width: 35px;
    height: 35px;
    left: 50%;
    animation-duration: 8.5s;
    animation-delay: 1.5s;
}

.bubble:nth-child(6) {
    width: 55px;
    height: 55px;
    left: 60%;
    animation-duration: 11s;
    animation-delay: 0.8s;
}

.bubble:nth-child(7) {
    width: 45px;
    height: 45px;
    left: 70%;
    animation-duration: 9.5s;
    animation-delay: 2.2s;
}

.bubble:nth-child(8) {
    width: 38px;
    height: 38px;
    left: 80%;
    animation-duration: 8s;
    animation-delay: 1.2s;
}

.bubble:nth-child(9) {
    width: 52px;
    height: 52px;
    left: 15%;
    animation-duration: 10.5s;
    animation-delay: 0.3s;
}

.bubble:nth-child(10) {
    width: 42px;
    height: 42px;
    left: 25%;
    animation-duration: 9s;
    animation-delay: 1.8s;
}

.bubble:nth-child(11) {
    width: 48px;
    height: 48px;
    left: 35%;
    animation-duration: 8.8s;
    animation-delay: 0.6s;
}

.bubble:nth-child(12) {
    width: 33px;
    height: 33px;
    left: 45%;
    animation-duration: 7.5s;
    animation-delay: 2.5s;
}

.bubble:nth-child(13) {
    width: 58px;
    height: 58px;
    left: 55%;
    animation-duration: 11.5s;
    animation-delay: 0.4s;
}

.bubble:nth-child(14) {
    width: 36px;
    height: 36px;
    left: 65%;
    animation-duration: 8.2s;
    animation-delay: 1.7s;
}

.bubble:nth-child(15) {
    width: 50px;
    height: 50px;
    left: 75%;
    animation-duration: 9.8s;
    animation-delay: 0.9s;
}

.bubble:nth-child(16) {
    width: 44px;
    height: 44px;
    left: 85%;
    animation-duration: 10.2s;
    animation-delay: 1.4s;
}

.bubble:nth-child(17) {
    width: 39px;
    height: 39px;
    left: 5%;
    animation-duration: 8.3s;
    animation-delay: 2.1s;
}

.bubble:nth-child(18) {
    width: 54px;
    height: 54px;
    left: 90%;
    animation-duration: 11.2s;
    animation-delay: 0.7s;
}

.bubble:nth-child(19) {
    width: 41px;
    height: 41px;
    left: 12%;
    animation-duration: 9.3s;
    animation-delay: 1.9s;
}

.bubble:nth-child(20) {
    width: 47px;
    height: 47px;
    left: 88%;
    animation-duration: 10.8s;
    animation-delay: 0.2s;
}

/* Add horizontal movement to some bubbles */
.bubble:nth-child(odd) {
    animation-name: riseFloat;
}

@keyframes riseFloat {
    0% {
        bottom: -100px;
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        transform: translateX(30px);
    }
    90% {
        opacity: 0.7;
    }
    100% {
        bottom: 100vh;
        transform: translateX(-20px);
        opacity: 0;
    }
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 1.5rem;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease, border-color 0.3s ease, var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--light-blue);
}

.service-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.service-card.featured .service-icon {
    color: var(--white);
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.service-card.featured .service-title {
    color: var(--white);
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-blue);
}

.service-card.featured .price-amount {
    color: var(--white);
}

.price-unit {
    font-size: 1.2rem;
    color: var(--gray);
}

.service-card.featured .price-unit {
    color: rgba(255, 255, 255, 0.9);
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.service-card.featured .service-description {
    color: rgba(255, 255, 255, 0.95);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.95);
}

.service-card.featured .service-features li i {
    color: var(--white);
}

.service-video {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Process Section
   ============================================ */
.process {
    background: linear-gradient(to bottom, #f8f9fa 0%, var(--white) 100%);
    position: relative;
}

.process-section {
    margin-bottom: 5rem;
    position: relative;
}

.process-section-title {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.process-steps {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Timeline vertical line */
.process-steps::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    z-index: 1;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    position: relative;
    margin-left: 4rem;
    z-index: 2;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease, var(--transition);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    left: -4.25rem;
    top: 1.5rem;
    z-index: 3;
    box-shadow: 0 0 0 4px var(--white), 0 0 0 8px rgba(0, 102, 204, 0.1);
    transition: var(--transition);
    transform: translateX(-50%);
}

.process-step:hover .step-number {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 0 0 4px var(--white), 0 0 0 8px rgba(0, 102, 204, 0.2);
}

.step-content {
    flex: 1;
    margin-left: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Furniture process - alternate timeline */
.furniture-process {
    max-width: 1000px;
    margin: 0 auto;
}

.furniture-process::before {
    left: 50px;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--light-gray);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease, border-color 0.3s ease, var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.pricing-card.main-pricing {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.pricing-card.main-pricing .pricing-title {
    color: var(--white);
}

.pricing-badge {
    background: var(--accent-blue);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.pricing-card.main-pricing .price {
    color: var(--white);
}

.currency {
    font-size: 1.3rem;
    color: var(--gray);
}

.pricing-card.main-pricing .currency {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature-highlight {
    background: rgba(0, 168, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    font-size: 0.95rem;
}

.pricing-card.main-pricing .feature-highlight {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.pricing-note {
    font-size: 0.95rem;
    color: var(--gray);
    font-style: italic;
}

.pricing-card.main-pricing .pricing-note {
    color: rgba(255, 255, 255, 0.95);
}

.price-calculator {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.pricing-card.main-pricing .price-calculator {
    border-color: rgba(255, 255, 255, 0.3);
}

.price-calculator label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.pricing-card.main-pricing .price-calculator label {
    color: var(--white);
}

.calculator-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.calculator-input input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.calculator-input input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.calc-btn {
    padding: 0.8rem 1.5rem;
    background: var(--accent-blue);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.calc-btn:hover {
    background: var(--primary-blue);
    transform: scale(1.05);
}

.calculator-result {
    padding: 1rem;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card.main-pricing .calculator-result {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-table h4 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.price-row:last-child {
    border-bottom: none;
}

.item-name {
    color: var(--dark-gray);
    font-weight: 500;
}

.item-price {
    color: var(--primary-blue);
    font-weight: 700;
}

.pricing-notes {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.note-highlight {
    background: rgba(255, 193, 7, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.9rem;
    border-left: 4px solid #ffc107;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.note-highlight i {
    color: #ffc107;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 168, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .section-title {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact .section-title::after {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    font-weight: 500;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 769px) and (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 992px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 320px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 2.5rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.contact-icon i {
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.contact-link:hover::after {
    width: 80%;
}

.contact-card p {
    margin-top: 0.8rem;
    opacity: 0.95;
    line-height: 1.7;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.service-area {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 1rem;
    opacity: 0.9;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid rgba(255, 255, 255, 0.5);
}

.contact-cta {
    display: flex;
    align-items: stretch;
}

.cta-box {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-box:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-box p {
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.98);
}

.cta-box .btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-box .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-content > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact p i {
    width: 20px;
    text-align: center;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-link {
        display: block;
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        padding: 1rem 0;
    }

    /* Hide timeline line on mobile */
    .process-steps::before,
    .furniture-process::before {
        display: none;
    }

    .process-step {
        margin-left: 0;
        margin-bottom: 1.5rem;
    }

    .step-number {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
        min-width: auto;
        width: 100%;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-link {
        font-size: 1.2rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-box h3 {
        font-size: 1.6rem;
    }

    .cta-box p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-link {
        font-size: 1.2rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-box h3 {
        font-size: 1.6rem;
    }

    .cta-box p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pricing-tables {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .service-card,
    .pricing-card {
        padding: 1.5rem;
    }

    .hero-content {
        padding: 1rem;
    }
}

/* ============================================
   Animations & Effects
   ============================================ */
/* Initial hidden state for all animatable elements */
.service-card,
.pricing-card,
.contact-card,
.section-header,
.footer-content > *,
.cta-box {
    opacity: 0;
    transform: translateY(30px);
}

/* Process steps slide in from left */
.process-step {
    opacity: 0;
    transform: translateX(-30px);
}

/* Animation classes - override initial state */
.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.process-step.fade-in {
    transform: translateX(0) !important;
}

.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Scroll to Top Button */
.scroll-to-top {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.scroll-to-top i {
    font-size: 18px;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-blue);
}

