/* ===================================
   Furns Template Styles for nesespotcom
   =================================== */

/* Import Google Fonts - Furns Template Typography */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

/* Root Variables - Furns Template Colors & Typography */
:root {
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --color-primary: #dc143c;
    --color-secondary: #2c3e50;
    --color-accent: #f39c12;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-border: #e9ecef;
    --color-bg-light: #f8f9fa;
    --color-white: #ffffff;
    --color-black: #000000;
    --transition-default: all 0.3s ease;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Base Typography - Furns Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings - Furns Style */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--color-text);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}

/* Paragraphs and Text */
p {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--color-text-light);
}

/* Links */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-default);
}

a:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

/* Buttons - Furns Style */
.btn {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition-default);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    text-align: center;
    line-height: 1;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Form Elements */
input, textarea, select {
    font-family: var(--font-secondary);
    font-size: 14px;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    transition: var(--transition-default);
    width: 100%;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(220, 20, 60, 0.1);
}

/* Utility Classes */
.text-primary { color: var(--color-primary) !important; }
.text-secondary { color: var(--color-secondary) !important; }
.text-muted { color: var(--color-text-muted) !important; }
.text-light { color: var(--color-text-light) !important; }

.bg-primary { background-color: var(--color-primary) !important; }
.bg-secondary { background-color: var(--color-secondary) !important; }
.bg-light { background-color: var(--color-bg-light) !important; }

.font-weight-300 { font-weight: 300 !important; }
.font-weight-400 { font-weight: 400 !important; }
.font-weight-500 { font-weight: 500 !important; }
.font-weight-600 { font-weight: 600 !important; }
.font-weight-700 { font-weight: 700 !important; }

.text-uppercase { text-transform: uppercase !important; }
.text-capitalize { text-transform: capitalize !important; }

/* Furns Template Spacing Utilities */
/* Padding Top */
.pt-10px { padding-top: 10px !important; }
.pt-15px { padding-top: 15px !important; }
.pt-20px { padding-top: 20px !important; }
.pt-25px { padding-top: 25px !important; }
.pt-30px { padding-top: 30px !important; }
.pt-40px { padding-top: 40px !important; }
.pt-50px { padding-top: 50px !important; }
.pt-60px { padding-top: 60px !important; }
.pt-70px { padding-top: 70px !important; }
.pt-80px { padding-top: 80px !important; }
.pt-90px { padding-top: 90px !important; }
.pt-100px { padding-top: 100px !important; }
.pt-110px { padding-top: 110px !important; }
.pt-120px { padding-top: 120px !important; }
.pt-130px { padding-top: 130px !important; }
.pt-140px { padding-top: 140px !important; }
.pt-150px { padding-top: 150px !important; }

/* Padding Bottom */
.pb-10px { padding-bottom: 10px !important; }
.pb-15px { padding-bottom: 15px !important; }
.pb-20px { padding-bottom: 20px !important; }
.pb-25px { padding-bottom: 25px !important; }
.pb-30px { padding-bottom: 30px !important; }
.pb-40px { padding-bottom: 40px !important; }
.pb-50px { padding-bottom: 50px !important; }
.pb-60px { padding-bottom: 60px !important; }
.pb-70px { padding-bottom: 70px !important; }
.pb-80px { padding-bottom: 80px !important; }
.pb-90px { padding-bottom: 90px !important; }
.pb-100px { padding-bottom: 100px !important; }
.pb-110px { padding-bottom: 110px !important; }
.pb-120px { padding-bottom: 120px !important; }
.pb-130px { padding-bottom: 130px !important; }
.pb-140px { padding-bottom: 140px !important; }
.pb-150px { padding-bottom: 150px !important; }

/* Padding Left */
.pl-10px { padding-left: 10px !important; }
.pl-15px { padding-left: 15px !important; }
.pl-20px { padding-left: 20px !important; }
.pl-25px { padding-left: 25px !important; }
.pl-30px { padding-left: 30px !important; }
.pl-40px { padding-left: 40px !important; }
.pl-50px { padding-left: 50px !important; }
.pl-60px { padding-left: 60px !important; }
.pl-70px { padding-left: 70px !important; }
.pl-80px { padding-left: 80px !important; }
.pl-90px { padding-left: 90px !important; }
.pl-100px { padding-left: 100px !important; }

