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

:root {
    --primary-color: #c4a59a;
    --secondary-color: #f9efef;
    --primary-dark: #9d7d70;
    --primary-darker: #7a6156;
    --primary-light: #f9efef;
    --primary-lighter: #fefbfb;
    --dark-color: #2c2c2c;
    --light-color: #f8f8f8;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --gradient: linear-gradient(135deg, #c4a59a 0%, #b89588 50%, #9d7d70 100%);
    --gradient-light: linear-gradient(135deg, #f9efef 0%, #fefbfb 100%);
    --shadow: 0 10px 30px rgba(196, 165, 154, 0.25);
    --shadow-hover: 0 15px 40px rgba(196, 165, 154, 0.35);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.8rem;
    color: #c4a59a;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

/* Icons */
.icon-inline {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    color: var(--primary-color);
}

.icon-facebook {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    justify-content: center;
    align-items: center;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
    display: block;
    border-radius: 2px;
    transform-origin: center center;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
    overflow: hidden;
    background: var(--gradient); /* Fallback si la vidéo ne charge pas */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 165, 154, 0.3) 0%, rgba(184, 149, 136, 0.35) 50%, rgba(157, 125, 112, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-darker);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--primary-color);
    color: var(--white);
}

/* Construction Section */
.construction-section {
    background: var(--primary-light);
    padding: 60px 0;
    text-align: center;
}

.construction-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.construction-title {
    font-size: 2rem;
    color: var(--primary-darker);
    margin-bottom: 1rem;
    font-weight: 600;
}

.construction-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
}

.btn-facebook:hover {
    background: var(--primary-darker);
    border-color: var(--primary-darker);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-facebook svg {
    flex-shrink: 0;
}

/* Sections */
.section {
    padding: 80px 0;
}

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

.section-title {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
}

/* About Section */
.about {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--primary-light) 0%, transparent 100%);
    z-index: 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Introduction avec photo */
.about-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.about-intro-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(196, 165, 154, 0.3);
}

.about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.about-intro-text {
    position: relative;
}

.about-intro {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.about-conclusion {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 2rem !important;
    font-style: italic;
}

.about-subtitle {
    font-size: 1.4rem;
    color: var(--primary-darker);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-subtitle:first-of-type {
    margin-top: 0;
}

/* Section Ma méthode */
.about-method-section {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--primary-light);
    border-radius: 20px;
}

.about-method-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-method-content h3 {
    margin-top: 0;
}

.about-method-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.about-method-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-method-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.about-method-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Section Technologies */
.about-technologies-section {
    margin: 4rem 0;
}

.about-tech-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-tech-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.about-tech-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.about-tech-card .about-tech-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.about-tech-card .about-tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-tech-card:hover .about-tech-image img {
    transform: scale(1.1);
}

.about-tech-card h4 {
    font-size: 1.3rem;
    color: var(--primary-darker);
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.about-tech-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 1.5rem 1.5rem;
    flex-grow: 1;
}

/* Conclusion */
.about-conclusion-section {
    margin-top: 4rem;
}

.about-relax-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-relax-content h3 {
    margin-top: 0;
}

.about-relax-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-relax-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-relax-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.about-relax-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Before/After Section */
.before-after {
    background: var(--primary-light);
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1rem;
}

.carousel-slide {
    width: calc((100% - 2rem) / 3);
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
    border-radius: 15px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 10;
    color: var(--primary-darker);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-hover);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(196, 165, 154, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--primary-darker);
}

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

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

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: var(--gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image::before {
    content: '📷';
    font-size: 4rem;
    opacity: 0.3;
    position: absolute;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3,
.service-card p {
    padding: 0 2rem;
}

.service-card h3 {
    padding-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    padding-bottom: 2rem;
}

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.team {
    background: var(--light-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--gradient);
    border: 5px solid var(--white);
    box-shadow: 0 5px 20px rgba(196, 165, 154, 0.4);
}

.member-role {
    color: var(--primary-darker);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    background: var(--primary-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-header {
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    flex-shrink: 0;
}

.review-name {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
}

.review-stars svg {
    width: 16px;
    height: 16px;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.reviews-footer {
    text-align: center;
    margin-top: 2rem;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-darker);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
}

.btn-google:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.icon-google {
    flex-shrink: 0;
}

/* CTA Chèque Cadeau Section */
.cta-gift {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(249, 239, 239, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.cta-gift::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(196,165,154,0.1)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.cta-gift-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-gift-content {
    text-align: left;
}

.cta-gift-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    margin-bottom: 2rem;
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.cta-gift-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.cta-gift-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-darker);
    font-weight: 500;
}

.cta-feature svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.btn-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-block;
    box-shadow: var(--shadow);
}

.btn-cta:hover {
    background: var(--primary-darker);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.cta-gift-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-hover);
    transform: rotate(-3deg);
    transition: var(--transition);
    max-width: 350px;
    width: 100%;
}

.cta-gift-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 25px 60px rgba(196, 165, 154, 0.4);
}

.gift-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px dashed var(--primary-light);
}

