/* ===========================
   Global Styles & Variables
   =========================== */

:root {
    --primary-color: #D4AF37;
    --secondary-color: #1a1a1a;
    --accent-color: #C9A961;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --bg-dark: #0a0a0a;
    --white: #ffffff;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #C9A961 50%, #B8941E 100%);
    --dark-gradient: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 5px 30px rgba(212, 175, 55, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}
/* === PREMIUM GOLD SCROLLBAR === */
::-webkit-scrollbar {
    width: 10px;
    background: #0a0a0a;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 10px;
    box-shadow: var(--shadow-gold);
    border: 2px solid #0a0a0a;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #EAC75A 0%, #D4AF37 50%, #B8941E 100%);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* ===========================
   Typography
   =========================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
}

/* ===========================
   Navbar
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.logo-img img {
    height: 50px;
    padding: 6px;
    margin-top: 6px;
    filter: brightness(3)
}

.logo-title {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 200;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}

.logo i {
    font-size: 32px;
    color: #ff6b00;
    animation: fireFlicker 0.3s ease-in-out infinite;
}

@keyframes fireFlicker {
    0%, 100% {
        color: #ff4500;
        text-shadow: 
            0 0 10px rgba(255, 69, 0, 1),
            0 0 20px rgba(255, 140, 0, 0.8),
            0 0 30px rgba(255, 165, 0, 0.6),
            0 0 40px rgba(255, 69, 0, 0.4);
        transform: scale(1);
    }
    25% {
        color: #ff6347;
        text-shadow: 
            0 0 12px rgba(255, 99, 71, 1),
            0 0 22px rgba(255, 140, 0, 0.9),
            0 0 32px rgba(255, 165, 0, 0.7),
            0 0 42px rgba(255, 140, 0, 0.5);
        transform: scale(1.01);
    }
    50% {
        color: #ffa500;
        text-shadow: 
            0 0 20px rgba(255, 165, 0, 1),
            0 0 30px rgba(255, 215, 0, 0.9),
            0 0 40px rgba(255, 140, 0, 0.7),
            0 0 50px rgba(255, 165, 0, 0.5);
        transform: scale(1);
    }
    75% {
        color: #ff8c00;
        text-shadow: 
            0 0 12px rgba(255, 140, 0, 1),
            0 0 22px rgba(255, 165, 0, 0.9),
            0 0 32px rgba(255, 140, 0, 0.7),
            0 0 42px rgba(255, 69, 0, 0.5);
        transform: scale(1.01);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 200;
    font-size: 16px;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-btn {
    padding: 14px 35px;
    background: var(--gold-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/somine/images/hero-fireplace.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(26,26,26,0.7) 100%);
    z-index: 1;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.02);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 72px;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.elegant-line {
    display: block;
    font-weight: 300;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.9);
}

.highlight {
    display: block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 200;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* ===========================
   Stats Section
   =========================== */

.stats {
    background: var(--secondary-color);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.stat-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
    color: var(--primary-color);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    letter-spacing: 1px;
}

/* ===========================
   Section Headers
   =========================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    margin: 0 auto;
    border-radius: 2px;
}

/* ===========================
   About Section
   =========================== */

.about {
    padding: 120px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--gold-gradient);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #ccc 0%, #999 100%);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gold-gradient);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.badge-number {
    font-size: 48px;
    font-weight: 400;
    color: var(--white);
    display: block;
    font-family: 'Playfair Display', serif;
}

.badge-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* ===========================
   Products Section
   =========================== */

