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

html, body {
  overflow-x: hidden;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    direction: rtl;
}
.logo-container{
    margin-top: 0px;
    margin-bottom: 0px;
    width: 60px;
}

/* Header Section */
.header-section {
    background-color: #fff !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-section .navbar {
    background-color: #fff !important;
}

.navbar {
    padding: 15px 0;
}

/* Navigation Icons */
.nav-icons {
    display: flex;
    align-items: center;
}
.nav-icon {
    color: #333;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 15px;
}

.nav-icon:hover {
    color: #666;
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 15px 45px;
    transition: color 0.3s ease;
    position: relative;
    text-align: center;
    min-width: 120px;
}

.nav-link:hover {
    color: #666;
}



/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
}





.logo-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

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

.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    display: block;
}


/* Promotional Marquee Section */
.marquee-section {
    background: linear-gradient(135deg, #C39F2B, #DBB63F, #C39F2B);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 40px;
    direction: ltr;
    /* Forces correct order of layout blocks [1][2] to prevent overlap */
}

.marquee div {
    display: flex;
    width: max-content;
    /* Allows container to fit the text exactly */
    animation: marquee 90s linear infinite;
    /* Slower speed for readability */
}

/* Pause marquee on hover */
.marquee:hover div {
    animation-play-state: paused;
}

.marquee span {
    flex-shrink: 0;
    /* Prevents text from wrapping/shrinking */
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    font-family: 'Cairo', sans-serif;
    line-height: 40px;
    padding: 0 20px;
    /* Consistent spacing between the two large blocks */
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Moves exactly half the width (one full text block) */
    }
}



/* Responsive Marquee */
@media (max-width: 991px) {
    .marquee span {
        font-size: 18px;
        padding: 0 15px;
    }

    .marquee-section {
        padding: 12px 0;
    }
}

@media (max-width: 767px) {
    .marquee span {
        font-size: 16px;
        padding: 0 10px;
    }

    .marquee-section {
        padding: 10px 0;
    }
}

@media (max-width: 575px) {
    .marquee span {
        font-size: 14px;
        padding: 0 8px;
    }

    .marquee-section {
        padding: 8px 0;
    }
}




/* Hero Section */
.hero-section {
    padding: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

/* Animated Background for Hero Section */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(219, 182, 63, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(219, 182, 63, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(219, 182, 63, 0.05) 0%, transparent 50%);
    animation: heroBackgroundFloat 20s ease-in-out infinite;
    z-index: 1;
}
.hero-news{
    margin-top: 45px;
    padding-bottom: -20px;
    font-size: 22px;
    font:bold;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* soft diagonal shimmer */
        linear-gradient(45deg, transparent 30%, rgba(219, 182, 63, 0.03) 50%, transparent 70%),
        /* hijab ribbon 1 */
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 200'>\
          <defs>\
            <linearGradient id='g1' x1='0' y1='0' x2='1' y2='0'>\
              <stop offset='0%' stop-color='%23C39F2B' stop-opacity='0.12'/>\
              <stop offset='50%' stop-color='%23DBB63F' stop-opacity='0.18'/>\
              <stop offset='100%' stop-color='%23C39F2B' stop-opacity='0.12'/>\
            </linearGradient>\
          </defs>\
          <path d='M-20,120 C120,20 240,220 380,120 C460,70 540,140 620,90' fill='none' stroke='url(%23g1)' stroke-width='38' stroke-linecap='round'/>\
        </svg>"),
        /* hijab ribbon 2 */
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 240'>\
          <defs>\
            <linearGradient id='g2' x1='0' y1='0' x2='1' y2='0'>\
              <stop offset='0%' stop-color='%23DBB63F' stop-opacity='0.10'/>\
              <stop offset='50%' stop-color='%23C39F2B' stop-opacity='0.16'/>\
              <stop offset='100%' stop-color='%23DBB63F' stop-opacity='0.10'/>\
            </linearGradient>\
          </defs>\
          <path d='M-40,150 C80,240 220,40 360,150 C440,210 520,120 640,170' fill='none' stroke='url(%23g2)' stroke-width='30' stroke-linecap='round'/>\
        </svg>");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: cover, 60% auto, 45% auto;
    background-position: center, -12% 25%, 112% 90%;
    animation: heroBackgroundShift 15s ease-in-out infinite reverse;
    filter: blur(0.2px) saturate(1.02);
    z-index: 1;
    pointer-events: none;
}

@keyframes heroBackgroundFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
    }
    33% {
        transform: translateY(-20px) rotate(1deg);
        opacity: 0.8;
    }
    66% {
        transform: translateY(10px) rotate(-1deg);
        opacity: 0.9;
    }
}

@keyframes heroBackgroundShift {
    0%, 100% {
        transform: translateX(0px) scale(1);
    }
    50% {
        transform: translateX(10px) scale(1.05);
    }
}



