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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

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

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

/* Top Header */
.top-header {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.top-links a:hover {
    color: #d4af37;
}

.logo h1 {
    font-size: 2rem;
    color: #333;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.phone-info, .address-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-info {
    max-width: 400px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}

.text {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
}

.phone, .address {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

.address {
    line-height: 1.4;
    text-align: right;
}

/* Main Navigation */
.main-navigation {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
}

.nav-menu a:hover {
    color: #d4af37;
    background: #f8f9fa;
}

.separator {
    color: #e0e0e0;
    font-weight: 300;
    padding: 0 5px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #d4af37;
    padding-left: 2rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Hero Panels */
.hero-panels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 1;
}

.hero-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    transition: all 0.5s ease;
    cursor: pointer;
    overflow: hidden;
    padding-bottom: 2rem;
}

.hero-panel:hover {
    transform: scale(1.02);
}

/* Panel Background Images */
.panel-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* 
NOT: Gerçek ürün fotoğraflarını eklemek için:
1. images/ klasörü oluşturun
2. Aşağıdaki CSS'teki placeholder URL'leri gerçek fotoğraf yollarıyla değiştirin
3. Örnek: background-image: url('images/saten-gelinlik.jpg');
*/

.saten-panel .panel-image-bg {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)), 
                      url('images/saten.jpeg');
}

.helen-panel .panel-image-bg {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)), 
                      url('images/Katagori/Helen (2).jpeg');
}

.a-kesim-panel .panel-image-bg {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)), 
                      url('images/a-kesim.jpeg');
}

.balik-panel .panel-image-bg {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)), 
                      url('images/balik.jpeg');
}

.kaftan-panel .panel-image-bg {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)), 
                      url('images/kaftan.jpeg');
}

.nisanlik-panel .panel-image-bg {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)), 
                      url('images/nisanlik.jpeg');
}

/* Panel Overlay */
.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

/* Panel Content */
.panel-content {
    position: relative;
    z-index: 3;
    padding: 1rem;
    width: 100%;
}

.panel-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    color: white;
    text-transform: uppercase;
}

/* Hero Main Content (Helen Panel içinde) */
.hero-main-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: #333;
}

.hero-main-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
    text-shadow: none;
}

.hero-main-content p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #666;
    font-weight: 400;
}

/* En Trend Gelinlikler Section */
.trend-wedding-dresses {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.trend-wedding-dresses::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="%23d4af37" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%23d4af37" opacity="0.02"/><circle cx="10" cy="60" r="0.5" fill="%23d4af37" opacity="0.02"/><circle cx="90" cy="40" r="0.5" fill="%23d4af37" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.trend-wedding-dresses .section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.trend-wedding-dresses .section-header h2 {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.trend-wedding-dresses .section-header h3 {
    font-size: 2.2rem;
    color: #d4af37;
    margin: 0;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
}

.trend-wedding-dresses .section-header h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 2px;
}

.dress-models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.dress-model-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.dress-model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.dress-model-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.dress-model-card:hover::before {
    opacity: 1;
}

.dress-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.dress-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.dress-model-card:hover .dress-image::after {
    opacity: 1;
}

.dress-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0.95) contrast(1.05);
}

.dress-model-card:hover .dress-image img {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.1);
}

.dress-model-card h4 {
    padding: 2rem;
    text-align: center;
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
    background: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dress-model-card:hover h4 {
    color: #d4af37;
    transform: translateY(-3px);
    font-weight: 600;
}

.dress-model-card:active {
    transform: translateY(-15px) scale(1.01);
    transition: all 0.2s ease;
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* About Section - Enhanced Elegant Design */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f7fa 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 40% 60%, rgba(212, 175, 55, 0.05) 0%, transparent 30%),
        linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.02) 50%, transparent 52%);
    pointer-events: none;
    z-index: 1;
    animation: floatingBg 20s ease-in-out infinite alternate;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 3.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.section-header h2::before {
    content: '◊';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    font-size: 2rem;
    opacity: 0.6;
    animation: pulse 3s ease-in-out infinite;
}