/* Padding Right */
.pr-10px { padding-right: 10px !important; }
.pr-15px { padding-right: 15px !important; }
.pr-20px { padding-right: 20px !important; }
.pr-25px { padding-right: 25px !important; }
.pr-30px { padding-right: 30px !important; }
.pr-40px { padding-right: 40px !important; }
.pr-50px { padding-right: 50px !important; }
.pr-60px { padding-right: 60px !important; }
.pr-70px { padding-right: 70px !important; }
.pr-80px { padding-right: 80px !important; }
.pr-90px { padding-right: 90px !important; }
.pr-100px { padding-right: 100px !important; }

/* Margin Top */
.mt-10px { margin-top: 10px !important; }
.mt-15px { margin-top: 15px !important; }
.mt-20px { margin-top: 20px !important; }
.mt-25px { margin-top: 25px !important; }
.mt-30px { margin-top: 30px !important; }
.mt-40px { margin-top: 40px !important; }
.mt-50px { margin-top: 50px !important; }
.mt-60px { margin-top: 60px !important; }
.mt-70px { margin-top: 70px !important; }
.mt-80px { margin-top: 80px !important; }
.mt-90px { margin-top: 90px !important; }
.mt-100px { margin-top: 100px !important; }
.mt-110px { margin-top: 110px !important; }
.mt-120px { margin-top: 120px !important; }
.mt-130px { margin-top: 130px !important; }
.mt-140px { margin-top: 140px !important; }
.mt-150px { margin-top: 150px !important; }

/* Margin Bottom */
.mb-10px { margin-bottom: 10px !important; }
.mb-15px { margin-bottom: 15px !important; }
.mb-20px { margin-bottom: 20px !important; }
.mb-25px { margin-bottom: 25px !important; }
.mb-30px { margin-bottom: 30px !important; }
.mb-40px { margin-bottom: 40px !important; }
.mb-50px { margin-bottom: 50px !important; }
.mb-60px { margin-bottom: 60px !important; }
.mb-70px { margin-bottom: 70px !important; }
.mb-80px { margin-bottom: 80px !important; }
.mb-90px { margin-bottom: 90px !important; }
.mb-100px { margin-bottom: 100px !important; }
.mb-110px { margin-bottom: 110px !important; }
.mb-120px { margin-bottom: 120px !important; }
.mb-130px { margin-bottom: 130px !important; }
.mb-140px { margin-bottom: 140px !important; }
.mb-150px { margin-bottom: 150px !important; }

/* Margin Left */
.ml-10px { margin-left: 10px !important; }
.ml-15px { margin-left: 15px !important; }
.ml-20px { margin-left: 20px !important; }
.ml-25px { margin-left: 25px !important; }
.ml-30px { margin-left: 30px !important; }
.ml-40px { margin-left: 40px !important; }
.ml-50px { margin-left: 50px !important; }
.ml-60px { margin-left: 60px !important; }
.ml-70px { margin-left: 70px !important; }
.ml-80px { margin-left: 80px !important; }
.ml-90px { margin-left: 90px !important; }
.ml-100px { margin-left: 100px !important; }

/* Margin Right */
.mr-10px { margin-right: 10px !important; }
.mr-15px { margin-right: 15px !important; }
.mr-20px { margin-right: 20px !important; }
.mr-25px { margin-right: 25px !important; }
.mr-30px { margin-right: 30px !important; }
.mr-40px { margin-right: 40px !important; }
.mr-50px { margin-right: 50px !important; }
.mr-60px { margin-right: 60px !important; }
.mr-70px { margin-right: 70px !important; }
.mr-80px { margin-right: 80px !important; }
.mr-90px { margin-right: 90px !important; }
.mr-100px { margin-right: 100px !important; }