.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #C39F2B, #DBB63F, #C39F2B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 32px;
    color: #666;
    margin-bottom: 35px;
    font-weight: 500;
}

.hero-description {
    font-size: 22px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 45px;
    text-align: justify;
}

.hero-btn {
    background: linear-gradient(135deg, #C39F2B, #DBB63F);
    color: #fff;
    border: none;
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    box-shadow: 0 4px 15px rgba(195, 159, 43, 0.3);
}

.hero-btn:hover {
    background: linear-gradient(135deg, #DBB63F, #C39F2B);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(195, 159, 43, 0.4);
    
}



.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: heroImageFloat 6s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

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



/* Newsletter Section */
.newsletter-section {
    background: #F8F3ED;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.newsletter-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    text-align: center;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DBB63F, #C39F2B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(195, 159, 43, 0.3);
    animation: pulse 2s infinite;
}

.newsletter-icon i {
    font-size: 32px;
    color: white;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.newsletter-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
}

.newsletter-form {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 0;
}

.input-group {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.form-control {
    border: none;
    padding: 18px 25px;
    font-size: 16px;
    background: transparent;
    flex: 1;
    text-align: right;
    direction: rtl;
}

.form-control:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

.newsletter-btn {
    background: linear-gradient(135deg, #DBB63F, #C39F2B);
    border: none;
    padding: 18px 30px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 0 50px 50px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #C39F2B, #DBB63F);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(195, 159, 43, 0.4);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.newsletter-btn:hover .btn-icon {
    transform: translateX(5px);
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.benefit-item i {
    color: #DBB63F;
    font-size: 16px;
}

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

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

/* Hero Section Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 40px;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .hero-description {
        font-size: 18px;
        margin-bottom: 35px;
    }
    
    .hero-btn {
        padding: 15px 40px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 20px;
        margin-top: 100px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .hero-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Newsletter Section Responsive */
@media (max-width: 991px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-container {
        padding: 40px 30px;
    }
    
    .newsletter-title {
        font-size: 32px;
    }
    
    .newsletter-description {
        font-size: 16px;
    }
    
    .newsletter-benefits {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .newsletter-section {
        padding: 50px 0;
    }
    
    .newsletter-container {
        padding: 30px 20px;
        margin: 0 15px;
        z-index: 2;
    }
    
    .newsletter-title {
        font-size: 28px;
    }
    
    .newsletter-description {
        font-size: 15px;
    }
    
    .newsletter-icon {
        width: 70px;
        height: 70px;
    }
    
    .newsletter-icon i {
        font-size: 28px;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 15px;
        overflow: visible; /* ensure children are not clipped on small screens */
        width: 100%;
    }
    
    .form-control {
        border-radius: 15px 15px 0 0;
        padding: 15px 20px;
        width: 100%;
        background: #fff; /* improve contrast */
        box-sizing: border-box;
    }
    
    .newsletter-btn {
        border-radius: 0 0 15px 15px;
        padding: 15px 25px;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .newsletter-benefits {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .benefit-item {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-container {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .newsletter-title {
        font-size: 24px;
    }
    
    .newsletter-description {
        font-size: 14px;
    }
    
    .newsletter-icon {
        width: 60px;
        height: 60px;
    }
    
    .newsletter-icon i {
        font-size: 24px;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .newsletter-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Newsletter: fluid, clamp-based responsive sizing */
.newsletter-container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

.newsletter-title {
    font-size: clamp(22px, 3.2vw, 36px);
}

.newsletter-description {
    font-size: clamp(13px, 1.6vw, 18px);
}

.newsletter-icon { width: clamp(56px, 7vw, 80px); height: clamp(56px, 7vw, 80px); }
.newsletter-icon i { font-size: clamp(22px, 2.8vw, 32px); }

/* Input group fluid sizing */
.newsletter-form .form-control { font-size: clamp(14px, 1.4vw, 16px); padding: clamp(12px, 1.6vw, 18px) clamp(14px, 2vw, 25px); }
.newsletter-form .newsletter-btn { font-size: clamp(14px, 1.4vw, 16px); padding: clamp(12px, 1.6vw, 18px) clamp(16px, 2.2vw, 30px); }

/* Benefits row spacing adjusts fluidly */
.newsletter-benefits { gap: clamp(12px, 3vw, 40px); }
.benefit-item { font-size: clamp(12px, 1.3vw, 14px); }
.benefit-item i { font-size: clamp(14px, 1.6vw, 16px); }

/* Tiny phones extra safety */
@media (max-width: 360px) {
    .newsletter-container { padding: 20px 12px; }
    .newsletter-form .form-control { padding: 12px 12px; }
    .newsletter-form .newsletter-btn { padding: 12px 14px; }
}

/* Ultra-wide screens */
@media (min-width: 1600px) {
    .newsletter-container { max-width: 1100px; }
}

/* Styled Section Responsive */
@media (max-width: 991px) {
    .styled-section {
        padding: 60px 0;
    }
    
    .animated-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .styled-logo {
        width: 150px;
    }
}

@media (max-width: 767px) {
    .styled-section {
        padding: 40px 0;
    }
    
    .animated-text-container {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .animated-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .styled-logo {
        width: 120px;
    }
}

@media (max-width: 575px) {
    .styled-section {
        padding: 30px 0;
    }
    
    .animated-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .styled-logo {
        width: 100px;
    }
}





/* Section Titles */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #C39F2B, #DBB63F);
    border-radius: 2px;
}

/* Best Sellers Section */
.best-sellers-section {
    padding: 80px 0;
    background-color: #fff;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image-container {
    position: relative;
    width: 417px;
    height: 438px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    
}



.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Center product images between 768px and 991.98px */
@media (min-width: 768px) and (max-width: 991.98px) {
    .product-image-container {
        padding-left: 68px;
        
    }
}

/* Add left padding on desktops (>= 992px) */
@media (min-width: 992px) and (max-width: 1991px) {
    .product-image-container {
        padding-left: 70px;
    }
}
@media (min-width: 1200px) and (max-width: 1400px) {
    .product-image-container {
        padding-left: 20px;
    }
}
@media (min-width: 1400px) and (max-width: 1600px) {
    .product-image-container {
        padding-left: 0px;
    }
}
/* Make product images take full width on <= 767.98px */
@media (max-width: 767.98px) {
    .product-image-container {
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
    .product-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4757;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    background: #ff4757;
    color: #fff;
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: right;
}

.material-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.size-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.price-text {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* Collection Section */
.collection-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.collection-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    
    

}

.detail-image-container {
    position: relative;
    width: 100%;
    height: 518px;
    overflow: hidden;
    
}

.detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.overlay-text {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.model-image-container {
    width: 100%;
    height: 837px;
    overflow: hidden;
}

.model-image-container-right {
    width: 100%;
    height: 920px;
    
}
.model-image-container-right .model-image {
    object-position: center -80%;
}
.detail-image-container-right {
    width: 100%;
    height: 435px;
}

.model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}















/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 49.3% 25.35% 25.35%;
    grid-template-rows: 375.5px 375.5px;
    gap: 0;
    
    width: 100%;
    max-width: 1224px;
    margin: 0 auto;
    direction: ltr;
    grid-template-areas: 
        "large top1 top2"
        "large bottom1 bottom2";
}

.gallery-item {
    
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item.large {
    grid-area: large;
}

.gallery-item:nth-child(2) {
    grid-area: top1;
}

.gallery-item:nth-child(3) {
    grid-area: top2;
}

.gallery-item:nth-child(4) {
    grid-area: bottom1;
}

.gallery-item:nth-child(5) {
    grid-area: bottom2;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-overlay {
    
    position: absolute;
    top: 20px;
    margin-left: 40px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 8px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 800;
    color: #333;
}

/* Stats Section */
.stats-section {
    padding: 50px 0;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #C39F2B, #DBB63F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

/* Creative Footer */
.footer-section {
    background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 50%, #2a2a2a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

/* Decorative Top Border */
.footer-top-border {
    height: 4px;
    background: linear-gradient(90deg, #DBB63F 0%, #c19b2e 50%, #DBB63F 100%);
    position: relative;
}

.footer-top-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
}

/* Main Footer Content */
.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.footer-brand {
    margin-bottom: 30px;
}

.brand-logo-footer {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.1);
}

.brand-text {
    flex: 1;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #DBB63F;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.brand-tagline {
    font-size: 14px;
    color: #ccc;
    margin: 5px 0 0 0;
    font-style: italic;
}

.brand-description {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-awards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #DBB63F;
    font-size: 14px;
    font-weight: 500;
}

.award-item i {
    font-size: 16px;
}

/* Footer Links */
.footer-links {
    margin-bottom: 30px;
    text-align: center;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #DBB63F, #c19b2e);
    border-radius: 1px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

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

.footer-menu a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 15px;
}

.footer-menu a::before {
    content: '→';
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: #DBB63F;
}

.footer-menu a:hover {
    color: #DBB63F;
    padding-right: 20px;
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #DBB63F, #c19b2e);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-icon i {
    position: relative;
    z-index: 2;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(219, 182, 63, 0.3);
}

.social-icon.facebook {
    background: #1877f2;
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(219, 182, 63, 0.3);
}

.social-icon::before {
    opacity: 1;
}

.social-icon i {
    color: #fff;
    transform: scale(1.1);
}

/* Footer Social Section */
.footer-social {
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 25px 0;
    background: rgba(0,0,0,0.1);
}

.footer-copyright p {
    color: #999;
    margin: 0;
    font-size: 14px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .brand-logo-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-awards {
        justify-content: center;
    }
    
    .footer-payment {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .nav-icons {
        order: 1;
        margin-bottom: 15px;
    }
    
    .nav-links {
        order: 2;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
    

    
    .brand-logo {
        order: 3;
    }
    
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        width: 100%;
        max-width: 400px;
    }
    
    .gallery-item.large {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .quote-text {
        font-size: 20px;
    }
    
    .quote-subtext {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .header-section {
        padding: 10px 0;
    }
    
    .nav-icon {
        font-size: 18px;
        width: 35px;
        height: 35px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 10px 15px;
        min-width: 100px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    
    .pattern-collage {
        height: 300px;
        gap: 10px;
    }
    
    .gallery-grid {
        gap: 10px;
        width: 100%;
        max-width: 350px;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
}




/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.scale-in.visible {
    transform: scale(1);
    opacity: 1;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Quote Text Animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
} 

/* Hero layout: no side margins, spacing only between blocks */


@media (min-width: 992px) {
    .hero-section .row {
        --bs-gutter-x: 0; /* remove Bootstrap horizontal gutters */
        flex-wrap: nowrap; /* keep content and image on one line */
        
        column-gap: 120px; /* increased space between the two blocks */
        gap: 120px;
        
    }
}

@media (max-width: 991.98px) {
    .hero-section .row {
        --bs-gutter-x: 16px; /* default small gutter on mobile */
        flex-wrap: wrap; /* allow stacking on small screens */
        row-gap: 24px;
    }
}

/* Ensure columns do not overflow and content doesn't wrap unexpectedly */
.hero-content, .hero-image-container {
    white-space: normal; /* text wraps normally inside each block */
    position: relative;
    z-index: 2;
} 

/* This style is now handled in the main 992px media query below */ 

@media (min-width: 992px) and (max-width: 1673px) {
    .hero-section {
        padding: 80px; /* maintain margin from page border */
    }
    
    .hero-image-container { 
        overflow: hidden; /* prevent image overflow */
        margin-right: 0; /* remove right margin */
        margin-left: 40px; /* add left margin for image */
    }
    
    .hero-image { 
        width: 100%; 
        max-width: 100%; /* keep image within container */
        height: auto;
        margin: 0; /* remove all margins */
    }
    
    .hero-content {
        margin-right: 0; /* reset negative margin */
        margin-top: 40px; /* add top margin for content */
    }
    
    .hero-title {
        margin-top: 20px; /* add top margin for title */
        margin-bottom: 30px;
    }
}

@media (min-width: 1674px) {
    .hero-section {
        padding: 80px; /* maintain margin from page border */
    }
    
    .hero-image-container { 
        overflow: hidden; /* prevent image overflow */
        margin-right: 0; /* remove right margin */
        margin-left: 0; /* remove left margin for larger screens */
    }
    
    .hero-image { 
        width: 100%; 
        max-width: 100%; /* keep image within container */
        height: auto;
        margin: 0; /* remove all margins */
    }
    
    .hero-content {
        margin-right: 0; /* reset negative margin */
        margin-top: 0; /* remove top margin for larger screens */
    }
    
    .hero-title {
        margin-top: 0; /* remove top margin for larger screens */
        margin-bottom: 30px;
    }
}

/* Ensure newsletter input text is visible */
.newsletter-section .form-control {
    color: #333;         /* visible text color */
    caret-color: #333;   /* caret matches text */
}
.newsletter-section .form-control::placeholder {
    color: #9aa0a6;      /* soft grey placeholder */
    opacity: 1;          /* ensure visibility across browsers */
} 

@media (max-width: 767px) {
    /* Force clear visibility of the email input on mobile */
    .newsletter-form .input-group {
        flex-direction: column;
        width: 100%;
        border-radius: 12px;
        box-shadow: none;           /* no masking shadow when stacked */
        background: transparent;    /* avoid white-on-white masking */
        overflow: visible;          /* keep corners visible */
    }
    .newsletter-form .form-control {
        display: block;
        width: 100%;
        min-height: 48px;
        background: #ffffff;        /* strong white background */
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 12px;        /* full rounded input when stacked */
        margin-bottom: 10px;        /* separation from button */
        color: #333;
        caret-color: #333;
    }
    .newsletter-form .form-control::placeholder { color: #9aa0a6; opacity: 1; }
    .newsletter-form .newsletter-btn {
        width: 100%;
        border-radius: 12px;        /* button rounded when stacked */
        padding: 14px 18px;
        justify-content: center;
    }
} 

/* Ensure hero title visible between 768px and 991px (below fixed header) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .header-section + .hero-section { padding-top: 120px !important; }
} 

