/* =============================================
   ÉLAN Experience - Main Stylesheet
   Elegant, minimalist design with beige/brown palette
   ============================================= */

/* === ROOT VARIABLES === */
:root {
    /* Color Palette - Elegant Beige/Brown Theme with #cdb6b0 */
    --primary-color: #cdb6b0;
    --secondary-color: #e8ddd8;
    --accent-color: #b9a59d;
    --background-light: #FAF8F5;
    --background-cream: #F5F1ED;
    --text-dark: #3E3532;
    --text-medium: #6B5D56;
    --text-light: #9B8E87;
    --white: #FFFFFF;
    --overlay-dark: rgba(62, 53, 50, 0.7);
    --overlay-light: rgba(205, 182, 176, 0.9);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

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

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.logo-top {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--white);
    transition: var(--transition-smooth);
    line-height: 1;
}

.logo-bottom {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--white);
    transition: var(--transition-smooth);
    line-height: 1;
    width: 100%;
    text-align: left;
}

.navbar.scrolled .logo-top,
.navbar.scrolled .logo-bottom {
    color: #cdb6b0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

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

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

/* Language Switcher */
.lang-switch {
    background: none;
    border: 1px solid var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--white);
    transition: var(--transition-smooth);
}

.navbar.scrolled .lang-switch {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-switch:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.lang-option {
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.lang-option.active {
    opacity: 1;
    font-weight: 600;
}

.lang-divider {
    margin: 0 5px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.navbar.scrolled .mobile-toggle span {
    background-color: var(--primary-color);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/gallery/IMG_0963.jpeg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.3) 0%, rgba(168, 144, 128, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 8px;
    color: var(--white);
    line-height: 1;
}

.hero-accent {
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 1.8vw, 1.3rem);
    letter-spacing: 8px;
    font-weight: 300;
    color: var(--white);
    display: block;
}

.hero-description {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin: 30px 0 15px;
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--white);
}

.hero-tagline {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    margin: 0 0 40px;
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--white);
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* === BUTTONS === */
.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* === SECTION STYLING === */
section {
    padding: var(--section-padding);
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

/* === ABOUT SECTION === */
.about-section {
    background-color: var(--white);
}

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

.about-text {
    padding-right: 20px;
}

.about-paragraph {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-paragraph.highlight {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    padding: 20px;
    background-color: var(--background-cream);
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
}

.about-paragraph.welcome {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-top: 30px;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

/* === QUOTE SECTION === */
.quote-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
}

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

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--white);
    font-style: italic;
    letter-spacing: 0.5px;
}

/* === SERVICES SECTION === */
.services-section {
    background: linear-gradient(180deg, var(--background-light) 0%, var(--background-cream) 100%);
}

.collaboration-text {
    margin-top: 15px;
    font-size: 1.05rem;
    color: var(--text-medium);
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(205, 182, 176, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

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

.service-card:hover::after {
    width: 500px;
    height: 500px;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-color);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    position: relative;
    z-index: 1;
}

.service-card-footer {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.btn-learn-more {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(205, 182, 176, 0.4);
}

/* === SERVICE MODAL === */
.service-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.service-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-modal-content {
    background-color: var(--white);
    padding: 50px;
    border-radius: 15px;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-modal-close:hover {
    background-color: var(--background-cream);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.service-modal-header {
    margin-bottom: 30px;
    text-align: center;
}

.service-modal-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-modal-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-modal-body {
    color: var(--text-medium);
}

.service-modal-body h4 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-modal-body p {
    margin-bottom: 15px;
    line-height: 1.9;
}

.service-modal-body ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.service-modal-body ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
}

.service-modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* === PRICING SECTION === */
.pricing-section {
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.pricing-card {
    background-color: var(--background-cream);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card.featured .pricing-day,
.pricing-card.featured .pricing-time,
.pricing-card.featured .pricing-price {
    color: var(--white);
}

.pricing-card.premium {
    background-color: var(--text-dark);
    color: var(--white);
}

.pricing-card.premium .pricing-day,
.pricing-card.premium .pricing-time,
.pricing-card.premium .pricing-price {
    color: var(--white);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card.premium .pricing-badge {
    background-color: var(--accent-color);
    color: var(--white);
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-day {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-body {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(139, 115, 85, 0.2);
    border-bottom: 1px solid rgba(139, 115, 85, 0.2);
}

.pricing-time {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 8px 0;
    font-family: var(--font-body);
}

.pricing-footer {
    margin-top: 20px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.pricing-note {
    margin-top: 50px;
    text-align: center;
    padding: 25px;
    background-color: var(--background-cream);
    border-radius: 8px;
}

.pricing-note p {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-style: italic;
}

/* === GALLERY SECTION === */
.gallery-section {
    background-color: var(--background-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--white);
    transform: scale(0);
    transition: transform 0.4s ease;
}

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

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

/* === IMAGE MODAL === */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 40px;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--secondary-color);
}

/* === CONTACT SECTION === */
.contact-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--background-cream) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-details p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.contact-details a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* === CONTACT FORM === */
.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--background-light);
    transition: var(--transition-smooth);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--text-light);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background-color: var(--white);
    padding: 0 5px;
    color: var(--primary-color);
}

.form-group label.label-top {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    margin-bottom: 8px;
    background: none;
    padding: 0;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    opacity: 0;
}

.btn-submit {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.4);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* === FOOTER === */
.footer {
    background-color: #3e3532;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}

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

.footer-column-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column-content {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column-content p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column-content a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.footer-column-content a:hover {
    color: var(--white);
}

.footer-divider {
    width: 1px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-center {
    text-align: center;
    margin: 40px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-logo-top {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--white);
    line-height: 1;
}

.footer-logo-middle {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--white);
    line-height: 1;
}

.footer-logo-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

.footer-bottom {
    margin-top: 30px;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-policy-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
    text-decoration: none;
    cursor: pointer;
}

.footer-policy-link:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-link-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* === POLICY MODAL === */
.policy-modal {
    display: none;
    position: fixed;
    z-index: 10002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.policy-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
}

.policy-modal-content {
    background-color: var(--white);
    padding: 50px;
    border-radius: 15px;
    max-width: 900px;
    width: 100%;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    position: relative;
    animation: slideInDown 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 20px;
}

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

.policy-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
}

.policy-modal-close:hover {
    background-color: var(--background-cream);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.policy-modal-body {
    color: var(--text-medium);
    line-height: 1.8;
}

.policy-modal-body h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
    padding-right: 50px;
}

.policy-modal-body .last-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

.policy-modal-body h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-modal-body h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-modal-body p {
    margin-bottom: 15px;
}

.policy-modal-body ul, .policy-modal-body ol {
    margin: 15px 0;
    padding-left: 30px;
}

.policy-modal-body li {
    margin-bottom: 10px;
    color: var(--text-medium);
}

.policy-modal-body strong {
    color: var(--text-dark);
    font-weight: 600;
}

.policy-modal-body a {
    color: var(--primary-color);
    text-decoration: underline;
}

.policy-modal-body a:hover {
    color: var(--accent-color);
}

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

/* Tablet */
@media (max-width: 968px) {
    :root {
        --section-padding: 70px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        align-items: flex-start;
        gap: 30px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
    
    .nav-link {
        color: var(--text-dark);
        font-size: 1.1rem;
    }
    
    .lang-switch {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero-title {
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        letter-spacing: 3px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-link-divider {
        display: none;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .modal {
        padding: 20px;
    }
    
    .modal-close {
        right: 20px;
        font-size: 2rem;
    }
    
    .policy-modal.active {
        padding: 20px 15px;
    }
    
    .policy-modal-content {
        padding: 30px 20px;
        max-height: calc(100vh - 40px);
    }
    
    .policy-modal-body h1 {
        font-size: 1.8rem;
    }
    
    .policy-modal-body h2 {
        font-size: 1.4rem;
    }
    
    .policy-modal-body h3 {
        font-size: 1.1rem;
    }
    
    .service-modal-content {
        padding: 30px 20px;
    }
    
    .nav-menu {
        width: 85%;
    }
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* === LOADING ANIMATION === */
.loading {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }


@media (max-width: 767px) {
  .hamburger-menu {
    position: fixed; /* or absolute, depending on your layout */
    top: 16px;
    right: 16px;
    left: auto;
    width: 48px; /* adjust as needed */
    height: 48px; /* adjust as needed */
    z-index: 1000;
  }
}