/* Section Areas - Furns Style */
.about-area {
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-top {
    padding-top: 100px;
}

.section-padding-bottom {
    padding-bottom: 100px;
}

/* Responsive Typography */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
    
    p {
        font-size: 14px;
    }
    
    .btn {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    /* Responsive Spacing - Mobile */
    .pt-100px { padding-top: 60px !important; }
    .pb-100px { padding-bottom: 60px !important; }
    .pt-120px { padding-top: 70px !important; }
    .pb-120px { padding-bottom: 70px !important; }
    .pt-150px { padding-top: 80px !important; }
    .pb-150px { padding-bottom: 80px !important; }
    
    .mt-100px { margin-top: 60px !important; }
    .mb-100px { margin-bottom: 60px !important; }
    .mt-120px { margin-top: 70px !important; }
    .mb-120px { margin-bottom: 70px !important; }
    .mt-150px { margin-top: 80px !important; }
    .mb-150px { margin-bottom: 80px !important; }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-padding-top {
        padding-top: 60px;
    }
    
    .section-padding-bottom {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    /* Extra Small Devices - Responsive Spacing */
    .pt-100px { padding-top: 40px !important; }
    .pb-100px { padding-bottom: 40px !important; }
    .pt-120px { padding-top: 50px !important; }
    .pb-120px { padding-bottom: 50px !important; }
    .pt-150px { padding-top: 60px !important; }
    .pb-150px { padding-bottom: 60px !important; }
    
    .mt-100px { margin-top: 40px !important; }
    .mb-100px { margin-bottom: 40px !important; }
    .mt-120px { margin-top: 50px !important; }
    .mb-120px { margin-bottom: 50px !important; }
    .mt-150px { margin-top: 60px !important; }
    .mb-150px { margin-bottom: 60px !important; }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-padding-top {
        padding-top: 40px;
    }
    
    .section-padding-bottom {
        padding-bottom: 40px;
    }
}

/* Main Header Styles */
.header-area {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: relative;
    z-index: 999;
}

.header-sticky {
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo img {
    max-height: 50px;
    width: auto;
}

/* Main Menu Styles */
.main-menu nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu nav ul li {
    margin: 0 25px;
    position: relative;
}

.main-menu nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.main-menu nav ul li a:hover,
.main-menu nav ul li.active a {
    color: #007bff;
}

.main-menu nav ul li.has-dropdown > a i {
    margin-left: 5px;
    font-size: 12px;
}

/* Dropdown Menu */
.main-menu nav ul li .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.main-menu nav ul li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu nav ul li .submenu li {
    margin: 0;
    border-bottom: 1px solid #f8f9fa;
}

.main-menu nav ul li .submenu li:last-child {
    border-bottom: none;
}

.main-menu nav ul li .submenu li a {
    padding: 12px 20px;
    color: #666;
    font-weight: 500;
    font-size: 14px;
}

.main-menu nav ul li .submenu li a:hover {
    color: #007bff;
    background: #f8f9fa;
}

/* Header Right Actions */
.header-right .header-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

/* Hide Search and Cart Icons in Header */
.header-area .header-search,
.header-area .header-cart,
.header-area .search-trigger,
.header-area .cart-trigger,
.header-action .header-search,
.header-action .header-cart,
.header-right .header-search,
.header-right .header-cart,
.header-area .fa-search,
.header-area .fa-shopping-cart {
    display: none !important;
    visibility: hidden !important;
}

/* Hide Spacing Test Section - Handled by JavaScript */

/* Header Social Media Styles */
.header-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-social .social-link.facebook {
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.header-social .social-link.facebook:hover {
    background: #1877f2;
    color: white;
    transform: translateY(-2px);
}

.header-social .social-link.twitter {
    color: #1da1f2;
    background: rgba(29, 161, 242, 0.1);
}

.header-social .social-link.twitter:hover {
    background: #1da1f2;
    color: white;
    transform: translateY(-2px);
}

.header-social .social-link.instagram {
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.header-social .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    transform: translateY(-2px);
}

.header-social .social-link.linkedin {
    color: #0077b5;
    background: rgba(0, 119, 181, 0.1);
}

.header-social .social-link.linkedin:hover {
    background: #0077b5;
    color: white;
    transform: translateY(-2px);
}

.header-social .social-link.youtube {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

.header-social .social-link.youtube:hover {
    background: #ff0000;
    color: white;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu-area {
    background: white;
    border-top: 1px solid #e9ecef;
    display: none;
}

.mobile-menu-area.active {
    display: block;
}

.mobile-menu nav ul {
    list-style: none;
    margin: 0;
    padding: 20px 0;
}

.mobile-menu nav ul li {
    border-bottom: 1px solid #f8f9fa;
}

.mobile-menu nav ul li a {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.mobile-menu nav ul li a:hover {
    color: #007bff;
}

/* Hero Slider Styles */
.hero-slider-area {
    position: relative;
    overflow: hidden;
}

.single-hero-slider {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-slider-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.hero-slider-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-slider-subtitle {
    color: #007bff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.hero-slider-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-slider-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btn {
    background: #007bff;
    border: 2px solid #007bff;
    color: white;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: transparent;
    color: #007bff;
}

.hero-slider-image {
    position: relative;
    z-index: 2;
}

.hero-slider-image img {
    max-width: 100%;
    height: auto;
}

/* Hero Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 100%;
    pointer-events: none;
}

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-prev {
    left: 30px;
}

.hero-slider-next {
    right: 30px;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: #007bff;
    color: white;
}

/* Hero Slider Pagination */
.hero-slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    margin: 0 5px;
}

.hero-slider-pagination .swiper-pagination-bullet-active {
    background: #007bff;
}

/* Category Collection Styles */
.category-collection-area {
    padding: 100px 0 70px;
}

.single-category-collection {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.single-category-collection:hover {
    transform: translateY(-5px);
}

.category-collection-img {
    position: relative;
    overflow: hidden;
}

.category-collection-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single-category-collection:hover .category-collection-img img {
    transform: scale(1.05);
}

.category-collection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 30px 30px;
    color: white;
}

.category-collection-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.category-btn {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.category-btn:hover {
    color: white;
    border-bottom-color: #007bff;
}

/* Additional Utility Classes */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.submenu-right {
    left: auto !important;
    right: 0 !important;
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .main-menu nav ul li {
        margin: 0 15px;
    }
    
    .hero-slider-title {
        font-size: 40px;
    }
    
    .header-right .header-action {
        gap: 10px;
    }
    
    .header-social .social-link {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .main-menu {
        display: none;
    }
    
    .hero-slider-title {
        font-size: 36px;
    }
    
    .hero-slider-desc {
        font-size: 16px;
    }
    
    .single-hero-slider {
        min-height: 500px;
        text-align: center;
    }
    
    .hero-slider-nav {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-slider-title {
        font-size: 28px;
    }
    
    .hero-slider-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .single-hero-slider {
        min-height: 400px;
    }
    
    .category-collection-area {
        padding: 60px 0 40px;
    }
    
    .category-collection-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .hero-slider-title {
        font-size: 24px;
    }
    
    .hero-slider-pagination {
        bottom: 20px;
    }
    
    .hero-slider-prev,
    .hero-slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero-slider-prev {
        left: 15px;
    }
    
    .hero-slider-next {
        right: 15px;
    }
}

/* ===================================
   Footer Styles - Furns Template
   =================================== */

.footer-area {
    background-color: #1a1a1a;
    color: #ffffff;
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
    position: relative;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget-heading h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-heading h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #007bff;
}

.footer-widget-content {
    color: #cccccc;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 50px;
    width: auto;
}

.footer-widget-content p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-widget-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-content ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
}

.footer-widget-content ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-widget-content ul li a:hover {
    color: #007bff;
    padding-left: 5px;
}

/* Footer Blog List Styles */
.footer-blog-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-blog-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-blog-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.footer-blog-link {
    color: #cccccc;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.footer-blog-link:hover {
    color: #ffffff;
}

.footer-blog-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-blog-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.footer-blog-link:hover .footer-blog-title {
    color: #007bff;
}

.footer-blog-date {
    font-size: 12px;
    color: #999999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-blog-date i {
    font-size: 11px;
    opacity: 0.7;
}

/* Footer Social Icons */
.footer-social-icon {
    margin-top: 20px;
}

.footer-social-icon a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333333;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.footer-social-icon a:hover {
    background: #007bff;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Newsletter Form */
.newsletter-form {
    margin-top: 20px;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    margin-bottom: 20px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 50px 12px 15px;
    border: 1px solid #333333;
    background: #2a2a2a;
    color: #ffffff;
    border-radius: 5px;
    font-size: 14px;
}

.newsletter-input-group input::placeholder {
    color: #999999;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: #007bff;
    background: #333333;
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #007bff;
    border: none;
    color: #ffffff;
    width: 40px;
    height: 35px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.newsletter-btn:hover {
    background: #0056b3;
}

/* Footer Contact Info */
.footer-contact-info {
    margin-top: 25px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #cccccc;
    font-size: 14px;
}

.contact-info-item i {
    width: 20px;
    color: #007bff;
    margin-right: 10px;
    font-size: 14px;
}

.contact-info-item a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #007bff;
}

/* Footer Bottom */
.footer-bottom {
    background: #111111;
    padding: 20px 0;
    border-top: 1px solid #333333;
}

.footer-copyright p {
    margin: 0;
    color: #cccccc;
    font-size: 14px;
}

.footer-copyright a {
    color: #007bff;
    text-decoration: none;
}

.footer-copyright a:hover {
    color: #0056b3;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.footer-digital-agency {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #999999;
}

.yugom-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.yugom-link:hover {
    transform: scale(1.05);
}

.yugom-logo-original {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.scroll-top-btn {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #007bff;
    color: #ffffff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #0056b3;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive Footer Styles */
@media (max-width: 991px) {
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-widget {
        margin-bottom: 40px;
    }
    
    .footer-bottom-right {
        justify-content: center;
        margin-top: 15px;
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding: 50px 0 30px;
    }
    
    .footer-widget-heading h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .footer-copyright {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-bottom-right {
        text-align: center;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-btn {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 10px;
        height: 45px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top-btn {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .footer-top {
        padding: 40px 0 20px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-social-icon a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
        margin-right: 8px;
    }
    
    .footer-blog-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .footer-blog-title {
        font-size: 14px;
    }
    
    .footer-blog-date {
        font-size: 11px;
    }
    
    .footer-digital-agency {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

/* ===================================
   Furns Template Advanced Components
   =================================== */

/* Product Cards - Furns Style */
.product-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition-default);
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-default);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .product-content {
    padding: 20px;
}

.product-card .product-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.product-card .product-price {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.product-card .product-price .old-price {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-left: 10px;
}

/* Section Titles - Furns Style */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
}

.section-title p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Navigation - Furns Style */
.navbar-brand {
    font-family: var(--font-primary) !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--color-primary) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-family: var(--font-primary) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--color-text) !important;
    padding: 15px 20px !important;
    transition: var(--transition-default);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary) !important;
}

/* Enhanced Breadcrumb - Furns Style */
.breadcrumb {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: var(--font-secondary);
}

.breadcrumb-item {
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--color-text-light);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--color-primary);
    font-weight: 500;
}

/* Enhanced Alert Messages - Furns Style */
.alert {
    border: none !important;
    border-radius: var(--border-radius) !important;
    font-family: var(--font-secondary);
    font-size: 14px;
    padding: 15px 20px;
}

.alert-success {
    background-color: #d4edda !important;
    color: #155724 !important;
    border-left: 4px solid #28a745 !important;
}

.alert-danger {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    border-left: 4px solid #dc3545 !important;
}

.alert-info {
    background-color: #d1ecf1 !important;
    color: #0c5460 !important;
    border-left: 4px solid #17a2b8 !important;
}

/* Loading Animation - Furns Style */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--color-white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Enhancements - Furns Style */
.form-control {
    font-family: var(--font-secondary) !important;
    font-size: 14px !important;
    padding: 12px 15px !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--border-radius) !important;
    transition: var(--transition-default) !important;
}

.form-control:focus {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 2px rgba(220, 20, 60, 0.1) !important;
}

.form-label {
    font-family: var(--font-primary) !important;
    font-weight: 500 !important;
    color: var(--color-text) !important;
    margin-bottom: 8px !important;
}

/* Table Enhancements - Furns Style */
.table {
    font-family: var(--font-secondary) !important;
}

.table th {
    font-family: var(--font-primary) !important;
    font-weight: 600 !important;
    color: var(--color-text) !important;
    border-bottom: 2px solid var(--color-border) !important;
}

.table td {
    color: var(--color-text-light) !important;
    vertical-align: middle !important;
}

/* Card Enhancements - Furns Style */
.card {
    border: none !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--box-shadow) !important;
}

.card-header {
    background-color: var(--color-bg-light) !important;
    border-bottom: 1px solid var(--color-border) !important;
    font-family: var(--font-primary) !important;
    font-weight: 600 !important;
}

.card-title {
    font-family: var(--font-primary) !important;
    font-weight: 600 !important;
    color: var(--color-text) !important;
}

/* Badge Enhancements - Furns Style */
.badge {
    font-family: var(--font-primary) !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    padding: 6px 12px !important;
    border-radius: var(--border-radius) !important;
}

/* Pagination Enhancements - Furns Style */
.pagination .page-link {
    font-family: var(--font-primary) !important;
    font-weight: 500 !important;
    color: var(--color-text) !important;
    border: 1px solid var(--color-border) !important;
    padding: 10px 15px !important;
}

.pagination .page-link:hover {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

.pagination .page-item.active .page-link {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

/* Responsive Typography Enhancements */
@media (max-width: 991px) {
    .section-title h2 {
        font-size: 2rem !important;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px !important;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 1.75rem !important;
    }
    
    .product-card .product-image img {
        height: 200px;
    }
    
    .navbar-brand {
        font-size: 24px !important;
    }
}

/* ===================================
   Furns Template Contact Page Styles
   =================================== */

/* Contact Section */
.contact-area {
    position: relative;
    background-color: var(--color-bg-light);
}

.contact-wrapper {
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 50px;
    margin-bottom: 50px;
}

.contact-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    text-align: center;
}

.contact-subtitle {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form {
    background: transparent;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-control {
    height: 55px;
    padding: 15px 20px;
    font-size: 15px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-text);
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

.contact-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #999;
    font-size: 14px;
}

.contact-form textarea.form-control {
    height: 120px;
    resize: vertical;
    padding-top: 15px;
}

.contact-form .form-label {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
    font-size: 14px;
}

/* Contact Form Button */
.contact-btn {
    background: linear-gradient(45deg, var(--color-primary), #e91e63);
    color: var(--color-white);
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
    color: var(--color-white);
}

.contact-btn: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: left 0.5s;
}

.contact-btn:hover:before {
    left: 100%;
}

/* Contact Info Cards */
.contact-info-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-info-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contact-info-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--color-primary), #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-white);
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
}

.contact-info-text {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-info-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info-link:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* Eski Contact Info Class'ları için Uyumluluk (Admin panelinden eklenen HTML içerik için) */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-item {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contact-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--color-primary), #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-details {
    text-align: center;
}

.contact-details h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
}

.contact-details p {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* Map Section */
.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 50px;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0%);
}

/* Contact Page Header */
.contact-page-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

/* Banner görseli varsa overlay'i gizle ve koyu overlay ekle */
.contact-page-header.has-banner-image:before {
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.contact-page-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.contact-page-subtitle {
    font-family: var(--font-secondary);
    font-size: 18px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Success/Error Messages */
.contact-message {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-family: var(--font-secondary);
    font-weight: 500;
    display: none;
}

.contact-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading State */
.contact-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.contact-btn.loading:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-wrapper {
        padding: 40px 30px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-page-title {
        font-size: 2.5rem;
    }
    
    .contact-info-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .contact-wrapper {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-page-header {
        padding: 80px 0 40px;
    }
    
    .contact-page-title {
        font-size: 2rem;
    }
    
    .contact-page-subtitle {
        font-size: 16px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-info-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .contact-item {
        padding: 30px 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-map {
        margin-top: 30px;
    }
    
    .contact-map iframe {
        height: 300px;
    }
    
    .contact-btn {
        width: 100%;
        padding: 15px 20px;
    }
}

@media (max-width: 575px) {
    .contact-wrapper {
        padding: 25px 15px;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-page-title {
        font-size: 1.75rem;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .contact-info-title {
        font-size: 18px;
    }
    
    .contact-info-text {
        font-size: 14px;
    }
}

/* ===================================
   Gallery Section Styles
   =================================== */

.gallery-section {
    position: relative;
    padding: 80px 0;
}

.gallery-header {
    margin-bottom: 50px;
}

.gallery-title {
    font-family: var(--font-primary, 'Poppins', sans-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-heading, #333333);
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.2;
}

.gallery-description {
    font-family: var(--font-secondary, 'Roboto', sans-serif);
    font-size: 16px;
    color: var(--color-text-light, #999999);
    text-align: center;
    margin: 0;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Gallery Styles */
@media (max-width: 991px) {
    .gallery-title {
        font-size: 36px;
    }
    
    .gallery-description {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-header {
        margin-bottom: 40px;
    }
    
    .gallery-title {
        font-size: 28px;
    }
    
    .gallery-description {
        font-size: 14px;
        padding: 0 15px;
    }
}

@media (max-width: 575px) {
    .gallery-title {
        font-size: 24px;
    }
    
    .gallery-description {
        font-size: 13px;
    }
}
