/* ============================================================================
   Designed | Curated Interiors - Sacramento Interior Designer
   Exact clone of WordPress site styling
   ========================================================================= */

/* ============================================================================
   CSS Reset & Base Styles
   ========================================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors from WordPress Astra Theme */
    --primary-color: #046bd2;
    --primary-dark: #045cb4;
    --text-color: #1e293b;
    --text-light: #666;
    --background: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #e5e5e5;
    --footer-bg: #010101;

    /* Typography - Matching WordPress fonts */
    --font-base: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-heading: "Montserrat", "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-script: "Alex Brush", cursive;

    /* Spacing */
    --section-padding: 80px 20px;
    --container-max-width: 1200px;
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================================================
   Typography
   ========================================================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.4em;
}

h2 {
    font-size: 1.875rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ============================================================================
   Layout Containers
   ========================================================================= */

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 80px 0;
}

.section-padding-small {
    padding: 40px 0;
}

.bg-light {
    background-color: var(--background-light);
}

/* ============================================================================
   Header
   ========================================================================= */

.site-header {
    background: #f9f7f1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.header-wrapper {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.site-branding {}

.custom-logo {
    height: auto;
    max-width: 160px;
    width: 160px;
    display: block;
    transition: opacity 0.3s ease;
}

.custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.custom-logo-link:hover .custom-logo {
    opacity: 0.85;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.menu-item a {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 8px 16px;
    display: block;
    position: relative;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.menu-item a:hover {
    color: var(--primary-color);
    background: rgba(4, 107, 210, 0.05);
}

.menu-item a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 16px;
    right: 16px;
    width: auto;
    height: 2px;
    background: var(--primary-color);
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.25s ease;
}

.menu-item a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Active Menu Item */
.menu-item.active a {
    color: var(--primary-color);
    background: rgba(4, 107, 210, 0.08);
}

.menu-item.active a::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Contact Button in Nav */
.menu-item.contact-cta a {
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(184, 152, 95, 0.25);
    transition: all 0.3s ease;
}

.menu-item.contact-cta a::after {
    display: none;
}

.menu-item.contact-cta a:hover {
    background: linear-gradient(135deg, #a38450 0%, #b8985f 100%);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(184, 152, 95, 0.35);
}

/* Active Contact Button */
.menu-item.contact-cta.active a {
    background: linear-gradient(135deg, #a38450 0%, #b8985f 100%);
    box-shadow: 0 3px 10px rgba(184, 152, 95, 0.4);
    color: #ffffff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.menu-toggle-icon {
    width: 22px;
    height: 2px;
    background: var(--text-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ============================================================================
   Hero Section
   ========================================================================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e6e1 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.45) 100%);
    z-index: 2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: kenburns 25s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1.05) translateX(0);
    }
    100% {
        transform: scale(1.1) translateX(-20px);
    }
}

/* Decorative Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #c9b17a 0%, #b8985f 100%);
    bottom: -80px;
    left: -80px;
    animation-delay: 3s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(20px, 20px) rotate(270deg);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 80px 20px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-content .container {
    background: rgba(249, 247, 241, 0.15);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 40px 40px;
    border-radius: 20px;
    border: 1px solid rgba(184, 152, 95, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    will-change: transform;
    transform: translateZ(0);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(184, 152, 95, 0.3);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #b8985f;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease-out 0.3s both;
}

.hero-title {
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -2px;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
}

.hero-title-sub {
    display: block;
    font-family: var(--font-script);
    font-size: 4.5rem;
    font-weight: 400;
    background: linear-gradient(135deg, #d4af6a 0%, #e8d4a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: 2px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto 30px;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(184, 152, 95, 0.35);
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a38450 0%, #b8985f 100%);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.hero-btn-primary:hover::before {
    left: 0;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(184, 152, 95, 0.45);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--text-color);
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-color);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.hero-btn-secondary:hover::before {
    left: 0;
}

.hero-btn-secondary:hover {
    color: #ffffff;
    border-color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: fadeIn 1s ease-out 1.5s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.scroll-text {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    margin-right: -1.5px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    animation: bounce 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-arrow i {
    font-size: 16px;
    color: #e8d4a0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    line-height: 1;
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================================================
   Page Title Section (for non-homepage pages)
   ========================================================================= */

.page-title-section {
    text-align: center;
    background: var(--background-light);
    padding: 60px 20px;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.2;
}

/* ============================================================================
   Intro Section
   ========================================================================= */

.intro-section {
    text-align: center;
}

.section-title-centered {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 35px;
    color: var(--text-color);
    letter-spacing: -0.5px;
    position: relative;
    width: 100%;
}

.section-title-centered::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #b8985f 0%, #c9b17a 100%);
    border-radius: 2px;
}

