/* ===============================================
   GAETANA DESIGN STUDIOS - LUXURY WEBSITE STYLES
   =============================================== */

/* CSS Custom Properties */
:root {
    /* Colors */
    --gold: #bc9c5e;
    --gold-light: #d4b373;
    --gold-dark: #a08851;
    --beige: #e6dfd5;
    --beige-light: #f2ede4;
    --black: #161609;
    --white: #ffffff;
    --gray-light: #f8f8f8;
    --gray-medium: #666666;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    --gradient-hero: linear-gradient(rgba(22, 22, 9, 0.3), rgba(22, 22, 9, 0.5));
    --gradient-overlay: linear-gradient(45deg, rgba(188, 156, 94, 0.1), rgba(230, 223, 213, 0.1));
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Animations */
    --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-indexes */
    --z-nav: 1000;
    --z-hero-content: 100;
    --z-hero-overlay: 50;
    --z-hero-slices: 10;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    font-weight: 300;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s var(--ease-elegant);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.3s var(--ease-elegant);
    z-index: -1;
}

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

.btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(188, 156, 94, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary::before {
    background: var(--gold);
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(188, 156, 94, 0.2);
}

.btn-full {
    width: 100%;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(22, 22, 9, 0.8), transparent);
    z-index: var(--z-nav);
    padding: 10px 0;
    transition: all 0.3s var(--ease-elegant);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav.scrolled .nav-logo {
    background: var(--beige);
    padding: 15px 30px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Block - Hangs over hero */
.nav-logo {
    background: var(--black);
    padding: 0px;
    box-shadow: 0 10px 40px rgba(22, 22, 9, 0.3);
    transition: all 0.3s var(--ease-elegant);
    position: relative;
    margin-top: 0;
    border-bottom: 2px solid var(--gold);
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    height: 25px;
    background: linear-gradient(to bottom, rgba(22, 22, 9, 0.2), transparent);
}

.nav-logo .logo-img {
    height: 140px;
    width: auto;
    transition: all 0.3s var(--ease-elegant);
    filter: brightness(1.1);
}

.nav.scrolled .nav-logo {
    padding: 15px 30px;
    background: var(--black);
}

.nav.scrolled .nav-logo .logo-img {
    height: 80px;
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    position: relative;
    padding: 8px 12px;
    background: rgba(22, 22, 9, 0.7);
    border-radius: 4px;
    transition: all 0.3s var(--ease-elegant);
}

.nav.scrolled .nav-link {
    color: var(--black);
    background: transparent;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: all 0.3s var(--ease-elegant);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--gold);
    background: rgba(22, 22, 9, 0.9);
    transform: translateY(-2px);
}

.nav.scrolled .nav-link:hover {
    background: rgba(188, 156, 94, 0.1);
}

.nav-link.active {
    color: var(--gold);
    background: var(--black);
}

.nav.scrolled .nav-link.active {
    background: rgba(188, 156, 94, 0.15);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease-elegant);
}

.nav.scrolled .bar {
    background: var(--black);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

/* Hero Background with Fade In */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('room.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0;
    animation: heroFadeIn 2s ease-out forwards;
    filter: brightness(0.85);
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        filter: blur(10px) brightness(0.6);
    }
    50% {
        filter: blur(5px) brightness(0.75);
    }
    100% {
        opacity: 1;
        filter: blur(0) brightness(0.85);
    }
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: var(--z-hero-overlay);
}

.hero-content {
    position: relative;
    z-index: var(--z-hero-content);
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1.5s var(--ease-elegant) 1.5s both;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    position: relative;
    overflow: hidden;
}

.title-line::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-elegant) 1.5s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-hero-content);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: var(--white);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: translateX(-50%) rotate(45deg);
}

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

/* Section Styling */
section {
    padding: var(--section-padding);
}

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