.gift-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-darker));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.gift-card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.gift-card-body {
    margin-bottom: 2rem;
}

.gift-card-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.gift-card-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.gift-card-footer {
    padding-top: 1.5rem;
    border-top: 2px dashed var(--primary-light);
}

.gift-card-validity {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

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

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(196, 165, 154, 0.3);
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.date-inputs input[type="date"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-color);
    color: var(--text-dark);
}

.date-inputs input[type="date"]:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(196, 165, 154, 0.3);
}

.date-inputs input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.date-inputs input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

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

.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeInUp 0.3s ease;
}

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

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

#submitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Footer */
.footer {
    background: #f9efef;
    color: var(--text-dark);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-darker);
    font-weight: 600;
}

.footer-section p {
    color: var(--text-dark);
    line-height: 1.8;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--primary-darker);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-section a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    padding: 10px 15px;
    background: rgba(196, 165, 154, 0.15);
    border-radius: 5px;
    transition: var(--transition);
    color: var(--primary-darker);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 165, 154, 0.2);
    color: var(--text-light);
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-credit {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.footer-credit a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-credit a:hover {
    color: var(--primary-darker);
    text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        height: 50px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        height: 60vh;
        min-height: 400px;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .team-grid,
    .about-features,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-intro-image {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .about-relax-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-relax-image {
        order: -1;
    }

    .about-method-section {
        padding: 2rem;
        margin: 3rem 0;
    }

    .about-method-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-method-image {
        order: -1;
    }

    .about-tech-grid {
        grid-template-columns: 1fr;
    }

    .cta-gift-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .cta-gift-content {
        text-align: center;
    }

    .cta-gift-title {
        font-size: 2rem;
    }

    .cta-gift-text {
        font-size: 1.1rem;
    }

    .cta-gift-card {
        transform: rotate(0deg);
        max-width: 100%;
    }

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

    .construction-title {
        font-size: 1.7rem;
    }

    .construction-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 45px;
    }

    .logo h1 {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .hero {
        height: 50vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .construction-section {
        padding: 30px 0;
    }

    .construction-title {
        font-size: 1.5rem;
    }

    .construction-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-facebook {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .about-intro-wrapper {
        gap: 1.5rem;
    }

    .about-intro {
        font-size: 1.2rem;
    }

    .about-conclusion {
        font-size: 1.1rem;
    }

    .about-method-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .about-method-wrapper {
        gap: 1.5rem;
    }

    .about-relax-wrapper {
        gap: 1.5rem;
    }

    .carousel-wrapper {
        padding: 0 40px;
    }

    .carousel-track {
        gap: 0;
    }

    .carousel-slide {
        min-width: 100%;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .carousel-slide img {
        max-height: 300px;
    }

    .cta-gift-title {
        font-size: 1.8rem;
    }

    .cta-gift-text {
        font-size: 1rem;
    }

    .cta-gift-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .cta-gift-card {
        padding: 2rem;
    }

    .gift-card-header h3 {
        font-size: 1.5rem;
    }

    .gift-card-amount {
        font-size: 1.5rem;
    }

    .btn-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
}
