

/* Hero Section */
.hero-section {
    font-family: 'DM Sans', sans-serif;
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
}

/* Slideshow Background */
.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Navigation Dots */
.slide-dots {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #fff;
    transform: scale(1.3);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    cursor: pointer;
}

.scroll-text {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    color: white;
}

.scroll-down:hover .scroll-text {
    opacity: 1;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: white;
    animation: scrollAnimation 2s infinite;
}

/* Navigation Structure */
.nav-header {
    font-family: 'DM Sans', sans-serif;
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    padding: 0 5%;
    z-index: 10;
    animation: slideDown 0.8s ease-out;
}

.nav-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateX(-50%) scale(1.05);
}


/* Phone Button */
/* Phone Button Container */
.phone-container {
    margin-left: auto; /* Pushes to the right */
    z-index: 10;
}

/* Base Phone Button Styles */
.phone-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* Phone Icon Styles */
.phone-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
}

.phone-icon svg {
    width: 100%;
    height: 100%;
}

/* Phone Number Text */
.phone-number {
    white-space: nowrap;
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    .phone-button {
        width: 40px;
        height: 40px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .phone-number {
        display: none;
    }
    
    /* Tooltip for mobile (optional) */
    .phone-button:hover::after,
    .phone-button:focus::after {
        content: "+212 666757381";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: #333;
        color: white !important;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        margin-top: 5px;
    }
}

/* Hover Effects */
.phone-button:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: black !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .phone-button:hover {
        transform: scale(1.1);
    }
}

/* Navigation Links */
.nav-links {
    font-family: 'DM Sans', sans-serif;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    
}

.nav-link {
    font-family: 'DM Sans', sans-serif;
    position: relative;
    color: #ffffffb1 !important;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 0;
    transition: color 0.3s ease;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-link:hover {
    color: #ffffff !important;
}


.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-title {
    font-family: 'Suranna', serif;
    font-size: clamp(48px, 8vw, 128px);
    line-height: 1.1;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    letter-spacing: 0.02em;
    text-transform: capitalize;
    font-weight: 500;
    color: #c9c9c9;
    max-width: 800px;
    text-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
    line-height: 1.5;
}

.cta-button {
    position: relative;
    display: inline-block;
    background-color: #000000;
    color: white;
    padding: 15px 40px;
    font-family: 'SpaceGrotesk', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 137, 10, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Divider */
.divider {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

/* Mobile Navigation Styles */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
    padding: 12px;
    transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
    opacity: 0.8;
}

.mobile-nav-toggle svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #111;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform: translateX(100%);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu-header {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo {
    width: 100px;
    height: auto;
}

.mobile-menu-container {
    position: relative;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-nav-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.mobile-nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
    transform: translateX(30px);
    padding: 8px 0;
    font-weight: 300;
}

.mobile-nav-item.active {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-item:hover {
    color: #fff;
    opacity: 0.8;
    transform: translateX(5px);
}

.mobile-nav-item.contact-item {
    justify-content: center;
}

.mobile-nav-item.contact-item::after {
    content: none;
}

.mobile-nav-item::after {
    content: '→';
    display: inline-block;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.mobile-nav-item:hover::after {
    transform: translateX(5px);
    color: #fff;
}

.mobile-social-icons {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.mobile-social-icon {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-flex;
}

.mobile-social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-social-icon:hover {
    color: #fff;
}
/* Responsive Styles */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-top-row {
        justify-content: space-between;
    }
    
    .logo {
        width: 100px;
    }
    
    .hero-title {
        font-size: clamp(36px, 8vw, 72px);
    }
    
    .mobile-nav-item {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .phone-button {
        padding: 8px 15px;
    }
    
    .phone-number {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }
    
    .mobile-nav-item {
        font-size: 22px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { opacity: 0.3; height: 50px; }
    50% { opacity: 1; height: 70px; }
    100% { opacity: 0.3; height: 50px; }
}

@keyframes scrollAnimation {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(50px);
        opacity: 0;
    }
}


/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { opacity: 0.3; height: 50px; }
    50% { opacity: 1; height: 70px; }
    100% { opacity: 0.3; height: 50px; }
}

@keyframes scrollAnimation {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(50px);
        opacity: 0;
    }
}
/* end header+slidshows */

/* Section catalougue */
:root {
    --black-900: #000000;
    --black-700: #333333;
    --black-500: #666666;
    --black-300: #999999;
    --black-100: #e6e6e6;
    --text-dark: #333;
    --text-light: #828282;
    --bg-light: #f6f5ed;
    --white: #ffffff;
}

/* Section Container */
.catalog-section {
    width: 100%;
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-light);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section-subtitle {
    display: inline-block;
    font-family: 'Suranna', serif;
    font-size: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black-500);
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--black-500);
}