.section-title-script {
    font-family: var(--font-script);
    text-align: center;
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 35px;
    color: #b8985f;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 1px;
}

.intro-content {
    max-width: 950px;
    margin: 0 auto 50px;
}

.lead-text {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.btn-animated {
    display: inline-block;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    background: transparent;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-color);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-animated:hover::before {
    left: 0;
}

.btn-animated:hover {
    color: var(--background);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-center {
    text-align: center;
    margin-top: 45px;
}

/* ============================================================================
   Image Grid
   ========================================================================= */

.image-grid-section {
    position: relative;
}

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

.grid-image {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    aspect-ratio: 4 / 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.grid-image:hover::before {
    opacity: 1;
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.grid-image:hover img {
    transform: scale(1.08);
}

/* ============================================================================
   About Section
   ========================================================================= */

.about-section {
    position: relative;
}

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

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #c9b17a;
    z-index: -1;
    opacity: 0.3;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-content h2 {
    font-size: 2.75rem;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #b8985f 0%, #c9b17a 100%);
}

/* Stylized Phase Titles */
.phase-title {
    font-family: var(--font-script);
    font-size: 3.8rem;
    font-weight: 400;
    color: #c9b17a;
    text-transform: lowercase;
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: 1px;
}

.about-content p {
    margin-bottom: 22px;
    line-height: 1.9;
    color: var(--text-light);
    font-size: 15.5px;
}

.signature {
    margin-top: 35px;
}

.signature img {
    max-width: 220px;
    height: auto;
    opacity: 0.9;
}

/* ============================================================================
   About Us Section
   ========================================================================= */

.about-us-section {
    text-align: center;
}

.about-us-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-us-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ============================================================================
   Design Philosophy Section
   ========================================================================= */

.philosophy-section {
    position: relative;
}

.philosophy-intro {
    max-width: 950px;
    margin: 0 auto 60px;
    text-align: center;
}

.lead-philosophy {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
    margin: 0;
    font-weight: 400;
}

.philosophy-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.philosophy-feature {
    position: relative;
    text-align: center;
    padding: 50px 35px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.philosophy-feature:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(184, 152, 95, 0.2);
}

.feature-icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(184, 152, 95, 0.1) 0%, rgba(201, 177, 122, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-icon-box::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.philosophy-feature:hover .feature-icon-box::before {
    border-color: rgba(184, 152, 95, 0.3);
}

.feature-icon-box i {
    font-size: 36px;
    color: #b8985f;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.philosophy-feature:hover .feature-icon-box {
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    transform: scale(1.1) rotate(5deg);
}

.philosophy-feature:hover .feature-icon-box i {
    color: #ffffff;
    transform: scale(1.15);
}

.philosophy-feature h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.philosophy-feature:hover h3 {
    color: #b8985f;
}

.philosophy-feature p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.philosophy-cta {
    margin-top: 70px;
    text-align: center;
    padding: 40px;
    background: rgba(184, 152, 95, 0.05);
    border-radius: 12px;
    border: 2px dashed rgba(184, 152, 95, 0.2);
}

.cta-question {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.philosophy-cta .btn-primary-cta {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    color: #ffffff;
    font-size: 15.5px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(184, 152, 95, 0.25);
}

.philosophy-cta .btn-primary-cta:hover {
    background: linear-gradient(135deg, #a38450 0%, #b8985f 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 152, 95, 0.35);
}

/* ============================================================================
   What Sets Us Apart Section
   ========================================================================= */

.what-sets-us-apart-section {
    position: relative;
}

.apart-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.apart-feature {
    position: relative;
    text-align: center;
    padding: 45px 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.apart-feature:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(184, 152, 95, 0.2);
}

.apart-feature .feature-icon-box {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(184, 152, 95, 0.1) 0%, rgba(201, 177, 122, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.apart-feature .feature-icon-box::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.apart-feature:hover .feature-icon-box::before {
    border-color: rgba(184, 152, 95, 0.3);
}

.apart-feature .feature-icon-box i {
    font-size: 34px;
    color: #b8985f;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.apart-feature:hover .feature-icon-box {
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    transform: scale(1.1) rotate(5deg);
}

.apart-feature:hover .feature-icon-box i {
    color: #ffffff;
    transform: scale(1.15);
}

.apart-feature h3 {
    font-size: 1.35rem;
    color: var(--text-color);
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.apart-feature:hover h3 {
    color: #b8985f;
}

.apart-feature p {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text-light);
    margin: 0;
}

/* ============================================================================
   Project Categories Section (Portfolio Page)
   ========================================================================= */

.project-categories-section {
    position: relative;
}

.category-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.category-feature {
    position: relative;
    text-align: center;
    padding: 45px 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-feature:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(184, 152, 95, 0.2);
}

.category-feature .category-icon-box {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(184, 152, 95, 0.1) 0%, rgba(201, 177, 122, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.category-feature .category-icon-box::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-feature:hover .category-icon-box::before {
    border-color: rgba(184, 152, 95, 0.3);
}

.category-feature .category-icon-box i {
    font-size: 34px;
    color: #b8985f;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-feature:hover .category-icon-box {
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    transform: scale(1.1) rotate(5deg);
}

.category-feature:hover .category-icon-box i {
    color: #ffffff;
    transform: scale(1.15);
}

.category-feature h3 {
    font-size: 1.35rem;
    color: var(--text-color);
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.category-feature:hover h3 {
    color: #b8985f;
}

.category-feature p {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text-light);
    margin: 0;
}

/* ============================================================================
   Expertise Section (Virtual Design Page)
   ========================================================================= */

.expertise-section {
    position: relative;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.expertise-card {
    position: relative;
    text-align: center;
    padding: 40px 25px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.expertise-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(184, 152, 95, 0.2);
}

.expertise-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(184, 152, 95, 0.1) 0%, rgba(201, 177, 122, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.expertise-icon-box::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card:hover .expertise-icon-box::before {
    border-color: rgba(184, 152, 95, 0.3);
}

.expertise-icon-box i {
    font-size: 32px;
    color: #b8985f;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card:hover .expertise-icon-box {
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    transform: scale(1.1) rotate(5deg);
}

.expertise-card:hover .expertise-icon-box i {
    color: #ffffff;
    transform: scale(1.15);
}

.expertise-card h3 {
    font-size: 1.15rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.expertise-card:hover h3 {
    color: #b8985f;
}

/* ============================================================================
   Portfolio Section
   ========================================================================= */

.portfolio-section {
    position: relative;
}

.section-subtitle {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 50px;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 16px;
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 3 / 4;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 152, 95, 0.2), rgba(201, 177, 122, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

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

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 70%,
        transparent);
    color: #fff;
    padding: 35px 30px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3,
.portfolio-overlay h4 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 1.65rem;
    letter-spacing: -0.3px;
    font-weight: 600;
}

.portfolio-overlay .project-type {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ============================================================================
   FAQ Section
   ========================================================================= */

.faq-section {}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 40px;
}

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================================================
   Contact Section
   ========================================================================= */

.contact-section {
    position: relative;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(184, 152, 95, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 152, 95, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
    align-items: start;
}

.contact-info {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-info > h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.3px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5f5f5;
}

.contact-info-item {
    margin-bottom: 20px;
    padding: 16px;
    background: #fafafa;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.contact-info-item:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(184, 152, 95, 0.15);
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item h3 {
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-item h3::before {
    content: '';
    width: 4px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-info-item p {
    margin-bottom: 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
}

.contact-info-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-description {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form {
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.form-group label .required {
    color: #d32f2f;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-base);
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(184, 152, 95, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Turnstile Widget Styling */
.form-group .cf-turnstile {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.contact-form {
    text-align: center;
}

.contact-form .form-row,
.contact-form .form-group {
    text-align: left;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    color: #ffffff;
    padding: 16px 42px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(184, 152, 95, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.btn-submit::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.5s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #a38450 0%, #b8985f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 152, 95, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(4px);
}

/* Form Message */
.form-message {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
    text-align: left;
}

.form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    display: block;
}

.form-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-info {
        padding: 30px 20px;
        height: auto;
    }

    .contact-info > h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .contact-info-item {
        padding: 14px;
        margin-bottom: 16px;
    }

    .contact-info-item:hover {
        transform: translateX(0);
    }

    .contact-form-wrapper {
        padding: 30px 20px;
        height: auto;
    }

    .contact-form-wrapper h2 {
        font-size: 1.6rem;
    }

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

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

/* ============================================================================
   Services Showcase Section
   ========================================================================= */

.services-showcase {
    position: relative;
}

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

.service-card {
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b8985f 0%, #c9b17a 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(184, 152, 95, 0.1) 0%, rgba(201, 177, 122, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon i {
    font-size: 32px;
    color: #b8985f;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon i {
    color: #ffffff;
    transform: scale(1.15);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #b8985f;
}

.service-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* ============================================================================
   Stats Section
   ========================================================================= */

.stats-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e6e1 100%);
    position: relative;
}

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

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(184, 152, 95, 0.3), transparent);
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================================================
   Testimonials Section
   ========================================================================= */

.testimonials-section {
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.12);
    border-color: rgba(184, 152, 95, 0.2);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 32px;
    color: rgba(184, 152, 95, 0.2);
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-quote i {
    color: rgba(184, 152, 95, 0.4);
    transform: scale(1.1);
}

.testimonial-text {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
}

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

.author-info h4 {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 4px;
    font-weight: 600;
}

.author-info p {
    font-size: 13px;
    color: #b8985f;
    margin: 0;
    font-weight: 500;
}

/* ============================================================================
   Process Section
   ========================================================================= */

.process-section {
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

/* Timeline connector */
.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(184, 152, 95, 0.2) 10%,
        rgba(184, 152, 95, 0.4) 50%,
        rgba(184, 152, 95, 0.2) 90%,
        transparent 100%);
    z-index: 0;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(184, 152, 95, 0.3);
    z-index: 2;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 30px auto 20px;
    background: linear-gradient(135deg, rgba(184, 152, 95, 0.1) 0%, rgba(201, 177, 122, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-icon i {
    font-size: 28px;
    color: #b8985f;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    transform: scale(1.1) rotate(5deg);
}

.process-step:hover .step-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

.step-title {
    font-size: 1.15rem;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.step-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.process-note {
    margin-top: 60px;
    padding: 30px 40px;
    background: rgba(184, 152, 95, 0.08);
    border-left: 4px solid #b8985f;
    border-radius: 8px;
    text-align: center;
}

.process-note p {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-color);
}

.process-note strong {
    color: #b8985f;
    font-weight: 600;
}

/* ============================================================================
   Enhanced CTA Section
   ========================================================================= */

.enhanced-cta-section {
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e6e1 100%);
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(184, 152, 95, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 177, 122, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 45px;
}

.cta-buttons-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-cta {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(184, 152, 95, 0.3);
    letter-spacing: 0.5px;
}

.btn-primary-cta:hover {
    background: linear-gradient(135deg, #a38450 0%, #b8985f 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184, 152, 95, 0.4);
}

.btn-secondary-cta {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--text-color);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-secondary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-color);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-secondary-cta:hover::before {
    left: 0;
}

.btn-secondary-cta:hover {
    color: #ffffff;
    border-color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ============================================================================
   Footer
   ========================================================================= */

.site-footer {
    background: #f2efe7;
    color: #666;
    padding: 70px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-wrapper {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover .footer-logo {
    opacity: 1;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Footer Widgets */
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-widget h3 {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #b8985f 0%, #c9b17a 100%);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-links li {
    margin-bottom: 12px;
}

.footer-widget-links a {
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-widget-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #c9b17a;
}

.footer-widget-links a:hover {
    color: var(--text-color);
    padding-left: 20px;
}

.footer-widget-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-list i {
    color: #c9b17a;
    font-size: 14px;
    width: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: #666;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--text-color);
}

.footer-contact-list span {
    color: #666;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 50%,
        transparent 100%);
    margin: 0 0 35px;
}

/* Footer Bottom */
.footer-bottom {
    padding-bottom: 35px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #888;
    font-size: 13px;
    margin: 0;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(201, 177, 122, 0.3);
    border-color: #c9b17a;
}

/* ============================================================================
   Responsive Design
   ========================================================================= */

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .about-grid {
        gap: 40px;
    }

    .contact-grid {
        gap: 40px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

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

    .cta-title {
        font-size: 2.8rem;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .process-steps::before {
        display: none;
    }

    .philosophy-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .apart-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .category-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 921px) {
    .header-wrapper {
        padding: 12px 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .primary-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #f9f7f1;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding: 12px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .primary-menu.active {
        display: flex;
    }

    .menu-item {
        border-bottom: none;
    }

    .menu-item a {
        padding: 12px 16px;
        border-radius: 4px;
        margin-bottom: 4px;
    }

    .menu-item.contact-cta a {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
    }

    .hero-section {
        min-height: 90vh;
    }

    .hero-content .container {
        padding: 35px 30px;
        border-radius: 16px;
    }

    .hero-title-main {
        font-size: 2.8rem;
    }

    .hero-title-sub {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .shape-1 {
        width: 300px;
        height: 300px;
    }

    .shape-2 {
        width: 250px;
        height: 250px;
    }

    .shape-3 {
        width: 150px;
        height: 150px;
    }

    .section-title-centered {
        font-size: 2.25rem;
    }

    .section-title-script {
        font-size: 3.5rem;
    }

    .image-grid-3col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .about-content {
        text-align: center;
    }

    .about-content p {
        text-align: left;
    }

    .about-content .signature {
        text-align: center;
    }

    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-image::before {
        top: -15px;
        left: -15px;
    }

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

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

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

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

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

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

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

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-note {
        padding: 25px 30px;
    }

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

    .philosophy-cta {
        padding: 35px;
    }

    .apart-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .category-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .custom-logo {
        max-width: 140px;
        width: 140px;
    }

    .header-wrapper {
        padding: 10px 20px;
        min-height: 60px;
    }

    .hero-section {
        min-height: 85vh;
    }

    .hero-content {
        padding: 60px 20px;
    }

    .hero-content .container {
        padding: 35px 25px;
        border-radius: 12px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 7px 18px;
        margin-bottom: 18px;
    }

    .hero-title-main {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

    .hero-title-sub {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn {
        width: 100%;
        max-width: 350px;
        padding: 16px 35px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-text {
        font-size: 11px;
    }

    .shape-1 {
        width: 250px;
        height: 250px;
    }

    .shape-2 {
        width: 200px;
        height: 200px;
    }

    .shape-3 {
        width: 120px;
        height: 120px;
    }

    .section-padding {
        padding: 60px 0;
    }

    h2 {
        font-size: 2rem;
    }

    .section-title-centered {
        font-size: 2rem;
    }

    .section-title-script {
        font-size: 3rem;
    }

    .lead-text {
        font-size: 1.15rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-animated {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }

    .about-image::before {
        display: none;
    }

    .about-content h2::after {
        width: 40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-wrapper {
        padding: 0 20px;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stats-grid {
        gap: 30px;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1.05rem;
    }

    .cta-buttons-row {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        text-align: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 24px;
    }

    .step-title {
        font-size: 1.05rem;
    }

    .process-note {
        padding: 25px;
    }

    .process-note p {
        font-size: 14.5px;
    }

    .feature-icon-box {
        width: 75px;
        height: 75px;
    }

    .feature-icon-box i {
        font-size: 30px;
    }

    .philosophy-feature {
        padding: 40px 30px;
    }

    .philosophy-feature h3 {
        font-size: 1.35rem;
    }

    .philosophy-cta {
        padding: 30px;
    }

    .cta-question {
        font-size: 1.35rem;
    }

    .apart-feature {
        padding: 40px 28px;
    }

    .apart-feature .feature-icon-box {
        width: 72px;
        height: 72px;
    }

    .apart-feature .feature-icon-box i {
        font-size: 30px;
    }

    .apart-feature h3 {
        font-size: 1.25rem;
    }

    .apart-feature p {
        font-size: 14px;
    }

    .category-feature {
        padding: 40px 28px;
    }

    .category-feature .category-icon-box {
        width: 72px;
        height: 72px;
    }

    .category-feature .category-icon-box i {
        font-size: 30px;
    }

    .category-feature h3 {
        font-size: 1.25rem;
    }

    .category-feature p {
        font-size: 14px;
    }

    .expertise-card {
        padding: 35px 25px;
    }

    .expertise-icon-box {
        width: 70px;
        height: 70px;
    }

    .expertise-icon-box i {
        font-size: 28px;
    }

    .expertise-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 544px) {
    .container,
    .container-wide {
        padding: 0 15px;
    }

    .header-wrapper {
        padding: 10px 15px;
        min-height: 56px;
    }

    .custom-logo {
        max-width: 130px;
        width: 130px;
    }

    .hero-section {
        min-height: 80vh;
    }

    .hero-content {
        padding: 50px 15px;
    }

    .hero-content .container {
        padding: 28px 18px;
        border-radius: 10px;
    }

    .hero-badge {
        font-size: 9px;
        padding: 6px 16px;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .hero-title-main {
        font-size: 2rem;
        letter-spacing: -0.5px;
        margin-bottom: 6px;
    }

    .hero-title-sub {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 22px;
    }

    .hero-btn {
        padding: 13px 28px;
        font-size: 14px;
    }

    .scroll-indicator {
        bottom: 15px;
    }

    .scroll-text {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .scroll-arrow {
        width: 20px;
        height: 20px;
    }

    .scroll-arrow i {
        font-size: 14px;
    }

    .shape-1 {
        width: 200px;
        height: 200px;
        top: -80px;
        right: -80px;
    }

    .shape-2 {
        width: 150px;
        height: 150px;
        bottom: -60px;
        left: -60px;
    }

    .shape-3 {
        width: 100px;
        height: 100px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-title-section {
        padding: 40px 20px;
    }

    .phase-title {
        font-size: 2.8rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title-centered {
        font-size: 1.75rem;
    }

    .section-title-script {
        font-size: 2.5rem;
    }

    .lead-text {
        font-size: 1.05rem;
    }

    .about-content h2 {
        font-size: 1.9rem;
    }

    .about-content {
        text-align: center;
    }

    .about-content p {
        text-align: left;
    }

    .about-content .signature {
        text-align: center;
    }

    .btn-animated {
        padding: 13px 25px;
        font-size: 14px;
    }

    .portfolio-overlay h3 {
        font-size: 1.35rem;
    }

    .grid-image {
        aspect-ratio: 3 / 4;
    }

    .footer-wrapper {
        padding: 0 15px;
    }

    .footer-top {
        gap: 35px;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-widget {
        text-align: center;
    }

    .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-title {
        font-size: 1.85rem;
    }

    .cta-description {
        font-size: 0.95rem;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 28px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .step-icon {
        width: 55px;
        height: 55px;
        margin: 25px auto 15px;
    }

    .step-icon i {
        font-size: 22px;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 13.5px;
    }

    .process-note {
        padding: 20px;
    }

    .process-note p {
        font-size: 14px;
    }

    .feature-icon-box {
        width: 65px;
        height: 65px;
    }

    .feature-icon-box i {
        font-size: 26px;
    }

    .philosophy-feature {
        padding: 35px 25px;
    }

    .philosophy-feature h3 {
        font-size: 1.2rem;
    }

    .philosophy-feature p {
        font-size: 14px;
    }

    .philosophy-cta {
        padding: 25px 20px;
    }

    .cta-question {
        font-size: 1.2rem;
    }

    .philosophy-cta .btn-primary-cta {
        padding: 14px 35px;
        font-size: 14.5px;
    }

    .apart-feature {
        padding: 35px 22px;
    }

    .apart-feature .feature-icon-box {
        width: 65px;
        height: 65px;
    }

    .apart-feature .feature-icon-box i {
        font-size: 26px;
    }

    .apart-feature h3 {
        font-size: 1.1rem;
    }

    .apart-feature p {
        font-size: 13.5px;
    }

    .category-feature {
        padding: 35px 22px;
    }

    .category-feature .category-icon-box {
        width: 65px;
        height: 65px;
    }

    .category-feature .category-icon-box i {
        font-size: 26px;
    }

    .category-feature h3 {
        font-size: 1.1rem;
    }

    .category-feature p {
        font-size: 13.5px;
    }

    .expertise-card {
        padding: 30px 20px;
    }

    .expertise-icon-box {
        width: 65px;
        height: 65px;
    }

    .expertise-icon-box i {
        font-size: 26px;
    }

    .expertise-card h3 {
        font-size: 1rem;
    }
}

/* ============================================================================
   Animations
   ========================================================================= */

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

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

.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-up {
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Scroll reveal states - elements hidden by default */
section:not(.hero-section) {
    opacity: 0;
}

.grid-image,
.portfolio-item {
    opacity: 0;
}

/* Smooth transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Page loading transition */
body {
    animation: pageLoad 0.4s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Premium utility classes */
.text-gradient {
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #c9b17a;
    outline-offset: 3px;
}

/* Selection color */
::selection {
    background: #c9b17a;
    color: #ffffff;
}

::-moz-selection {
    background: #c9b17a;
    color: #ffffff;
}

/* ============================================================================
   Blog Section
   ========================================================================= */

.blog-section {
    position: relative;
}

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

.blog-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(184, 152, 95, 0.2);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.blog-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-card-content {
    padding: 35px 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.blog-date,
.blog-read-time {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-date i,
.blog-read-time i {
    color: #b8985f;
    font-size: 12px;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: #b8985f;
}

.blog-card-excerpt {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b8985f;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-read-more {
    gap: 12px;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

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

/* ============================================================================
   Blog AJAX Loading State
   ========================================================================= */

.blog-section {
    transition: opacity 0.3s ease;
}

.blog-section.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* ============================================================================
   Blog Pagination
   ========================================================================= */

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 70px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination-btn:hover:not(.disabled) {
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-numbers {
    display: flex;
    gap: 10px;
}

.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination-number:hover,
.pagination-number.active {
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* ============================================================================
   Newsletter Section
   ========================================================================= */

.newsletter-section {
    position: relative;
    background: #ffffff;
}

.newsletter-form-wrapper {
    max-width: 600px;
    margin: 50px auto 0;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: #ffffff;
}

.newsletter-input:focus {
    outline: none;
    border-color: #b8985f;
    box-shadow: 0 0 0 4px rgba(184, 152, 95, 0.1);
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 152, 95, 0.3);
}

.newsletter-btn:active {
    transform: translateY(-1px);
}

/* ============================================================================
   Blog Detail Page
   ========================================================================= */

.blog-detail-hero {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, rgba(184, 152, 95, 0.03) 0%, rgba(201, 177, 122, 0.05) 100%);
}

.blog-detail-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-detail-category {
    display: inline-block;
    background: linear-gradient(135deg, #b8985f 0%, #c9b17a 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-detail-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blog-detail-image {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-detail-content p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 25px;
}

.blog-detail-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 50px 0 25px;
    color: var(--text-dark);
}

.blog-detail-content h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.blog-detail-content li {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 12px;
}

.blog-detail-content blockquote {
    border-left: 4px solid #b8985f;
    padding: 25px 35px;
    margin: 40px 0;
    background: rgba(184, 152, 95, 0.05);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 18px;
    color: var(--text-dark);
}

.blog-share-section {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-share-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.blog-share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: #ffffff;
}

.share-btn.twitter {
    background: #1da1f2;
    color: #ffffff;
}

.share-btn.linkedin {
    background: #0a66c2;
    color: #ffffff;
}

.share-btn.pinterest {
    background: #e60023;
    color: #ffffff;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.related-posts-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

/* ============================================================================
   Blog Responsive Styles
   ========================================================================= */

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

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

    .blog-detail-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-image {
        height: 240px;
    }

    .blog-card-content {
        padding: 28px 25px;
    }

    .blog-card-title {
        font-size: 1.35rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .blog-detail-title {
        font-size: 2.2rem;
    }

    .blog-detail-content h2 {
        font-size: 1.8rem;
    }

    .blog-detail-content h3 {
        font-size: 1.4rem;
    }

    .blog-pagination {
        gap: 10px;
    }

    .pagination-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .pagination-number {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }
}

@media (max-width: 544px) {
    .blog-card-image {
        height: 200px;
    }

    .blog-card-content {
        padding: 25px 20px;
    }

    .blog-card-title {
        font-size: 1.25rem;
    }

    .blog-card-excerpt {
        font-size: 14px;
    }

    .blog-meta {
        gap: 15px;
    }

    .blog-date,
    .blog-read-time {
        font-size: 12px;
    }

    .blog-detail-title {
        font-size: 1.8rem;
    }

    .blog-share-buttons {
        flex-direction: column;
    }

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

/* ============================================================================
   Accessibility - Reduced Motion
   ========================================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-background img {
        animation: none !important;
    }
}
