/* Base Styles */
:root {
    --primary-color: #1b1b1b;     /* Koyu siyah tonu */
    --primary-dark: #0a0a0a;      /* Daha koyu siyah tonu */
    --primary-light: #2c2c2c;     /* Biraz daha açık siyah */
    --secondary-color: #444444;   /* Orta ton gri */
    --accent-color: #d4af37;      /* Altın/sarı ton - aksana */
    --accent-light: #e5c964;      /* Daha açık altın ton */
    --accent-dark: #b69220;       /* Daha koyu altın ton */
    --dark-color: #0a0a0a;        /* Çok koyu siyah */
    --light-color: #f5f5f5;       /* Açık gri */
    --gray-color: #888888;        /* Orta gri */
    --text-color: #333333;        /* Ana metin rengi */
    --text-muted: #6c757d;        /* Soluk metin rengi */
    --text-dark: #212529;         /* Koyu metin rengi */
    --text-body: #495057;         /* Gövde metin rengi */
    --white: #ffffff;             /* Beyaz */
    --border-color: #dee2e6;      /* Kenar rengi */
    --success: #2ecc71;           /* Başarı rengi */
    --warning: #f39c12;           /* Uyarı rengi */
    --danger: #e74c3c;            /* Tehlike/hata rengi */
    --info: #3498db;              /* Bilgi rengi */
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 6px;
    --border-radius-lg: 8px;
    --border-radius-sm: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

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

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.bg-light {
    background-color: var(--light-color);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background-color: transparent;
}

header.scrolled {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    padding: 15px 0;
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    transition: var(--transition);
}

.logo span {
    color: var(--accent-color);
}

header.scrolled .logo a {
    color: var(--dark-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

header.scrolled nav ul li a {
    color: var(--dark-color);
}

.mobile-nav-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

header.scrolled .mobile-nav-toggle {
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?w=1600&auto=format&fit=crop&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 0;
    gap: 40px;
}

.hero-left {
    flex: 1;
    min-width: 300px;
    text-align: left;
    animation: fadeInLeft 1s ease-out;
}

.hero-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 600px;
}

.text-accent {
    color: var(--accent-color);
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-accent i {
    transition: transform 0.3s ease;
    font-size: 0.9em;
}

.btn-accent:hover i {
    transform: translateX(5px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.btn-outline-light i {
    transition: transform 0.3s ease;
    font-size: 0.9em;
}

.btn-outline-light:hover i {
    transform: translateY(-3px) rotate(-10deg);
    color: var(--accent-color);
}

/* Catalog Preview Styles */
.catalog-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.catalog-preview:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.catalog-header {
    background: var(--accent-color);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.catalog-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--dark-color);
}

.catalog-tag {
    background-color: var(--dark-color);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.catalog-content {
    padding: 30px;
}

.catalog-features {
    margin-bottom: 25px;
}

.catalog-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.catalog-features li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.catalog-cta {
    text-align: center;
}

.btn-catalog {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-catalog::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: all 0.6s ease;
}

.btn-catalog:hover {
    background: var(--dark-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-catalog:hover::before {
    left: 100%;
}

.btn-catalog i {
    margin-right: 8px;
}

/* Responsive Hero Adjustments */
@media screen and (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-left, .hero-right {
        width: 100%;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
}

.feature {
    flex: 1;
    min-width: 200px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.feature i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature p {
    font-size: 0.9rem;
    color: #666;
}

/* About Section - Modern Update */
.about-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    position: relative;
}

.about-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.about-text h3::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 70px;
    width: 10px;
    height: 3px;
    background: var(--accent-color);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    position: relative;
    z-index: 1;
}

.about-text p:first-of-type::before {
    content: '360°';
    position: absolute;
    font-size: 12rem;
    opacity: 0.05;
    font-weight: 900;
    top: -100px;
    left: -20px;
    z-index: -1;
    color: var(--accent-color);
}

.about-image {
    position: relative;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    z-index: 1;
    transition: all 0.4s ease;
}

.about-image:hover img {
    transform: translate(10px, 10px);
}

.about-image:hover::before {
    transform: translate(-10px, -10px);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature:hover::after {
    width: 100%;
}

.feature i {
    font-size: 2.5rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #f5d776);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature:hover i {
    transform: scale(1.2);
}

.feature h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.feature p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #777;
}

@media screen and (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .about-text p:first-of-type::before {
        font-size: 8rem;
        top: -70px;
    }
}

/* About Stats and Badge */
.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.about-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-stats .stat-item .count-up {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
}

.about-stats .stat-item span:last-child {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.experience-badge {
    position: absolute;
    right: -20px;
    bottom: 30px;
    background: var(--accent-color);
    color: var(--dark-color);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.experience-badge span {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge small {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.2;
}

@media screen and (max-width: 768px) {
    .experience-badge {
        right: 20px;
        bottom: 20px;
        width: 80px;
        height: 80px;
    }
    
    .experience-badge span {
        font-size: 1.6rem;
    }
    
    .about-stats {
        justify-content: space-between;
    }
    
    .about-stats .stat-item {
        flex: 1;
        min-width: 120px;
    }
}

/* Products Section - Enhanced */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 60%);
    border-radius: 20px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s ease;
    z-index: -1;
}

.product-card:hover::before {
    opacity: 0.1;
    transform: scale(1);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    /* Removing transform property */
}

.product-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}

.product-badge {
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.bestseller {
    background-color: var(--accent-color);
}

.product-badge.new {
    background-color: var(--info);
    color: var(--white);
}

.product-badge.premium {
    background-color: var(--dark-color);
    color: var(--accent-color);
}

.product-badge.economic {
    background-color: var(--success);
    color: var(--white);
}

.product-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--warning);
    font-size: 0.9rem;
}

.product-rating span {
    margin-left: 6px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-features span {
    font-size: 0.9rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
}

.product-features span i {
    color: var(--success);
    margin-right: 8px;
}

.product-action {
    margin-top: auto;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.original-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-tag {
    padding: 3px 6px;
    background-color: var(--success);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
}

.product-buttons {
    display: flex;
    gap: 10px;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
    flex: 1;
    text-decoration: none;
}

.btn-product.primary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-product.secondary {
    background-color: var(--accent-color);
    color: var(--dark-color);
    border: none;
}

.btn-product.primary:hover {
    background-color: var(--primary-light);
    color: var(--white);
    border-color: var(--primary-light);
}

.btn-product.secondary:hover {
    background-color: var(--accent-dark);
}

.products .section-header {
    margin-bottom: 60px;
}

/* Product Categories Filter */
.product-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.product-filter-btn {
    background: transparent;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    color: #555;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 30px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.product-filter-btn:hover::before,
.product-filter-btn.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.product-filter-btn.active,
.product-filter-btn:hover {
    color: var(--dark-color);
}

/* Services Section - Enhanced */
.services {
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px;
}

.service-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #f0cd6c);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.4s ease;
}

.service-item:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--dark-color);
}

.service-content {
    padding: 35px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 12px;
}

.service-item h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.4s ease;
}

.service-item:hover h3:after {
    width: 80px;
}

.service-item p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-link {
    margin-top: auto;
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-item:hover .service-link {
    color: var(--dark-color);
}

.service-item:hover .service-link i {
    transform: translateX(5px);
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .service-item {
        min-height: 350px;
    }
}

/* Portfolio Section */
.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--text-color);
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.portfolio-info p {
    color: var(--light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: var(--white);
    color: var(--accent-color);
    transform: rotate(360deg);
}

/* Featured Projects Section */
.featured-projects {
    background: var(--light);
    padding: 5rem 0;
}

.featured-projects-slider {
    margin-top: 3rem;
}

.featured-project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-project:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-client {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-project {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-project:hover {
    color: var(--accent-dark);
    gap: 1rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .featured-project {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .portfolio-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .portfolio-item img {
        height: 250px;
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=1600&auto=format&fit=crop&q=80') no-repeat center center/cover;
    color: #fff;
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: #fff;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 20px;
}

.testimonial-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Section */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 15px;
    width: 30px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-item p {
    color: #666;
}

.social-links {
    display: flex;
    margin-top: 40px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo, .footer-links, .footer-newsletter {
    flex: 1;
    min-width: 250px;
}

.footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.footer-links h4, .footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-newsletter form {
    position: relative;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
}

.footer-newsletter button {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: #fff;
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    nav ul li a {
        color: var(--dark-color);
        font-size: 1.1rem;
    }
    
    .about-content, .contact-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .product-grid, .services-grid, .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 576px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* Animasyon Tanımlamaları */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@keyframes rotate {
    from { transform: none; }
    to { transform: none; }
}

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

/* Animasyonlu Hero Bölümü */
.hero-content h1 {
    animation: fadeInUp 1s ease-out;
}

.hero-content h2 {
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

/* Geliştirilmiş Header */
.logo a {
    position: relative;
    overflow: hidden;
}

.logo span {
    position: relative;
    display: inline-block;
    animation: pulse 2s infinite;
}

/* Animasyonlu Özellikler */
.feature {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.feature:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
    background-size: 50% 100%;
    background-repeat: no-repeat;
    visibility: hidden;
}

.feature:hover::before {
    visibility: visible;
}

.feature i {
    transition: transform 0.5s ease;
}

.feature:hover i {
    transform: rotate(360deg);
    color: var(--accent-color);
}

/* Animasyonlu Ürün Kartları */
.product-card {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.1), transparent);
    z-index: -1;
    transition: height 0.5s ease;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card:hover::after {
    height: 100%;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.7s ease;
    z-index: 1;
}

.product-card:hover .product-image::before {
    left: 150%;
    transition: left 0.7s ease;
}

.product-details h3 {
    position: relative;
    display: inline-block;
}

.product-details h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.product-card:hover .product-details h3::after {
    width: 100%;
}

.product-features span {
    transition: all 0.3s ease;
    transform: translateX(0);
}

.product-card:hover .product-features span {
    /* Removing transform: translateX(5px); - keeping the color change */
    color: #333;
}

.product-features span i {
    color: var(--accent-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.product-card:hover .product-features span i {
    /* Removing transform property */
}

/* Animasyonlu Hizmet Kutuları */
.service-item {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.service-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-item:hover::before {
    transform: translateY(0);
}

.service-item i {
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.service-item:hover i {
    transform: rotate(15deg) scale(1.2);
    color: var(--accent-color);
}

.service-item h3 {
    position: relative;
    transition: all 0.3s ease;
}

.service-item:hover h3 {
    color: var(--accent-color);
}

/* Animasyonlu Portfolyo Öğeleri */
.portfolio-item {
    transition: all 0.4s ease;
    transform-origin: center;
}

.portfolio-item:hover {
    transform: scale(1.03);
    z-index: 2;
}

.portfolio-overlay {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-item:hover .portfolio-overlay {
    transform: scale(1);
    opacity: 1;
}

.portfolio-info h3 {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease 0.1s;
}

.portfolio-item:hover .portfolio-info h3 {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-info p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.portfolio-item:hover .portfolio-info p {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-link {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease 0.3s;
}

.portfolio-item:hover .portfolio-link {
    opacity: 1;
    transform: scale(1);
}

.portfolio-link:hover {
    transform: rotate(45deg);
}

/* Animasyonlu Filtre Butonları */
.filter-btn {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
    opacity: 0.8;
}

.filter-btn:hover::before {
    width: 150%;
    height: 150%;
}

.filter-btn.active {
    transform: scale(1.1);
}

/* Animasyonlu Müşteri Yorumları */
.testimonial-content {
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: 'Georgia', serif;
    line-height: 1;
    opacity: 0;
    transition: all 0.5s ease;
}

.testimonial-content:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content:hover::before {
    opacity: 1;
}

.testimonial-author {
    transition: all 0.3s ease;
}

.testimonial-author img {
    transition: all 0.3s ease;
}

.testimonial-content:hover .testimonial-author img {
    transform: scale(1.1);
    border: 2px solid var(--accent-color);
}

/* Animasyonlu İletişim Formu */
.form-group {
    position: relative;
    overflow: hidden;
}

.form-group input, 
.form-group textarea {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
}

.form-group input:focus, 
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.form-group input:focus::placeholder, 
.form-group textarea:focus::placeholder {
    opacity: 0.5;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

button[type="submit"] {
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

button[type="submit"]::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: width 0.3s ease;
}

button[type="submit"]:hover::after {
    width: 100%;
}

/* Animasyonlu İletişim Bilgileri */
.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2) rotate(15deg);
}

/* Animasyonlu Sosyal Medya İkonları */
.social-links a {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0) 80%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-links a:hover::before {
    opacity: 1;
}

/* Animasyonlu Footer */
.footer-logo a {
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-logo a:hover {
    transform: scale(1.1);
}

.footer-links ul li a {
    position: relative;
    transition: all 0.3s ease;
}

.footer-links ul li a::before {
    content: '⟩';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    left: -10px;
}

.footer-newsletter form {
    overflow: hidden;
    position: relative;
}

.footer-newsletter input {
    transition: all 0.3s ease;
}

.footer-newsletter input:focus {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-newsletter button {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-newsletter button:hover {
    transform: rotate(15deg) scale(1.1);
}

/* JavaScript ile Etkileşimli Sınıflar */
.will-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate {
    opacity: 1;
    transform: translateY(0);
}

.animate-fast {
    animation: quickPulse 0.5s ease-in-out;
}

@keyframes quickPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Müşteri Yorumları Geliştirmeleri */
.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

.testimonial-dots .dot:hover {
    background-color: rgba(212, 175, 55, 0.7);
}

.testimonial-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Form Doğrulama Stilleri */
.form-group input.error,
.form-group textarea.error {
    border-color: var(--error-color);
    background-color: rgba(231, 76, 60, 0.05);
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.2);
}

.form-group input.valid,
.form-group textarea.valid {
    border-color: var(--success-color);
    background-color: rgba(46, 204, 113, 0.05);
    box-shadow: 0 0 5px rgba(46, 204, 113, 0.2);
}

.error-message {
    color: var(--error-color);
    font-size: 0.8rem;
    margin-top: 5px;
    padding-left: 2px;
    animation: fadeIn 0.3s ease;
}

.form-success {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--success-color);
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    animation: fadeIn 0.3s ease;
    transition: opacity 0.3s ease;
}

.form-success i {
    margin-right: 5px;
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* İstatistik Sayaç Stilleri */
.count-up {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    margin: 50px 0;
}

.stat-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Catalog Animation Classes */
.catalog-animate {
    animation: floatCatalog 5s ease-in-out infinite;
}

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

.catalog-features li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-icon-hover {
    animation: iconPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff !important;
}

@keyframes iconPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1);
    }
}

.btn-pulse {
    animation: buttonPulse 1s ease;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* WhatsApp Contact Styles */
.whatsapp-contact {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-contact i {
    font-size: 1.2rem;
    margin-right: 6px;
}

.whatsapp-contact:hover {
    color: #128C7E;
    transform: translateY(-2px);
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-sticky i {
    font-size: 2.5rem;
}

.whatsapp-sticky:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: #128C7E;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Ensure the sticky button is responsive */
@media screen and (max-width: 768px) {
    .whatsapp-sticky {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-sticky i {
        font-size: 2rem;
    }
}

/* Sales and Rental Section Styles */
.sales-rental {
    position: relative;
    overflow: hidden;
}

.sales-rental::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55l-1 1.732-17.32-10L82 4l17.32 10zm-80 80l-1 1.732-17.32-10L2 84l17.32 10zm96.546-75.84l-1.732 1-10-17.32 1.732-1 10 17.32zm-100 100l-1.732 1-10-17.32 1.732-1 10 17.32zM38.16 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM60 29v2H40v-2h20zm19.32 5l-1 1.732-17.32-10L62 24l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM111 40h-2V20h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zM40 49v2H20v-2h20zm19.32 5l-1 1.732-17.32-10L42 44l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM91 60h-2V40h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 74l-1 1.732-17.32-10L22 64l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM71 80h-2V60h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM120 89v2h-20v-2h20zm-84.134 9.16l-1.732 1-10-17.32 1.732-1 10 17.32zM51 100h-2V80h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM100 109v2H80v-2h20zm19.32 5l-1 1.732-17.32-10 1-1.732 17.32 10zM31 120h-2v-20h2v20z' fill='%23d4af37' fill-opacity='0.07' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

/* Tab Buttons */
.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.tab-btn {
    background-color: transparent;
    border: none;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.tab-btn:hover:after,
.tab-btn.active:after {
    width: 70%;
}

.tab-btn.active {
    color: var(--dark-color);
}

/* Tab Content */
.tab-content {
    position: relative;
    z-index: 1;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

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

/* Sales Grid */
.sales-grid, 
.rental-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sales-info h3,
.rental-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.sales-info h3:after,
.rental-info h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.sales-info p,
.rental-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.sales-features {
    margin-bottom: 30px;
}

.sales-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #444;
}

.sales-features li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.sales-image img,
.rental-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.sales-image:hover img,
.rental-image:hover img {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Rental Plans */
.rental-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.rental-plan {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.rental-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.rental-plan.popular {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    z-index: 2;
}

.rental-plan.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.plan-header h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.plan-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: #777;
}

.plan-features {
    list-style-type: none;
}

.plan-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.plan-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.rental-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.rental-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rental-whatsapp i {
    color: #25D366;
}

.rental-whatsapp:hover i {
    transform: scale(1.2);
}

@media screen and (max-width: 992px) {
    .sales-grid, 
    .rental-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rental-image {
        order: -1;
    }
    
    .rental-plans {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .rental-plan.popular {
        transform: scale(1);
    }
    
    .rental-plan.popular:hover {
        transform: translateY(-10px);
    }
}

@media screen and (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    .tab-btn:after {
        width: 0;
    }
    
    .tab-btn.active:after {
        width: 30%;
    }
    
    .rental-plans {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Footer Styles */
footer {
    background-color: var(--dark-color);
    padding: 60px 0 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin: 10px 0 20px;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-menu, .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu a, .footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 12px;
}

.footer-menu a::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--accent-color);
    padding-left: 15px;
}

.footer-menu a:hover::before {
    color: var(--accent-color);
}

.footer-legal a {
    padding-left: 0;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

.footer-newsletter p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-newsletter form {
    position: relative;
    margin-bottom: 20px;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
}

.footer-newsletter button {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

.footer-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 992px) {
    .footer-content {
        gap: 40px;
    }
    
    .footer-column {
        flex: 1 0 40%;
    }
}

@media screen and (max-width: 768px) {
    .footer-column {
        flex: 1 0 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
    outline: none;
}

.form-group select option {
    padding: 10px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-form h3 {
    margin-bottom: 30px;
    color: var(--dark-color);
    font-size: 28px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    background: #fff;
    outline: none;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 15px;
    padding-right: 45px;
}

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

.contact-form button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-form button:hover::before {
    left: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 14px;
}

.form-group .input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.form-group input:focus + .input-icon,
.form-group select:focus + .input-icon {
    color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-form h3 {
        font-size: 24px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
    }
} 

/* Product Details Page Styles */
.product-details {
    padding: 70px 0;
    background-color: #fff;
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .product-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.product-gallery {
    position: relative;
}

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

.product-main-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

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

.product-thumbnails {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.thumbnail.active {
    border-color: var(--accent-color);
}

.thumbnail:hover {
    transform: translateY(-3px);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-info h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.product-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.product-meta {
    display: flex;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.product-meta span {
    display: inline-flex;
    align-items: center;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--gray-color);
}

.discount-badge {
    background-color: #f5593d;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-availability {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-availability i {
    font-size: 1.1rem;
}

.product-short-desc {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--secondary-color);
    font-size: 1.05rem;
}

.product-features {
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.product-features h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.product-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 576px) {
    .product-features ul {
        grid-template-columns: 1fr;
    }
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.product-features li i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.product-actions {
    margin-top: 25px;
}

.quantity-selector {
    margin-bottom: 25px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
}

.quantity-controls {
    display: flex;
    align-items: center;
    max-width: 150px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.qty-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.qty-btn.minus {
    border-radius: 5px 0 0 5px;
}

.qty-btn.plus {
    border-radius: 0 5px 5px 0;
}

.quantity-controls input {
    width: 70px;
    height: 44px;
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

@media (max-width: 576px) {
    .action-buttons {
        flex-direction: column;
    }
}

.action-buttons .btn {
    flex: 1;
    padding: 14px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-buttons .btn i {
    margin-right: 8px;
}

.action-buttons .btn-outline:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.product-contact {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

@media (max-width: 576px) {
    .product-contact {
        flex-direction: column;
    }
}

.btn-contact, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    justify-content: center;
}

.btn-contact {
    background-color: var(--secondary-color);
    color: white;
}

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

.btn-contact:hover, .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-contact i, .btn-whatsapp i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Product Details Tabs */
.product-details-tabs {
    margin-top: 60px;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 25px;
    font-weight: 600;
    color: var(--secondary-color);
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-btn:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: var(--dark-color);
}

.tab-btn:hover:after {
    width: 100%;
}

.tab-btn.active {
    color: var(--dark-color);
}

.tab-btn.active:after {
    width: 100%;
}

@media (max-width: 768px) {
    .tab-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
        gap: 0;
    }
    
    .tab-btn {
        padding: 12px 15px;
        white-space: nowrap;
        font-size: 0.9rem;
    }
}

/* Description Tab */
.product-description {
    color: var(--text-color);
    line-height: 1.7;
}

.product-description h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.product-description p {
    margin-bottom: 20px;
}

.description-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

/* Specifications Tab */
.product-specifications {
    color: var(--text-color);
}

.spec-group {
    margin-bottom: 30px;
}

.spec-group h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.spec-table th, .spec-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.spec-table th {
    width: 40%;
    font-weight: 600;
    color: var(--dark-color);
}

.package-content {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.package-content li {
    position: relative;
    padding-left: 20px;
}

.package-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Videos Tab */
.product-videos {
    color: var(--text-color);
}

.product-videos h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-description h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* Reviews Tab */
.product-reviews {
    color: var(--text-color);
}

.review-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .review-summary {
        flex-direction: column;
        gap: 20px;
    }
}

.review-avg {
    flex-shrink: 0;
    text-align: center;
}

.avg-rating {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.total-reviews {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.review-bars {
    flex-grow: 1;
}

.review-bar {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.star-label {
    width: 70px;
    font-size: 0.9rem;
}

.progress-bar {
    flex-grow: 1;
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    margin: 0 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #ffc107;
}

.percent {
    width: 40px;
    font-size: 0.9rem;
    text-align: right;
}

.customer-reviews h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.review-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.reviewer-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-content {
    margin-top: 10px;
    line-height: 1.6;
}

/* Related Products Section */
.related-products {
    background-color: #f9f9f9;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

.product-card:hover .product-image img {
    /* Removing transform property */
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-details {
    padding: 20px;
}

.product-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.product-details p {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-product i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-product:hover {
    color: var(--primary-dark);
}

.btn-product:hover i {
    /* Removing transform property for button icon */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .product-features ul {
        grid-template-columns: 1fr;
    }
    
    .package-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .product-main {
        gap: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .product-contact {
        flex-direction: column;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        text-align: center;
        padding: 10px;
    }
}

/* Page Hero Section Styles */
.page-hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1542038784456-1ea8e935640e?w=1600&auto=format&fit=crop&q=80') no-repeat center center/cover;
    padding: 150px 0 70px;
    margin-top: -100px;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 30px;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

/* Page Hero Variants */
.page-hero.products-hero {
    background-image: url('https://images.unsplash.com/photo-1542038784456-1ea8e935640e?w=1600&auto=format&fit=crop&q=80');
}

.page-hero.details-hero {
    background-image: url('https://images.unsplash.com/photo-1520549233664-03f65c1d1327?w=1600&auto=format&fit=crop&q=80');
}

/* Product Details Styles */
.product-details {
    padding: 80px 0;
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.product-main-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.product-thumbnails {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail.active {
    border-color: var(--accent-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.product-meta span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-price {
    margin-bottom: 25px;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.old-price {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 10px;
}

.discount-badge {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--success);
    color: var(--white);
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 10px;
}

.product-availability {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--success);
}

.product-availability i {
    margin-right: 8px;
}

.product-short-desc {
    margin-bottom: 25px;
}

.product-short-desc p {
    color: var(--text-body);
    line-height: 1.6;
}

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

.product-features h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-features ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.product-features li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-body);
}

.product-features li i {
    color: var(--accent-color);
    margin-right: 8px;
}

.product-actions {
    margin-bottom: 25px;
}

.quantity-selector {
    margin-bottom: 15px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.quantity-controls {
    display: flex;
    align-items: center;
    max-width: 150px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.qty-btn:hover {
    background-color: var(--border-color);
}

.quantity-controls input {
    width: 70px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    text-align: center;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.action-buttons .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-buttons .btn i {
    margin-right: 8px;
}

.product-contact {
    display: flex;
    gap: 15px;
}

.btn-contact, .btn-whatsapp {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-contact {
    background-color: var(--light-color);
    color: var(--text-dark);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-contact:hover, .btn-whatsapp:hover {
    opacity: 0.9;
}

.btn-contact i, .btn-whatsapp i {
    margin-right: 8px;
}

/* Breadcrumb Styles */
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    margin-top: 15px;
    list-style: none;
    background-color: transparent;
}

.breadcrumb-item {
    font-size: 0.95rem;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 10px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    display: inline-block;
    padding-right: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

/* About Page Sidebar Styles */
.about-sidebar {
    padding-left: 20px;
}

@media (max-width: 992px) {
    .about-sidebar {
        padding-left: 0;
        margin-top: 50px;
    }
}

.sidebar-widget {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.sidebar-widget h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Timeline Widget */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background-color: var(--accent-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
}

.timeline-date {
    position: absolute;
    left: -40px;
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 600;
    font-size: 14px;
    z-index: 1;
}

.timeline-content {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Testimonial Widget */
.testimonial-quote {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.testimonial-quote i {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.testimonial-quote p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid var(--accent-color);
}

.testimonial-author h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
}

.testimonial-author span {
    font-size: 13px;
    color: #777;
}

/* Quick Contact Widget */
.quick-contact .contact-item {
    display: flex;
    margin-bottom: 15px;
}

.quick-contact .contact-item i {
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px;
}

.quick-contact .contact-item h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.quick-contact .contact-item p {
    margin-bottom: 0;
    font-size: 14px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

/* Instagram Feed Widget */
.instagram-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.insta-item {
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.insta-item:hover img {
    transform: scale(1.1);
}

/* Responsive adjustments for the about page */
@media (max-width: 768px) {
    .about-sidebar {
        margin-top: 40px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .timeline-content {
        padding: 12px;
    }
    
    .instagram-feed {
        gap: 5px;
    }
    
    .insta-item img {
        height: 70px;
    }
}

/* About Page Sidebar Navigation */
.sidebar-nav {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-nav h3 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.sidebar-nav h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar-menu li a {
    padding: 12px 15px;
    display: block;
    color: var(--text-color);
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sidebar-menu li.active {
    background-color: var(--primary-color);
}

.sidebar-menu li.active a {
    color: #fff;
}

.sidebar-menu li:hover:not(.active) {
    background-color: #f5f5f5;
}

.sidebar-menu li:hover:not(.active) a {
    color: var(--primary-color);
}

/* About Tab Content */
.about-content-wrapper {
    position: relative;
    min-height: 600px;
}

.about-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.about-tab-content.active {
    display: block;
    opacity: 1;
    position: relative;
    animation: fadeIn 0.5s ease forwards;
}

/* Mission and Vision Section */
.mission-vision-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.mission-card, .vision-card {
    position: relative;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mission-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-item i {
    color: var(--accent-color);
    font-size: 18px;
}

.vision-quote {
    margin-top: 25px;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 5px;
    padding: 20px;
    position: relative;
}

.vision-quote i {
    color: var(--accent-color);
    font-size: 25px;
    opacity: 0.7;
    margin-bottom: 10px;
    display: block;
}

.vision-quote blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

.vision-quote cite {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

/* Production Process */
.production-process {
    margin-top: 30px;
}

.process-step {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: var(--accent-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.step-content {
    flex: 1;
    padding-right: 30px;
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.step-image {
    flex: 1;
    min-width: 300px;
    border-radius: 5px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.process-step:hover .step-image img {
    transform: scale(1.05);
}

.production-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-box {
    background-color: #f5f5f5;
    padding: 25px 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-color);
    color: #fff;
}

.stat-box span {
    font-size: 30px;
    font-weight: 700;
}

.stat-box p {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 16px;
}

.join-team-section {
    margin-top: 40px;
}

.join-team-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .production-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-content {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .mission-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-tab-content {
        position: relative;
    }
    
    .production-stats {
        grid-template-columns: 1fr;
    }
    
    .sidebar-menu li a {
        padding: 10px;
    }
    
    .process-step {
        padding: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-image {
        min-width: auto;
    }
    
    .step-image img {
        height: 150px;
    }
    
    .stat-box span {
        font-size: 24px;
    }
}

/* About Page Sidebar Navigation - Improved Positioning */
.about-main .row {
    display: flex;
    flex-wrap: wrap;
}

.about-sidebar {
    position: sticky;
    top: 100px;
    height: 100%;
    padding-right: 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.about-content-wrapper {
    position: relative;
    min-height: 600px;
    transition: all 0.3s ease;
    padding-left: 20px;
}

.sidebar-nav {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 25px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar-menu li a {
    padding: 12px 15px;
    display: block;
    color: var(--text-color);
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sidebar-menu li.active {
    background-color: var(--primary-color);
}

.sidebar-menu li.active a {
    color: #fff;
}

.sidebar-menu li:hover:not(.active) {
    background-color: #f5f5f5;
}

.sidebar-menu li:hover:not(.active) a {
    color: var(--primary-color);
}

/* Responsive adjustments for sidebar */
@media (max-width: 992px) {
    .about-sidebar {
        position: relative;
        top: 0;
        padding-right: 0;
        border-right: none;
        margin-bottom: 30px;
    }
    
    .about-content-wrapper {
        padding-left: 0;
    }
    
    .sidebar-nav {
        margin-bottom: 20px;
    }
}

/* Content Cards and Headers */
.content-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.content-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.content-header h2 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-header h2 i {
    color: var(--accent-color);
    font-size: 24px;
}

.content-header .lead {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

/* Improved sidebar menu */
.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 15px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu li.active a {
    color: #fff;
    border-left: 3px solid #fff;
}

.sidebar-menu li:hover:not(.active) a {
    border-left: 3px solid var(--accent-color);
}

.sidebar-menu li a i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .content-card {
        padding: 20px;
    }
    
    .content-header h2 {
        font-size: 24px;
    }
    
    .content-header .lead {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .content-card {
        padding: 15px;
    }
    
    .content-header {
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .content-header h2 {
        font-size: 20px;
    }
    
    .content-header .lead {
        font-size: 15px;
    }
}

/* About Page Sidebar Layout Improvements */
.about-main .row {
    display: flex;
    flex-wrap: wrap;
}

.about-sidebar {
    position: sticky;
    top: 100px;
    height: 100%;
    padding-right: 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.about-content-wrapper {
    position: relative;
    min-height: 500px;
    transition: all 0.3s ease;
    padding-left: 20px;
}

.about-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-tab-content.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive layout adjustments */
@media (max-width: 992px) {
    .about-sidebar {
        position: relative;
        top: 0;
        padding-right: 0;
        border-right: none;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .about-content-wrapper {
        padding-left: 0;
        width: 100%;
    }
    
    .sidebar-nav {
        margin-bottom: 20px;
    }
    
    /* Mobile tab menu style */
    .sidebar-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    .sidebar-menu li {
        margin-bottom: 5px;
        width: calc(50% - 5px);
    }
    
    .sidebar-menu li a {
        text-align: center;
        padding: 10px 5px;
        font-size: 14px;
    }
    
    .sidebar-menu li a i {
        margin-right: 5px;
    }
}

@media (max-width: 576px) {
    .sidebar-menu li {
        width: 100%;
    }
}

/* About page layout improvements */
.about-container {
    display: flex;
    flex-wrap: wrap;
}

.about-sidebar-col {
    flex: 0 0 25%;
    max-width: 25%;
}

.about-content-col {
    flex: 0 0 75%;
    max-width: 75%;
}

.about-sidebar {
    position: sticky;
    top: 100px;
    padding-right: 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    height: calc(100vh - 150px);
}

.sidebar-nav {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 25px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--text-color);
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border-left: 3px solid transparent;
}

.sidebar-menu li a span {
    margin-left: 10px;
}

.sidebar-menu li.active {
    background-color: var(--primary-color);
}

.sidebar-menu li.active a {
    color: #fff;
    border-left: 3px solid #fff;
}

.sidebar-menu li:hover:not(.active) {
    background-color: #f5f5f5;
}

.sidebar-menu li:hover:not(.active) a {
    color: var(--primary-color);
    border-left: 3px solid var(--accent-color);
}

.about-content-wrapper {
    padding-left: 20px;
}

.about-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-tab-content.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile layout adjustments */
@media (max-width: 992px) {
    .about-sidebar-col, 
    .about-content-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .about-sidebar {
        position: relative;
        top: 0;
        padding-right: 0;
        border-right: none;
        margin-bottom: 20px;
        height: auto;
    }
    
    .about-content-wrapper {
        padding-left: 0;
    }
    
    .sidebar-nav {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    /* Mobile tab menu style */
    .sidebar-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .sidebar-menu li {
        margin-bottom: 0;
        width: calc(50% - 5px);
    }
    
    .sidebar-menu li a {
        text-align: center;
        padding: 10px 5px;
        font-size: 14px;
        justify-content: center;
        border-left: none;
        border-bottom: 3px solid transparent;
    }
    
    .sidebar-menu li.active a {
        border-left: none;
        border-bottom: 3px solid #fff;
    }
    
    .sidebar-menu li:hover:not(.active) a {
        border-left: none;
        border-bottom: 3px solid var(--accent-color);
    }
    
    .sidebar-menu li a i {
        font-size: 16px;
    }
    
    .sidebar-menu li a span {
        display: none;
    }
}

@media (max-width: 576px) {
    .sidebar-menu li {
        width: 100%;
    }
    
    .sidebar-menu li a {
        justify-content: flex-start;
        text-align: left;
        padding: 12px 15px;
    }
    
    .sidebar-menu li a span {
        display: inline-block;
    }
}

/* Services Page Styles */
.service-detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-content-detail {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.service-content-detail h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-content-detail h3 i {
    color: var(--accent-color);
    font-size: 22px;
}

.service-content-detail p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features, 
.service-benefits {
    margin-bottom: 25px;
}

.service-features h4,
.service-benefits h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-features ul,
.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-features li,
.service-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-features li i,
.service-benefits li i {
    color: var(--accent-color);
    font-size: 16px;
    margin-top: 3px;
}

.service-cta {
    margin-top: 30px;
    text-align: center;
}

.service-cta .btn {
    padding: 12px 25px;
    font-size: 16px;
}

/* Responsive adjustments for services page */
@media (min-width: 992px) {
    .service-detail {
        flex-direction: row;
    }
    
    .service-image {
        flex: 0 0 40%;
    }
    
    .service-content-detail {
        flex: 0 0 60%;
    }
}

@media (max-width: 768px) {
    .service-content-detail {
        padding: 15px;
    }
    
    .service-content-detail h3 {
        font-size: 20px;
    }
    
    .service-features h4,
    .service-benefits h4 {
        font-size: 16px;
    }
    
    .service-cta .btn {
        width: 100%;
    }
}

/* Products Page Styles */
.products-main {
    position: relative;
}

/* Products Layout */
.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

/* Products Header and Controls */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.products-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.products-count {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.products-count span {
    font-weight: 600;
    color: var(--text-dark);
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.products-sort label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--white);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:hover,
.sort-select:focus {
    border-color: var(--primary);
    outline: none;
}

/* Products Sidebar */
.products-sidebar {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    height: max-content;
}

.filter-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.filter-categories,
.filter-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-categories li,
.filter-features li {
    margin-bottom: 0.75rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-body);
    transition: color 0.3s ease;
}

.filter-checkbox:hover {
    color: var(--primary);
}

.filter-checkbox input[type="checkbox"] {
    margin-right: 0.5rem;
    cursor: pointer;
}

.price-range-slider {
    padding: 0.5rem 0;
}

.price-inputs {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.price-inputs input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.875rem;
}

.price-inputs span {
    color: var(--text-muted);
}

.range-slider {
    position: relative;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

.range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    z-index: 2;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    pointer-events: auto;
    border: 2px solid var(--white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.slider-track {
    position: absolute;
    height: 100%;
    background-color: var(--primary);
    left: 25%;
    right: 25%;
    border-radius: 3px;
    z-index: 1;
}

.btn-filter {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-filter:hover {
    background-color: var(--primary-dark);
}

.filter-actions {
    margin-top: 1rem;
}

.btn-clear-filters {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: transparent;
    color: var(--text-body);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear-filters:hover {
    background-color: var(--light-bg);
    border-color: var(--text-muted);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.product-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    display: inline-block;
}

.product-badge.bestseller {
    background-color: var(--success);
}

.product-badge.new {
    background-color: var(--primary);
}

.product-badge.premium {
    background-color: var(--secondary);
}

.product-badge.economic {
    background-color: var(--info);
}

.product-badge.compact {
    background-color: var(--warning);
}

.btn-wishlist,
.btn-quick-view {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-wishlist:hover,
.btn-quick-view:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: scale(1.1);
}

.btn-wishlist.active {
    color: var(--primary);
}

.product-image {
    padding-top: 75%;
    position: relative;
    overflow: hidden;
    background-color: var(--light-bg);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    /* Removing transform property */
}

.product-details {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--warning);
    font-size: 0.875rem;
}

.product-rating span {
    margin-left: 0.5rem;
    color: var(--text-muted);
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-features span {
    font-size: 0.875rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
}

.product-features span i {
    color: var(--success);
    margin-right: 0.5rem;
}

.product-action {
    margin-top: auto;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.original-price {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-tag {
    padding: 0.25rem 0.5rem;
    background-color: var(--success);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
}

.product-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    flex: 1;
    text-decoration: none;
}

.btn-product.primary {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-product.secondary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-product.primary:hover {
    background-color: var(--primary-light);
}

.btn-product.secondary:hover {
    background-color: var(--primary-dark);
}

.btn-product i {
    margin-right: 0.5rem;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 500;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-item:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.page-item.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.per-page {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.per-page label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.per-page select {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--white);
    font-size: 0.875rem;
    cursor: pointer;
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-view-modal.active {
    display: flex;
    opacity: 1;
}

.quick-view-container {
    background-color: var(--white);
    border-radius: 8px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalOpen 0.3s ease;
}

@keyframes modalOpen {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.quick-view-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.quick-view-close:hover {
    background-color: var(--light-bg);
    transform: rotate(90deg);
}

.quick-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.quick-view-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.main-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.thumbnail-list {
    display: flex;
    gap: 0.75rem;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.active {
    border-color: var(--primary);
}

.quick-view-details {
    display: flex;
    flex-direction: column;
}

.quick-view-details h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.quick-view-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.quick-view-rating .stars {
    color: var(--warning);
    margin-right: 0.5rem;
}

.quick-view-rating span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.quick-view-price {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 0.75rem;
}

.quick-view-price .current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.quick-view-price .original {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.quick-view-price .discount {
    padding: 0.25rem 0.75rem;
    background-color: var(--success);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 4px;
}

.quick-view-description {
    margin-bottom: 1.5rem;
}

.quick-view-description p {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.6;
}

.quick-view-features {
    margin-bottom: 1.5rem;
}

.quick-view-features h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.quick-view-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-view-features li {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
}

.quick-view-features li i {
    color: var(--success);
    margin-right: 0.5rem;
}

.quick-view-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.quantity-decrease,
.quantity-increase {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-decrease:hover,
.quantity-increase:hover {
    background-color: var(--border-color);
}

#quick-view-quantity {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
    flex: 1;
}

.btn-add-to-cart {
    flex: 1;
    padding: 0.75rem 1rem;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.btn-add-to-cart:hover {
    background-color: var(--primary-dark);
}

.btn-add-to-cart i {
    margin-right: 0.5rem;
}

.btn-add-to-wishlist {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-to-wishlist:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-add-to-wishlist.active {
    color: var(--primary);
    border-color: var(--primary);
}

.quick-view-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.quick-view-meta > div {
    font-size: 0.875rem;
    color: var(--text-body);
}

.stock-status {
    font-weight: 500;
}

.stock-status.in-stock {
    color: var(--success);
}

.stock-status.out-of-stock {
    color: var(--danger);
}

.quick-view-meta a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-view-meta a:hover {
    color: var(--primary-dark);
}

.quick-view-footer {
    display: flex;
    justify-content: center;
}

.btn-view-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background-color: var(--primary-light);
}

.btn-view-details i {
    margin-left: 0.5rem;
}

/* Accessories Section */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.accessory-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.accessory-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.accessory-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 1;
}

.accessory-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
}

.accessory-badge.new {
    background-color: var(--primary);
}

.accessory-badge.sale {
    background-color: var(--success);
}

.accessory-image {
    height: 180px;
    background-color: var(--light-bg);
}

.accessory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.accessory-card:hover .accessory-image img {
    /* Removing transform property */
}

.accessory-details {
    padding: 1.25rem;
}

.accessory-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.accessory-details p {
    font-size: 0.875rem;
    color: var(--text-body);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.accessory-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--warning);
    font-size: 0.875rem;
}

.accessory-rating span {
    margin-left: 0.5rem;
    color: var(--text-muted);
}

.accessory-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accessory-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accessory-price .current-price {
    font-size: 1.125rem;
}

.accessory-price .original-price {
    font-size: 0.875rem;
}

.accessory-buttons {
    display: flex;
    gap: 0.5rem;
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--light-bg);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text {
    margin-bottom: 2rem;
}

.newsletter-text h2 {
    margin-bottom: 1rem;
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.btn-subscribe {
    padding: 0.875rem 1.5rem;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-subscribe:hover {
    background-color: var(--primary-dark);
}

.form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-check label {
    font-size: 0.875rem;
    color: var(--text-body);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .products-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
    
    .quick-view-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-image img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .products-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .accessories-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .pagination-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quick-view-actions {
        flex-direction: column;
    }
    
    .main-image img {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .accessories-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        border-right: 1px solid var(--border-color);
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }
    
    .btn-subscribe {
        border-radius: 4px;
        width: 100%;
    }
    
    .quick-view-container {
        width: 95%;
    }
    
    .quick-view-content {
        padding: 1.5rem;
    }
    
    .main-image img {
        height: 250px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    z-index: 1050;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    max-width: 350px;
    width: 100%;
    border-left: 4px solid var(--primary);
}

.cart-notification.active {
    transform: translateX(0);
}

.cart-notification-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.cart-notification-icon i {
    color: var(--primary);
    font-size: 1.2rem;
}

.cart-notification-content {
    flex-grow: 1;
}

.notification-title {
    font-weight: 600;
    margin: 0 0 5px 0;
    font-size: 0.95rem;
}

.notification-message {
    margin: 0;
    color: var(--gray);
    font-size: 0.85rem;
}

.notification-close {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    flex-shrink: 0;
}

.notification-close:hover {
    color: var(--dark);
}

@media (max-width: 576px) {
    .cart-notification {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
}

/* Responsive Media Queries */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .product-main {
        gap: 30px;
    }
    
    .product-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .product-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-features ul {
        grid-template-columns: 1fr 1fr;
    }
    
    .product-thumbnails {
        justify-content: center;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .products-sidebar {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-main {
        gap: 30px;
    }
    
    .product-features ul {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .product-contact {
        flex-direction: column;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        text-align: center;
        padding: 10px;
    }
}

@media (max-width: 575px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .accessories-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        border-right: 1px solid var(--border-color);
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }
    
    .btn-subscribe {
        border-radius: 4px;
        width: 100%;
    }
    
    .quick-view-container {
        width: 95%;
    }
    
    .quick-view-content {
        padding: 1.5rem;
    }
    
    .main-image img {
        height: 250px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* Portfolio Page Styles */
.portfolio-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.svg') repeat;
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

.portfolio-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.portfolio-hero p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-filter {
    margin: 2rem 0;
    text-align: center;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

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

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

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--primary-color-rgb), 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-overlay p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.portfolio-overlay .btn {
    transform: translateY(20px);
    transition: transform 0.3s ease 0.2s;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p,
.portfolio-item:hover .portfolio-overlay .btn {
    transform: translateY(0);
}

.featured-projects {
    padding: 5rem 0;
    background: var(--light-bg);
}

.featured-projects-slider {
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
}

.featured-project {
    display: none;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.featured-project.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonials {
    padding: 5rem 0;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
}

.testimonial-item {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.testimonial-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 1rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-author-info h4 {
    margin: 0;
    color: var(--dark-color);
}

.testimonial-author-info p {
    margin: 0;
    color: var(--text-color);
    opacity: 0.8;
}

/* Animations */
@keyframes slide {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .portfolio-hero {
        padding: 100px 0 60px;
    }

    .portfolio-hero h1 {
        font-size: 2.5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .portfolio-hero h1 {
        font-size: 2rem;
    }

    .portfolio-hero p {
        font-size: 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-main {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 30px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    transform: translateX(10px);
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 30px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2) rotate(15deg);
    color: var(--secondary-color);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
    font-weight: 600;
}

.contact-item p {
    color: #666;
    margin-bottom: 5px;
}

.whatsapp-contact {
    display: inline-flex;
    align-items: center;
    color: #25D366;
    font-weight: 500;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.whatsapp-contact i {
    margin-right: 5px;
    color: #25D366;
}

.whatsapp-contact:hover {
    color: #128C7E;
    transform: translateX(5px);
}

.whatsapp-contact:hover i {
    color: #128C7E;
}

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.social-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #f5f5f5;
    color: var(--dark-color);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0) 80%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a:nth-child(1):hover {
    background-color: #3b5998;
    color: #fff;
}

.social-icons a:nth-child(2):hover {
    background-color: #1da1f2;
    color: #fff;
}

.social-icons a:nth-child(3):hover {
    background-color: #e1306c;
    color: #fff;
}

.social-icons a:nth-child(4):hover {
    background-color: #0077b5;
    color: #fff;
}

.social-icons a:nth-child(5):hover {
    background-color: #ff0000;
    color: #fff;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    background: #fff;
    outline: none;
    transform: translateY(-2px);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.5;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 15px;
    padding-right: 45px;
}

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

.form-group .input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + .input-icon,
.form-group select:focus + .input-icon {
    color: var(--primary-color);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 5px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.form-check label {
    font-size: 14px;
    color: #666;
}

.form-check label a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.form-check label a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form button i {
    margin-right: 10px;
    transition: all 0.3s ease;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-form button:hover i {
    transform: translateX(5px);
}

.contact-form button:hover::before {
    left: 100%;
}

/* Map Section */
.map-section {
    margin-top: 80px;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

/* Offices Section */
.offices-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.office-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.office-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.office-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.office-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.office-details {
    padding: 20px;
}

.office-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.office-info i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 3px;
}

.office-info p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
    
    .offices-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .contact-main {
        padding: 60px 0;
    }
    
    .contact-info, .contact-form {
        padding: 30px 20px;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

@media screen and (max-width: 576px) {
    .contact-main {
        padding: 40px 0;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-item i {
        margin-bottom: 10px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
}

/* Portfolio Page Modern Widgets */
.category-filter {
    padding: 3rem 0 1rem;
    background-color: var(--light-bg);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border: none;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-tab .icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.category-tab .label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.category-tab:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.category-tab:hover .icon {
    color: var(--primary);
}

.category-tab.active {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-tab.active .icon,
.category-tab.active .label {
    color: white;
}

/* Portfolio Gallery */
.portfolio-gallery {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    transition: all 0.5s ease;
}

.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 350px;
    transition: all 0.4s ease;
}

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

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

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.category-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    backdrop-filter: blur(4px);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gallery-btn span {
    margin-right: 0.5rem;
}

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

.gallery-btn:hover {
    color: var(--primary-light);
}

.gallery-btn:hover i {
    transform: translateX(5px);
}

/* Spotlight Projects */
.spotlight-projects {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.spotlight-carousel {
    position: relative;
    margin-bottom: 2rem;
}

.spotlight-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.spotlight-item.active {
    display: block;
    opacity: 1;
}

.spotlight-content {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.spotlight-visual {
    flex: 1;
    height: 500px;
}

.spotlight-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.project-category {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary);
    border-radius: 30px;
    padding: 0.4rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.spotlight-details h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.spotlight-details p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-icon {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.feature-text {
    font-weight: 500;
}

.spotlight-action {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.spotlight-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.spotlight-prev,
.spotlight-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--text-dark);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spotlight-prev:hover,
.spotlight-next:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.spotlight-dots {
    display: flex;
    gap: 0.7rem;
}

.spotlight-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.spotlight-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Testimonial Section */
.testimonial-section {
    padding: 6rem 0;
}

.testimonial-cards {
    position: relative;
    height: 350px;
    margin-bottom: 2rem;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transition: all 0.4s ease;
    display: none;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-quote i {
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.3;
}

.testimonial-quote p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.testimonial-profile {
    display: flex;
    align-items: center;
}

.profile-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
    border: 3px solid var(--primary-light);
}

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

.profile-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.profile-info p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.rating {
    color: #FFD700;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.testimonial-nav {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .spotlight-content {
        flex-direction: column;
    }
    
    .spotlight-visual {
        height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .category-tab {
        padding: 1rem;
    }
    
    .category-tab .icon {
        font-size: 1.5rem;
    }
    
    .category-tab .label {
        font-size: 0.85rem;
    }
    
    .spotlight-details {
        padding: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
    }
    
    .profile-image {
        width: 60px;
        height: 60px;
    }
    
    .spotlight-action {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
        text-align: center;
    }
} 

/* Modern Testimonials Widget */
.testimonials-widget {
    position: relative;
    background-color: var(--light-bg);
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonials-background {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--primary-light);
    opacity: 0.1;
    z-index: 0;
}

.testimonial-cards {
    position: relative;
    height: 300px;
    margin-bottom: 2rem;
    z-index: 1;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.testimonial-quote {
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial-quote i {
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.4;
}

.testimonial-quote p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    padding-left: 2rem;
    font-style: italic;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.profile-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
    border: 3px solid var(--primary-light);
}

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

.profile-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.profile-info p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-style: normal;
}

.rating {
    color: #FFD700;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial-prev,
.testimonial-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--text-dark);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.testimonial-dots {
    display: flex;
    gap: 0.7rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.testimonial-stats {
    display: flex;
    justify-content: space-between;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.stat-number span {
    font-size: 1.5rem;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .testimonial-cards {
        height: 340px;
    }
    
    .testimonial-stats {
        padding: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .testimonial-cards {
        height: 380px;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
    }
    
    .profile-image {
        width: 60px;
        height: 60px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .testimonial-cards {
        height: 440px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
} 

.footer-desc {
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
}

.newsletter-info {
    font-size: 0.8rem;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-info a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.newsletter-info a:hover {
    color: var(--primary-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding: 60px 0 40px;
}

@media screen and (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
        gap: 20px;
    }
    
    .footer-desc {
        max-width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
    }
    
    .footer-desc {
        max-width: 600px;
    }
}

@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-menu, .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-menu li, .footer-legal li {
        margin: 0 10px 10px;
    }
} 