.section-title {
    font-family: 'Suranna', serif;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    text-transform: capitalize;
}
.author {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 40px;
}

.author-name {
    font-family: 'Suranna', serif;
    font-size: 18px;
    margin-bottom: 5px;
}

.author-title {
    font-family: 'Suranna', serif;
    font-size: 14px;
    color: #828282;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.2s;
}

.filter-tab {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--black-300);
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.filter-tab:hover, .filter-tab.active {
    color: var(--black-900);
    background-color: var(--black-100);
}

.filter-tab.active {
    color: var(--black-900);
}

.gallery-grid {
    display: grid;
    gap: 15px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px);
}
.gallery-item.hide {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
  }

/* First item - large rectangle */
.gallery-item.first-item {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 472px;
    height: 474px;
    transition-delay: 0.1s;
}

/* Second item - tall rectangle */
.gallery-item.second-item {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 227px;
    height: 474px;
    transition-delay: 0.2s;
}

/* Third item - small square */
.gallery-item.third-item {
    grid-column: 3;
    grid-row: 1;
    width: 227px;
    height: 226px;
    transition-delay: 0.3s;
}

/* Fourth item - small square */
.gallery-item.fourth-item {
    grid-column: 3;
    grid-row: 2;
    width: 227px;
    height: 226px;
    transition-delay: 0.4s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Animation when scrolled into view */
.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item.first-item,
    .gallery-item.second-item,
    .gallery-item.third-item,
    .gallery-item.fourth-item {
        grid-column: auto;
        grid-row: auto;
        width: 100% !important;
        height: 300px !important;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px !important;
    }
}

/* Stats Section */
.stats-container {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    width: 100%;
    margin: 0 auto 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.3s;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Suranna', serif;
    font-size: clamp(36px, 5vw, 48px);
    line-height: 1;
    margin-bottom: 10px;
    color: var(--black-900);
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--black-500);
}

/* Product Info Section */
.product-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.product-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}

.product-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.product-title {
    font-family: 'Suranna', serif;
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.product-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.product-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-dark);
}

.feature-item::before {
    content: '•';
    color: var(--black-700);
    margin-right: 10px;
    font-size: 20px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--black-900);
    color: var(--white);
    padding: 15px 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.4s;
}

.cta-button:hover {
    background-color: var(--black-700);
    color:#fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Animation Classes */
.animate-in {
    opacity: 1;
    transform: translate(0);
}

/* vedio section */

:root {
    --black-900: #000000;
    --black-700: #333333;
    --black-500: #666666;
    --black-300: #999999;
    --black-100: #e6e6e6;
    --white: #ffffff;
    --bg-light: #f6f5ed;
}

/* Video Section - Using your exact original styling */
.video-section {
    background-color: var(--bg-light);
    width: 100%;
    padding: 40px 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 30%; /* Your original value */
    overflow: hidden;
}

.poster-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; /* Hidden initially */
}

/* Your original play button styles */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1; /* Changed from 0 to be visible by default */
    z-index: 2;
}

.video-playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-left: 20px solid var(--black-900);
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

/* Your original responsive adjustments */
@media (max-width: 768px) {
    .video-container {
        padding-bottom: 40%;
    }
}

@media (max-width: 576px) {
    .video-container {
        padding-bottom: 50%;
    }
}


/* Section About */

/* Section Container */
.offer-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f6f5ed;
    overflow: hidden;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section-subtitle {
    display: inline-block;
    font-family: 'Suranna', serif;
    font-size: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #000000;
}

.section-title {
    font-family: 'Suranna', serif;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    text-transform: capitalize;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Image Container */
.image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out 0.2s;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    z-index: 1;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* Text Content */
.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out 0.2s;
}

.quote {
    font-family: 'Suranna', serif;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.description {
    font-size: 16px;
    line-height: 1.6;
    color: #828282;
    margin-bottom: 40px;
}


/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #000000;
    color: white;
    padding: 15px 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.4s;
}