.section-title {
    position: relative;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--beige-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.service-item {
    text-align: center;
    padding: 50px 30px;
    background: var(--white);
    border-radius: 0;
    transition: all 0.3s var(--ease-elegant);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    transition: left 0.3s var(--ease-elegant);
    z-index: 1;
}

.service-item:hover::before {
    left: 0;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s var(--ease-elegant);
}

.service-item:hover .icon-bg {
    opacity: 0.2;
    transform: scale(1.1);
}

.service-icon .icon {
    width: 40px;
    height: 40px;
    z-index: 3;
    color: var(--gold);
    stroke: var(--gold);
    transition: all 0.3s var(--ease-elegant);
}

.service-item:hover .service-icon .icon {
    transform: scale(1.1);
    color: var(--gold-dark);
    stroke: var(--gold-dark);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.service-description {
    color: var(--gray-medium);
    line-height: 1.7;
    z-index: 2;
    position: relative;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.3s var(--ease-elegant);
    overflow: hidden;
}

/* Portfolio item backgrounds */
.portfolio-dining {
    background: linear-gradient(135deg, var(--beige) 0%, var(--gold) 100%);
}

.portfolio-living {
    background: linear-gradient(135deg, #c5b6a0 0%, #8b7560 50%, var(--gold-dark) 100%);
}

.portfolio-bedroom {
    background: linear-gradient(135deg, var(--beige-light) 0%, #d4b896 50%, #a08658 100%);
}

/* Decorative pattern overlay */
.portfolio-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(188, 156, 94, 0.2) 35px,
            rgba(188, 156, 94, 0.2) 70px
        );
    animation: patternShift 20s linear infinite;
}

@keyframes patternShift {
    0% { transform: translateX(0); }
    100% { transform: translateX(70px); }
}

.portfolio-item:hover .portfolio-pattern {
    opacity: 0.2;
}

/* Portfolio CTA */
.portfolio-cta {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.view-gallery-btn {
    display: inline-block !important;
    padding: 18px 45px !important;
    font-size: 16px !important;
    letter-spacing: 2px !important;
    background: var(--gradient-gold) !important;
    color: var(--white) !important;
    border: 2px solid var(--gold) !important;
    cursor: pointer;
    transition: all 0.3s var(--ease-elegant);
}

.view-gallery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(188, 156, 94, 0.4);
}

/* Modal Gallery */
.modal-gallery {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(22, 22, 9, 0.95);
    animation: fadeIn 0.3s var(--ease-elegant);
}

.modal-gallery.active {
    display: block;
}

.modal-content {
    background-color: var(--white);
    margin: 50px auto;
    padding: 40px;
    width: 90%;
    max-width: 1400px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s var(--ease-elegant);
}

.close-modal {
    position: absolute;
    right: 40px;
    top: 30px;
    font-size: 36px;
    font-weight: 300;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s var(--ease-elegant);
    z-index: 2001;
}

.close-modal:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-title {
    text-align: center;
    color: var(--gold);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s var(--ease-elegant);
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-elegant);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(188, 156, 94, 0.3);
}

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

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

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


.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(22, 22, 9, 0.95), rgba(22, 22, 9, 0.6) 60%, transparent);
    color: var(--white);
    padding: 40px 30px 30px;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s var(--ease-elegant);
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(22, 22, 9, 1), rgba(22, 22, 9, 0.8) 60%, rgba(22, 22, 9, 0.3));
    padding-bottom: 40px;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.portfolio-category {
    color: var(--gold-light);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials {
    background: var(--black);
    color: var(--white);
}

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

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;
}

.testimonial-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s var(--ease-elegant);
    text-align: center;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--beige-light);
}

.testimonial-author {
    margin-top: 30px;
}

.author-name {
    color: var(--white);
    margin-bottom: 5px;
}

.author-title {
    color: var(--gold-light);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-elegant);
}

.dot.active,
.dot:hover {
    background: var(--gold);
}

/* Contact Section */
.contact {
    background: var(--beige-light);
}

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

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 50px;
    line-height: 1.7;
}

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

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

.contact-icon {
    width: 30px;
    height: 30px;
    margin-top: 5px;
    color: var(--gold);
    stroke: var(--gold);
    transition: all 0.3s var(--ease-elegant);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    color: var(--gold-dark);
    stroke: var(--gold-dark);
}

.contact-text h4 {
    color: var(--gold);
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-text p {
    color: var(--gray-medium);
    margin: 0;
}

/* Form Styling */
.form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 18px 0;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--black);
    transition: all 0.3s var(--ease-elegant);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

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

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    font-size: 0.9rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s var(--ease-elegant);
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.social-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

.principle-icon {
    width: 50px;
    height: 50px;
    color: var(--gold);
    stroke: var(--gold);
    fill: none;
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* About Page Specific Styles */
.about-hero {
    padding: 180px 0 100px;
    background: var(--beige-light);
}

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

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
}