.section-header p {
    color: #d4af37;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
    position: relative;
    margin-top: 1rem;
}

.section-header p::after {
    content: '◇ ✧ ◇';
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    color: #d4af37;
    font-size: 1.2rem;
    opacity: 0.8;
    letter-spacing: 0.5rem;
    animation: sparkle 4s ease-in-out infinite;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, #d4af37 20%, #f4d03f 50%, #d4af37 80%, transparent);
    border-radius: 20px 20px 0 0;
    animation: shimmerLine 3s ease-in-out infinite;
}

.about-text h3 {
    color: #d4af37;
    margin-top: 2.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding-left: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text h3::before {
    content: '❋';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-image {
    position: relative;
    z-index: 2;
}

.image-placeholder {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 
        0 30px 60px rgba(212, 175, 55, 0.3),
        inset 0 0 50px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #d4af37, transparent, #f4d03f, transparent, #d4af37);
    animation: orbitRing 6s linear infinite;
    opacity: 0.3;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.1));
    z-index: 1;
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.image-placeholder p {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.image-placeholder small {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enhanced About Section Features */
.about-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border-left: 4px solid #d4af37;
    transition: all 0.3s ease;
}

.about-features li:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.about-features li i {
    color: #d4af37;
    margin-right: 1rem;
    font-size: 1.2rem;
    min-width: 20px;
}

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

.expertise-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transition: left 0.6s ease;
}

.expertise-item:hover::before {
    left: 100%;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.expertise-item h4 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expertise-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* SEO Articles Section */
.seo-articles {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.seo-articles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 25%),
        linear-gradient(90deg, transparent 48%, rgba(212, 175, 55, 0.01) 50%, transparent 52%);
    pointer-events: none;
    z-index: 1;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.article-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
    border-radius: 20px 20px 0 0;
}

.article-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.article-card:hover::after {
    opacity: 1;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

.article-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.article-header h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.article-meta {
    color: #d4af37;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
    display: flex;
    align-items: center;
}

.article-meta::before {
    content: '✦';
    margin-right: 0.5rem;
    color: #d4af37;
}

.article-content {
    color: #555;
    line-height: 1.7;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.article-content strong {
    color: #d4af37;
    font-weight: 600;
}

.article-content em {
    color: #2c3e50;
    font-style: italic;
}

.body-types {
    margin: 1.5rem 0;
}

.body-types h4 {
    color: #d4af37;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.body-types h4::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1rem;
}

.golden-rules {
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.golden-rules li {
    margin-bottom: 1.2rem;
    padding-left: 0.5rem;
    position: relative;
}

.golden-rules li::marker {
    color: #d4af37;
    font-weight: bold;
}

/* Blog Page Styles */
.blog-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 25%);
    pointer-events: none;
}

.blog-header-content {
    position: relative;
    z-index: 2;
}

.blog-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.blog-header p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #d4af37;
    font-style: italic;
}

.breadcrumb {
    font-size: 1rem;
    color: #bdc3c7;
}

.breadcrumb a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #f4d03f;
}

/* Featured Article */
.featured-article {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.featured-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
}

.featured-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.category {
    background: #d4af37;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.date {
    color: #666;
    font-style: italic;
}

.featured-post h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.article-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.featured-image .image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.featured-image .image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.featured-image .image-placeholder span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Blog Articles Section */
.blog-articles {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
}

/* Sidebar */
.blog-sidebar {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: fit-content;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    margin-bottom: 3rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #d4af37;
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #f4d03f;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    color: #555;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-list a:hover,
.category-list a.active {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.2);
}