.cta-button:hover {
    background-color: #333;
    transform: translateY(-3px);
    color:#fff;
    box-shadow: 0 10px 20px rgba(101, 97, 92, 0.3);
}

/* Animation Classes*/
.animate-in {
    opacity: 1;
    transform: translate(0);
}


 /* Contact Section */
 :root {
    --black-900: #000000;
    --black-700: #333333;
    --black-500: #666666;
    --black-300: #999999;
    --black-100: #e6e6e6;
    --white: #ffffff;
    --bg-light: #f6f5ed;
    --border-color: #e0e0e0;
}


/* Contact Section - More Compact */
.contact-section {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 400px; /* Reduced from 676px */
    background-color: var(--bg-light);
    max-width: 1700px;
    margin: 0 auto;
    color: var(--black-700);
}

/* Image Column - Smaller */
.contact-image {
    flex: 1 1 45%;
    min-height: 400px; /* Reduced from 500px */
    background: url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-1.2.1&auto=format&fit=crop&w=1114&q=80') no-repeat center;
    background-size: cover;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}


/* Form Column - More Compact */
.contact-form {
    flex: 1 1 55%;
    padding: 40px 5%; /* Reduced padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.contact-header {
    margin-bottom: 30px; /* Reduced from 40px */
}

.contact-subtitle {
    font-family: 'Suranna', serif;
    font-size: 14px; /* Slightly smaller */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black-500);
    margin-bottom: 12px; /* Tighter spacing */
    display: block;
}

.contact-title {
    font-family: 'Suranna', serif;
    font-size: clamp(28px, 4vw, 40px); /* Slightly smaller */
    line-height: 1.2;
    color: var(--black-900);
    margin-bottom: 8px; /* Tighter spacing */
    text-transform: capitalize;
}

/* Form Elements - More Compact */
.form-group {
    margin-bottom: 20px; /* Reduced from 30px */
    position: relative;
}

.form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px; /* Slightly smaller */
    color: var(--black-500);
    margin-bottom: 6px; /* Tighter spacing */
}

.form-label span {
    color: var(--black-900);
}

.form-input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--black-900);
    transition: all 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-bottom-color: var(--black-900);
}

/* Side-by-side fields - Compact */
.form-row {
    display: flex;
    gap: 20px; /* Reduced from 30px */
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 20px 0; /* Reduced from 30px */
}

/* Submit Button - Slightly smaller */
.submit-btn {
    display: inline-block;
    background-color: var(--black-900);
    color: var(--white);
    padding: 12px 35px; /* Slightly smaller */
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px; /* Slightly smaller */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px; /* Reduced from 20px */
}

/* Animation Classes */
.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Styles */
.footer {
    font-family: 'DM Sans', sans-serif;
    background-color: #000000;
    padding: 60px 0 30px;
    width: 100%;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-title {
    font-family: 'Suranna', serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
    text-transform: capitalize;
    color: #ffffff;
}

.image-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-image {
    width: 200px;
    height: 200px;
    background-color: rgba(217, 217, 217, 0.2);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

/* Specific fix for Liens Rapides alignment */
.footer-section:nth-child(2) {
    padding-right: 20px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.footer-links li {
    margin-bottom: 12px;
    padding-left: 0;
    text-indent: 0;
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    display: block;
}

.footer-links a:hover {
    color: #dddddd;
    text-decoration: underline;
}

.logo-container {
    margin-bottom: 20px;
}

.company-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.section-footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: #f2f2f2;
}

.contact-info {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info a {
    color: #aaaaaa;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #dddddd;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #555555;
    position: relative;
}

.copyright {
    color: #aaaaaa;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 18px;
    height: 18px;
    fill: #aaaaaa;
    transition: fill 0.3s;
}

.social-icon:hover {
    fill: #dddddd;
}

.scroll-up {
    position: absolute;
    right: 0;
    top: -60px;
    background: #555555;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.scroll-up:hover {
    background: #aaaaaa;
}

.scroll-up-icon {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .gallery-image {
        width: 150px;
        height: 150px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    

    
    .footer-section:nth-child(2) {
        padding-right: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .scroll-up {
        position: static;
        margin: 20px auto 0;
    }

}

@media (max-width: 576px) {
    .footer-title {
        font-size: 28px;
    }
    
    .gallery-image {
        width: 120px;
        height: 120px;
    }
    
    .company-logo {
        max-width: 150px;
    }
}