.designer-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s var(--ease-elegant);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: opacity 0.3s var(--ease-elegant);
}

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

.about-image:hover .image-overlay {
    opacity: 1;
}

.about-title {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--gray-medium);
    font-weight: 300;
    margin-bottom: 30px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Philosophy Section */
.philosophy {
    background: var(--white);
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-quote {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold);
    text-align: center;
    margin: 40px 0;
    padding: 40px;
    border-left: 4px solid var(--gold);
    background: var(--beige-light);
    line-height: 1.6;
}

.principles-title {
    text-align: center;
    margin: 60px 0 40px;
    color: var(--gold);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.principle-item {
    text-align: center;
    padding: 30px;
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.principle-title {
    color: var(--gold);
    margin-bottom: 15px;
}

/* Experience Section */
.experience {
    background: var(--beige-light);
}

.experience-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-gold);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 100px;
    text-align: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--white);
    padding: 15px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    z-index: 2;
    position: relative;
}

.timeline-content {
    flex: 1;
    padding: 0 40px;
}

.timeline-title {
    color: var(--black);
    margin-bottom: 10px;
}

.timeline-description {
    color: var(--gray-medium);
}

/* Approach Section */
.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-steps {
    margin-top: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
}

.step-number {
    flex: 0 0 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.step-title {
    color: var(--gold);
    margin-bottom: 5px;
}

.step-description {
    color: var(--gray-medium);
    margin: 0;
}

.approach-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.golden-ratio {
    width: 300px;
    height: 300px;
    background: var(--gradient-gold);
    position: relative;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.golden-ratio::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: var(--beige);
    transform: translate(-50%, -50%) rotate(45deg);
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* CTA Section */
.cta {
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.cta-title {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Animation Classes */
[data-aos] {
    transition: all 0.8s var(--ease-elegant);
}

[data-aos="fade-up"] {
    transform: translateY(50px);
    opacity: 0;
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
    opacity: 0;
}

[data-aos="fade-left"] {
    transform: translateX(50px);
    opacity: 0;
}

[data-aos].aos-animate {
    transform: translate(0);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .nav-container {
        padding: 15px 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content,
    .about-content,
    .approach-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 120px;
        transition: left 0.3s var(--ease-elegant);
        z-index: calc(var(--z-nav) - 1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column !important;
    }
    
    .experience-timeline::before {
        display: none;
    }
    
    .timeline-content {
        padding: 20px 0 0;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 15px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .philosophy-quote {
        font-size: 1.2rem;
        padding: 25px;
    }
}

/* Luxury Cursor Styles */
.luxury-cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.luxury-cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 0.5;
}

.luxury-cursor.hover {
    transform: translate(-50%, -50%) scale(2);
}

.luxury-cursor-follower.hover {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.8;
}

/* Form Message Styles */
.form-message {
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
    font-weight: 400;
    text-align: center;
    animation: slideInUp 0.3s ease;
}

.form-message--success {
    background: rgba(188, 156, 94, 0.1);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.form-message--error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Label Styles */
.form-group {
    position: relative;
}

.floating-label {
    position: absolute;
    top: 18px;
    left: 0;
    font-size: 16px;
    color: var(--gray-medium);
    pointer-events: none;
    transition: all 0.3s var(--ease-elegant);
    transform-origin: left top;
}

.form-input:focus ~ .floating-label,
.form-input:not(:placeholder-shown) ~ .floating-label,
.form-select:focus ~ .floating-label,
.form-select:not([value=""]) ~ .floating-label,
.form-textarea:focus ~ .floating-label,
.form-textarea:not(:placeholder-shown) ~ .floating-label {
    transform: translateY(-25px) scale(0.8);
    color: var(--gold);
}

/* Page Loading Styles */
body {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-elegant);
}

body.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus indicators */
a:focus,
button:focus,
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-slice {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --gold: #b8860b;
        --gold-light: #daa520;
        --gold-dark: #9b7a00;
        --black: #000000;
        --white: #ffffff;
    }
}

/* Print styles */
@media print {
    .nav,
    .hero,
    .testimonials,
    .contact,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: black;
    }
    
    .section-title {
        color: black;
        font-size: 18pt;
    }
}