.products {
    padding: 120px 0;
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    background: linear-gradient(135deg, #ddd 0%, #aaa 100%);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: bicubic;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-btn {
    padding: 14px 30px;
    background: var(--gold-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .overlay-btn {
    transform: translateY(0);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-badge.premium {
    background: var(--dark-gradient);
}

.product-info {
    padding: 30px;
}

.product-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.product-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-light);
}

.product-features i {
    color: var(--primary-color);
}

.product-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.product-btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: transparent;
    color: var(--primary-color);
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 400;
    font-size: 14px;
    transition: var(--transition);
}

.product-btn:hover {
    background: var(--gold-gradient);
    color: var(--white);
    border-color: transparent;
}

/* ===========================
   Gallery Section
   =========================== */

.gallery {
    padding: 120px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    background: linear-gradient(135deg, #ccc 0%, #999 100%);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95), transparent);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: var(--primary-color);
    font-size: 14px;
}

/* ===========================
   Services Section
   =========================== */

.services {
    padding: 120px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===========================
   Testimonials Section
   =========================== */

.testimonials {
    padding: 120px 0;
    background: var(--secondary-color);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 5px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--primary-color);
    font-size: 13px;
}

/* ===========================
   Contact Section
   =========================== */

.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    width: 100%;
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: center;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    text-align: center;
}

.info-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-text p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 15px;
    color: var(--text-light);
    font-size: 15px;
    pointer-events: none;
    transition: var(--transition);
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 15px;
    font-size: 12px;
    background: var(--bg-light);
    padding: 0 8px;
    color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ===========================
   Footer
   =========================== */

.footer {
    background: var(--secondary-color);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo .logo-title {
    font-size: 28px;
    font-weight: 200;
    letter-spacing: 2px;
    line-height: 1;
}

.footer-logo .logo-subtitle {
    font-size: 11px;
    font-weight: 200;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}

.footer-logo i {
    font-size: 32px;
    color: #ff6b00;
    animation: fireFlicker 0.3s ease-in-out infinite;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold-gradient);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ===========================
   Animations
   =========================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 1200px) {
    .hero-title {
        font-size: 60px;
    }
    
    .elegant-line {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 40px;
    }
}

/* ===========================
   Floating Social Buttons
   =========================== */

.floating-social {
    position: fixed;
    right: 30px;
    top: 80%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-float {
    width: 55px;
    height: 55px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-float.whatsapp::before {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-float.phone::before {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.social-float.instagram::before {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-float:hover::before {
    transform: scale(1);
}

.social-float i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-float:hover i {
    transform: scale(1.1);
}

.social-float:active {
    transform: translateY(-3px) scale(1.05);
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 992px) {
    .navbar {
    max-height: 80px;
    padding: 12px 0;
}
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 12px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .cta-btn {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .info-items {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .floating-social {
        right: 15px;
        gap: 12px;
    }
    
    .social-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .elegant-line {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}


/* ===========================
   Blog Page
   =========================== */

.blog-hero{
  position: relative;
  padding: 140px 0 80px;
  background: var(--bg-dark);
  overflow: hidden;
}
.blog-hero-bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  filter: saturate(0.95) contrast(1.05);
  transform: scale(1.02);
}
.blog-hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(10,10,10,0.9) 100%),
    radial-gradient(ellipse at 50% 35%, rgba(212,175,55,0.18) 0%, transparent 60%);
}
.blog-hero-content{
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.blog-breadcrumb{
  display:flex;
  justify-content:center;
  gap:10px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.blog-breadcrumb a{
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: var(--transition);
}
.blog-breadcrumb a:hover{ color: var(--primary-color); }

.blog-hero-title{
  font-size: 64px;
  margin-bottom: 15px;
}
.blog-hero-subtitle{
  color: rgba(255,255,255,0.78);
  letter-spacing: 1.5px;
  font-weight: 200;
  margin-bottom: 28px;
}
.blog-hero-actions{
  display:flex;
  gap: 14px;
  justify-content:center;
  flex-wrap: wrap;
}

.blog-wrap{
  padding: 100px 0;
  background: var(--bg-light);
}
.blog-layout{
  display:grid;
  grid-template-columns: 1.6fr 0.7fr;
  gap: 40px;
  align-items: start;
}

.blog-header-row{
  display:flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 35px;
}
.blog-title{
  font-size: 40px;
  margin: 10px 0 14px;
  color: var(--text-dark);
}
.blog-sort{
  display:flex;
  align-items:center;
  gap: 10px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.18);
  padding: 10px 14px;
  border-radius: 14px;
}
.blog-page{ padding: 120px 0 90px; background: var(--bg-light); }

.blog-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.post-card{
  background: var(--white);
  border-radius: 20px;
  overflow:hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.post-card:hover{
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.post-thumb{
  position:relative;
  display:block;
  height: 230px;
  overflow:hidden;
}
.post-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  transition: var(--transition);
  background: linear-gradient(135deg, #ddd 0%, #aaa 100%);
}
.post-card:hover .post-thumb img{ transform: scale(1.08); }

.post-badge{
  position:absolute;
  top: 16px;
  right: 16px;
  padding: 8px 14px;
  border-radius: 50px;
  background: var(--primary-color);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.post-badge.premium{ background: var(--dark-gradient); }

.post-body{ padding: 22px 22px 18px; }
.post-title{ font-size: 18px; margin-bottom: 10px; }
.post-title a{ text-decoration:none; color: var(--text-dark); transition: var(--transition); }
.post-title a:hover{ color: var(--primary-color); }

.post-excerpt{
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.post-read{
  text-decoration:none;
  color: var(--primary-color);
  font-weight: 500;
  letter-spacing: .2px;
  transition: var(--transition);
}
.post-read:hover{ color: #b8941e; }

@media (max-width: 992px){
  .blog-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px){
  .blog-grid{ grid-template-columns: 1fr; }
}

/* =========================
   BLOG DETAIL
========================= */

.blog-detail{
  padding: 140px 0 100px;
  background: var(--bg-light);
}

.blog-detail-header{
  max-width: 860px;
  margin: 0 auto 60px;
  text-align: center;
}

.blog-category{
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(212,175,55,0.12);
  color: var(--primary-color);
}

.blog-detail-header h1{
  font-size: 48px;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.blog-intro{
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
}

/* Content */

.blog-detail-content{
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2;
  color: var(--text-dark);
}

.blog-detail-content h2{
  font-size: 26px;
  margin: 60px 0 16px;
  color: var(--text-dark);
}

.blog-detail-content p{
  margin-bottom: 22px;
  color: var(--text-light);
}

/* subtle divider feeling */
.blog-detail-content h2::before{
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold-gradient);
  margin-bottom: 14px;
  border-radius: 2px;
}

/* Responsive */

@media (max-width: 768px){
  .blog-detail{
    padding: 120px 0 80px;
  }

  .blog-detail-header h1{
    font-size: 34px;
  }

  .blog-detail-content h2{
    font-size: 22px;
  }
}

/* =========================
   FADE IN ANIMATION
========================= */

.fade-in{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s ease;
}

.fade-in.show{
  opacity: 1;
  transform: translateY(0);
}

/* gecikmeler */
.delay-1{ transition-delay: .15s; }
.delay-2{ transition-delay: .3s; }
.delay-3{ transition-delay: .45s; }
.delay-4{ transition-delay: .6s; }