.category-list span {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.popular-posts {
    list-style: none;
    padding: 0;
}

.popular-posts li {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #eee;
}

.popular-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-posts a {
    text-decoration: none;
    color: #555;
    display: block;
    transition: color 0.3s ease;
}

.popular-posts a:hover {
    color: #d4af37;
}

.post-title {
    display: block;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.post-views {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

/* Main Blog Content */
.blog-main {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

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

/* Blog Post Cards */
.blog-post {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    transition: transform 0.4s ease;
}

.blog-post:hover .post-image .image-placeholder {
    transform: scale(1.05);
}

.post-image .image-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.post-image .image-placeholder span {
    font-weight: 500;
    text-align: center;
    padding: 0 1rem;
}

.post-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #d4af37;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.post-content {
    padding: 2rem;
}

.post-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #999;
    flex-wrap: wrap;
}

.post-meta span {
    position: relative;
}

.post-meta span:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -0.6rem;
    color: #ddd;
}

.post-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.post-tags .tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #d4af37;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #b8860b;
    transform: translateY(-2px);
}

.pagination-btn.disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: #666;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.page-number:hover,
.page-number.active {
    background: #d4af37;
    color: white;
    border-color: #d4af37;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: #bdc3c7;
}

.newsletter-form form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(5px);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* Kaftan Image Styling */
.kaftan-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 25%, #DAA520 50%, #D2691E 75%, #8B4513 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
}

.kaftan-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 25%),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.05) 50%, transparent 52%);
    opacity: 0.8;
    pointer-events: none;
}

.kaftan-image i {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    animation: kaftan-pulse 3s ease-in-out infinite;
}

.kaftan-image span {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.kaftan-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.4);
}

.product-card:hover .kaftan-image {
    background: linear-gradient(135deg, #A0522D 0%, #F4A460 25%, #FFD700 50%, #F4A460 75%, #A0522D 100%);
}

@keyframes kaftan-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* Enhanced model cards for kaftan page */
.kaftan-models {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f7fa 100%);
}

.kaftan-models .model-card .kaftan-image {
    height: 300px;
}

.kaftan-models .model-card:hover .kaftan-image {
    transform: scale(1.02);
}

.image-placeholder p {
    font-size: 1.4rem;
    font-weight: 500;
    color: white;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

@keyframes orbitRing {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes floatingBg {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
    25% { opacity: 1; transform: translateX(-50%) scale(1.1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(0.9); }
    75% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

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

@keyframes shimmerLine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes glow {
    0% { text-shadow: 0 0 5px rgba(212, 175, 55, 0.5), 0 0 10px rgba(212, 175, 55, 0.3); }
    100% { text-shadow: 0 0 10px rgba(212, 175, 55, 0.8), 0 0 20px rgba(212, 175, 55, 0.5), 0 0 30px rgba(212, 175, 55, 0.3); }
}

@keyframes subtleFloat {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-5px) scale(1.01); }
}

@keyframes breathe {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    25% { opacity: 1; }
    50% { opacity: 0.6; }
    75% { opacity: 1; }
}

@keyframes expandLine {
    0% { width: 80px; opacity: 0.8; }
    100% { width: 120px; opacity: 1; }
}

@keyframes borderGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.6; }
}

/* Products Section - Enhanced Elegant Design */
.products {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 20%),
        radial-gradient(circle at 85% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 25%),
        radial-gradient(circle at 50% 90%, rgba(212, 175, 55, 0.04) 0%, transparent 30%),
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(212, 175, 55, 0.01) 102px);
    pointer-events: none;
    z-index: 1;
    animation: subtleFloat 15s ease-in-out infinite alternate;
}

.products .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 6rem;
}

.products .section-header h2 {
    font-size: 3.2rem;
    color: #2c3e50;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.products .section-header h2::before {
    content: '❈';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    font-size: 2.5rem;
    opacity: 0.7;
    animation: breathe 4s ease-in-out infinite;
}

.products .section-header p {
    font-size: 1.4rem;
    color: #d4af37;
    font-style: italic;
    letter-spacing: 1px;
    margin-top: 1rem;
    position: relative;
}

.products .section-header p::after {
    content: '✦ ✿ ✦';
    position: absolute;
    left: 50%;
    bottom: -35px;
    transform: translateX(-50%);
    color: #d4af37;
    font-size: 1.3rem;
    opacity: 0.8;
    letter-spacing: 1rem;
    animation: twinkle 3s ease-in-out infinite;
}

.product-category {
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.product-category h3 {
    text-align: center;
    color: #d4af37;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    position: relative;
    text-transform: uppercase;
}

.product-category h3::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37 20%, #f4d03f 50%, #d4af37 80%, transparent);
    border-radius: 2px;
    animation: expandLine 2s ease-in-out infinite alternate;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(212, 175, 55, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.2), transparent, rgba(212, 175, 55, 0.1));
    border-radius: 27px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
    position: relative;
    box-shadow: 
        0 15px 30px rgba(212, 175, 55, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Product image with actual photos */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 40%, rgba(255, 255, 255, 0.1));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-image i {
    position: relative;
    z-index: 2;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-card:hover .product-image {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 
        0 20px 40px rgba(212, 175, 55, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.product-card h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.product-card:hover h4 {
    color: #d4af37;
    transform: translateY(-3px);
}

.product-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
    font-weight: 400;
}

.product-card:hover p {
    color: #555;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 1.5rem;
    color: #d4af37;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.3rem;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-item p {
    margin: 0;
    color: #666;
    line-height: 1.3;
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 1rem;
}

.map-container iframe {
    display: block;
    width: 100%;
    border-radius: 15px;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #d4af37;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #b8860b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .top-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.2rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
    
    .contact-item {
        height: 100px;
        align-items: center;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-panels {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    
    .hero-main-content {
        max-width: 500px;
        padding: 1.5rem;
    }
    
    .hero-main-content h1 {
        font-size: 2rem;
    }
    
    .dress-models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .trend-wedding-dresses .section-header h2 {
        font-size: 2.8rem;
    }
    
    .trend-wedding-dresses .section-header h3 {
        font-size: 1.8rem;
    }
    
    .dress-image {
        height: 350px;
    }
    
    /* Enhanced About Section Responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text {
        padding: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    .image-placeholder {
        width: 300px;
        height: 300px;
    }
    
    /* Enhanced Products Section Responsive */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .products .section-header h2 {
        font-size: 2.8rem;
    }
    
    .product-category h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .top-links {
        justify-content: center;
        display: none; /* Hide top links on mobile */
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .phone-info, .address-info {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .phone-info .text, .address-info .text {
        align-items: flex-start;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 80% !important;
        max-width: 300px !important;
        height: 100vh !important;
        background: white !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 80px 20px 30px !important;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2) !important;
        transition: left 0.3s ease !important;
        z-index: 1001 !important;
        overflow-y: auto !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu li {
        width: 100% !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
    }
    
    .nav-menu a {
        display: block !important;
        width: 100% !important;
        padding: 12px 15px !important;
        font-size: 0.95rem !important;
        color: #333 !important;
        text-align: left !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    .nav-menu a:hover {
        background: #f8f9fa !important;
        color: #d4af37 !important;
    }
    
    .separator {
        display: none !important;
    }
    
    /* Dropdown adjustments for mobile */
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: #f8f9fa !important;
        margin-top: 0 !important;
        margin-left: 15px !important;
        border-radius: 8px !important;
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
        max-height: 500px !important;
    }
    
    .dropdown > a {
        position: relative !important;
    }
    
    .dropdown > a::after {
        content: '+' !important;
        position: absolute !important;
        right: 15px !important;
        font-weight: bold !important;
        transition: transform 0.3s ease !important;
    }
    
    .dropdown.active > a::after {
        content: '-' !important;
    }
    
    .dropdown > a i.fa-chevron-down {
        display: none !important;
    }
    
    /* Mobile overlay */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        transition: opacity 0.3s ease;
    }
    
    .mobile-overlay.active {
        display: block !important;
    }
    
    .hero-panels {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        height: auto !important;
        position: relative !important;
        gap: 0 !important;
    }
    
    /* Allow hero section to expand on mobile */
    .hero {
        height: auto !important;
        min-height: 100vh !important;
    }
    
    /* Lighten overlay on mobile for better photo visibility */
    .panel-overlay {
        background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%) !important;
    }
    
    /* Enhance text shadow for readability */
    .panel-content h2 {
        text-shadow: 3px 3px 15px rgba(0, 0, 0, 1), 0 0 30px rgba(0, 0, 0, 1), 0 0 50px rgba(0, 0, 0, 0.8) !important;
        color: #ffffff !important;
        font-weight: 900 !important;
        letter-spacing: 3px !important;
    }
    
    .panel-content p {
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 1) !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        font-size: 1.1rem !important;
    }
    
    /* Ensure background images display properly on mobile - FULL COVERAGE */
    .panel-image-bg {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        width: 100% !important;
        height: 100% !important;
        background-attachment: scroll !important;
    }
    
    /* Specific panel heights for mobile - taller for better visibility */
    .hero-panel {
        min-height: 600px !important;
        height: 600px !important;
        display: flex !important;
        flex-direction: column !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    /* Ensure each panel takes full width and height */
    .hero-panel .panel-image-bg {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
    }
    
    /* Panel content positioning */
    .hero-panel .panel-content {
        position: absolute !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 3 !important;
        text-align: center !important;
        width: 90% !important;
    }
    
    /* Ensure each panel background image is visible */
    .a-kesim-panel .panel-image-bg {
        background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4)), url('images/a-kesim.jpeg') !important;
    }
    
    .kaftan-panel .panel-image-bg {
        background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4)), url('images/kaftan.jpeg') !important;
    }
    
    .nisanlik-panel .panel-image-bg {
        background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4)), url('images/nisanlik.jpeg') !important;
    }
    
    .balik-panel .panel-image-bg {
        background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4)), url('images/balik.jpeg') !important;
    }
    
    .hero-main-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 2rem auto;
        max-width: 90%;
    }
    
    .hero-main-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-main-content p {
        font-size: 1rem;
    }
    
    .panel-content h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        height: 90px;
        padding: 1.2rem;
    }
    
    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .contact-item h4 {
        font-size: 0.95rem;
    }
    
    .contact-item p {
        font-size: 0.8rem;
        line-height: 1.2;
        -webkit-line-clamp: 2;
    }
    
    .dress-models-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dress-image {
        height: 300px;
    }
    
    .trend-wedding-dresses .section-header h2 {
        font-size: 2.2rem;
    }
    
    .trend-wedding-dresses .section-header h3 {
        font-size: 1.5rem;
    }
    
    .dress-model-card h4 {
        font-size: 1.2rem;
        padding: 1.5rem;
    }
    
    /* Enhanced About Section Mobile */
    .about {
        padding: 80px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text {
        padding: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.4rem;
        padding-left: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .about-features li {
        flex-direction: row;
        text-align: left;
        padding: 1rem 0.8rem;
    }
    
    .about-features li i {
        margin-right: 0.8rem;
        font-size: 1.1rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .expertise-item {
        padding: 1.5rem 1rem;
    }
    
    .expertise-item h4 {
        font-size: 1.2rem;
    }
    
    .image-placeholder {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .image-placeholder i {
        font-size: 4rem;
    }
    
    .image-placeholder p {
        font-size: 1.5rem;
    }
    
    .image-placeholder small {
        font-size: 0.9rem;
    }
    
    /* SEO Articles Mobile */
    .seo-articles {
        padding: 60px 0;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .article-card {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .article-header h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .article-meta {
        font-size: 0.85rem;
    }
    
    .article-content {
        font-size: 0.95rem;
    }
    
    .body-types h4 {
        font-size: 1.1rem;
        padding-left: 1rem;
    }
    
    .golden-rules {
        padding-left: 0.5rem;
    }
    
    /* Blog Page Mobile */
    .blog-header {
        padding: 60px 0 40px;
    }
    
    .blog-header h1 {
        font-size: 2.5rem;
    }
    
    .blog-header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .featured-article {
        padding: 60px 0;
    }
    
    .featured-post {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .featured-post h2 {
        font-size: 1.8rem;
    }
    
    .featured-excerpt {
        font-size: 1rem;
    }
    
    .featured-image .image-placeholder {
        height: 200px;
    }
    
    .blog-articles {
        padding: 60px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        order: 2;
        position: static;
        padding: 1.5rem;
    }
    
    .blog-main {
        order: 1;
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-post {
        margin: 0;
    }
    
    .post-content {
        padding: 1.5rem;
    }
    
    .post-content h3 {
        font-size: 1.2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .post-meta span::after {
        display: none;
    }
    
    .pagination {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .pagination-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-form form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: 1rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .about-text {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .about-text h3 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .section-header p {
        font-size: 1.2rem;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .image-placeholder i {
        font-size: 3.5rem;
    }
    
    .image-placeholder p {
        font-size: 1.2rem;
    }
    
    /* Enhanced Products Section Mobile */
    .products {
        padding: 80px 0;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .product-card {
        padding: 2.5rem 1.5rem;
    }
    
    .products .section-header h2 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .product-category h3 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .product-image {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .product-card h4 {
        font-size: 1.2rem;
    }
    
    .product-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .top-links {
        gap: 15px;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    /* Mobile Navigation - Small Screens */
    .nav-menu {
        width: 85%;
        padding: 70px 20px 20px;
    }
    
    .nav-menu a {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
    
    .mobile-menu-toggle {
        padding: 8px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
    }
    
    .hero-main-content {
        padding: 1.5rem;
    }
    
    .hero-main-content h1 {
        font-size: 1.6rem;
    }
    
    .panel-content h2 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    /* Mobile hero panel improvements for very small screens */
    .hero-panel {
        min-height: 550px !important;
        height: 550px !important;
    }
    
    /* Better image display on small screens */
    .panel-image-bg {
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
    }
    
    .trend-wedding-dresses {
        padding: 80px 0;
    }
    
    .trend-wedding-dresses .section-header h2 {
        font-size: 1.8rem;
    }
    
    .trend-wedding-dresses .section-header h3 {
        font-size: 1.3rem;
    }
    
    .dress-model-card h4 {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
    
    /* Enhanced About Section Small Mobile */
    .about {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .about-text {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .about-text h3 {
        font-size: 1.2rem;
        padding-left: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .image-placeholder i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .image-placeholder p {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    /* Enhanced Products Section Small Mobile */
    .products {
        padding: 60px 0;
    }
    
    .products .section-header h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .products .section-header p {
        font-size: 1.1rem;
    }
    
    .product-category {
        margin-bottom: 3rem;
    }
    
    .product-category h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .product-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .product-card {
        padding: 2rem 1rem;
        border-radius: 20px;
    }
    
    .product-image {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .product-card h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .product-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .icon-circle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .panel-content h2 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .hero-main-content {
        padding: 1rem;
        margin: 1rem auto;
    }
    
    .hero-main-content h1 {
        font-size: 1.5rem;
    }
    
    /* Ultra small screens - ensure full image visibility */
    .hero-panel {
        min-height: 500px !important;
        height: 500px !important;
    }
    
    .panel-image-bg {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
    
    .chat-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        left: 20px;
    }
}

/* Enhanced Mobile Responsiveness - Additional Improvements */

/* Touch-friendly buttons and links */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    /* Touch-friendly contact info */
    .phone, .address {
        font-size: 1rem;
    }
    
    .icon-circle {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
    
    /* Better hero section on mobile */
    .hero {
        min-height: 60vh;
    }
    
    .hero-main-content {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    /* Improved form inputs */
    .form-group input,
    .form-group textarea {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 20px;
    }
    
    /* Better spacing */
    .container {
        padding: 0 15px;
    }
    
    .section-header {
        padding: 0 15px;
    }
    
    /* Mobile-optimized product cards */
    .product-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Ensure images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Mobile-friendly tables (if any) */
    table {
        width: 100%;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
    
    /* Better mobile typography */
    h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Mobile-optimized footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 2.5rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
        line-height: 44px;
        font-size: 1.2rem;
    }
}

/* Very small screens optimization */
@media (max-width: 380px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-main-content {
        margin: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .hero-main-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Product Detail Page Styles */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #d4af37;
}

.breadcrumb span {
    color: #495057;
    font-weight: 500;
}

.product-detail {
    padding: 60px 0;
    background: white;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-image-gallery {
    position: sticky;
    top: 20px;
}

.main-image {
    position: relative;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.main-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    color: white;
    font-size: 2rem;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #d4af37;
    transform: scale(1.05);
}

.product-info {
    padding: 20px 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 1.1rem;
}

.brand-name {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.product-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
}

.feature-item i {
    color: #28a745;
    font-size: 1.2rem;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-whatsapp,
.btn-email {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 200px;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-email {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
}

.btn-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    flex-direction: column;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.service-text h4 {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

/* Product Tabs */
.product-tabs {
    padding: 60px 0;
    background: #f8f9fa;
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 40px;
    gap: 5px;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover,
.tab-btn.active {
    color: #d4af37;
    border-bottom-color: #d4af37;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.description-content h4 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.description-content ul {
    list-style: none;
    padding-left: 0;
}

.description-content li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.description-content li:last-child {
    border-bottom: none;
}

.reviews-content {
    max-width: 800px;
}

.rating-summary {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 1.5rem;
}

.rating-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-left: 10px;
}

.review-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

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

.review-stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

/* Related Products */
.related-products {
    padding: 60px 0;
    background: white;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.related-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.related-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
}

.related-item h3 {
    padding: 20px 15px 10px;
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.related-item .btn-detail {
    display: inline-block;
    margin: 0 15px 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.related-item .btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive Design for Product Detail */
@media (max-width: 968px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-image-gallery {
        position: static;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .btn-whatsapp,
    .btn-email {
        min-width: auto;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-item {
        flex-direction: row;
        text-align: left;
    }
    
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .tab-btn:hover,
    .tab-btn.active {
        border-left-color: #d4af37;
        border-bottom-color: transparent;
    }
}

@media (max-width: 768px) {
    .main-image img {
        height: 400px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

/* Category Pages Styles */
.page-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 0 60px;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.tesettur-models {
    padding: 80px 0;
    background: white;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
    justify-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.model-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 500px;
    width: 100%;
    border: 1px solid #f0f0f0;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.model-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    background: #f8f9fa;
}

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

.model-info {
    padding: 30px;
    text-align: center;
}

.model-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.model-info p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-detail {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive Design for Category Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .tesettur-models {
        padding: 60px 0;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    .model-card {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .model-image {
        height: 500px;
    }
    
    .model-info {
        padding: 25px 20px;
    }
    
    .model-info h3 {
        font-size: 1.3rem;
    }
    
    .model-info p {
        font-size: 0.95rem;
    }
}

/* Custom Design Gallery */
.custom-design-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.custom-design-gallery .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.custom-design-gallery .section-header h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.custom-design-gallery .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-item .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item .image-overlay i {
    color: white;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-item img {
        height: 300px;
    }
    
    .custom-design-gallery .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 250px;
    }
}