/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --primary: #D97706;
    --primary-light: #F59E0B;
    --background: #F5F2ED;
    --foreground: #2A1810;
    --card: #FFFFFF;
    --secondary: #F3E8D3;
    --muted: #E6DDD1;
    --muted-foreground: #6B5B4F;
    --border: rgba(42, 24, 16, 0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===========================
   Loader
   =========================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader.fade-out {
    opacity: 0;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--muted);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ===========================
   Header
   =========================== */
.header {
   position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 73px;
    transition: var(--transition);

}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

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

.desktop-nav {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--foreground);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--foreground);
    font-weight: 500;
    padding: 8px 0;
    transition: var(--transition);
    font-size: 17px;
}

.dropdown-toggle:hover {
    color: var(--primary);
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 200px;
    padding: 8px 0;
}

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

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--foreground);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* Header Actions */
.header-actions {
    display: none;
    gap: 12px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--foreground);
    transition: var(--transition);
}

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

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 100%;
    height: 3px;
    background: var(--foreground);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-toggle.active .hamburger:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-toggle.active .hamburger:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
/* .mobile-menu {
    display: none;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
} */

.mobile-menu {
    /* display: none; */
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 20px var(--shadow);
    padding: 2rem;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: var(--transition);
}

.mobile-menu.active {
    transform: translateX(0);
    background-color: #fff;
}

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

.mobile-nav-menu {
    list-style: none;
    margin-bottom: 20px;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--border);
}

.mobile-nav-item .nav-link {
    display: block;
    padding: 15px 0;
}

.mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    color: var(--foreground);
    font-weight: 500;
    font-size: 17px;
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 20px;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 12px 0;
    color: var(--muted-foreground);
    transition: var(--transition);
}

.mobile-dropdown-item:hover {
    color: var(--primary);
    padding-left: 10px;
}

.mobile-actions {
    display: flex;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

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

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

/* ===========================
   Hero Section
   =========================== */
.hero {
    padding: 135px 0 60px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--background) 50%, var(--muted) 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-primary {
    color: var(--primary);
}

.hero-text {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--muted-foreground);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

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

/* ===========================
   Section Styles
   =========================== */
.section {
    padding: 80px 0;
}

.section-bg-card {
    background: var(--card);
}

.section-bg-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--background) 50%, var(--secondary) 100%);
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto;
}

/* ===========================
   Why Section
   =========================== */
.why-grid {
    display: grid;
    gap: 40px;
    align-items: stretch;
}

.images-container {
    position: relative;
    min-height: 500px;
}

.image-large {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 80%;
}

.image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.image-large img:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.image-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    height: 60%;
    z-index: 10;
}

.image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.image-small img:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3);
    z-index: 20;
    text-align: center;
}

.badge-number {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 14px;
    margin-top: 5px;
}

.features-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: rgba(243, 232, 211, 0.5);
    border-radius: 15px;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 119, 6, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(217, 119, 6, 0.2);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ===========================
   Categories Section
   =========================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.category-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

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

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 25px;
    transition: var(--transition);
}

.category-card:hover .category-content {
    background: var(--primary);
    color: white;
}

.category-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    transition: var(--transition);
}

.category-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    transition: var(--transition);
}

.category-card:hover .category-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* ===========================
   Achievement Section
   =========================== */
.achievement {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.achievement-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.achievement-image {
    position: relative;
}

.achievement-image-inner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
}

.achievement-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

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

.floating-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.floating-dot-1 {
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    animation: bounce 2s infinite;
}

.floating-dot-2 {
    bottom: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    animation: pulse 3s infinite;
}

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

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

.achievement-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.achievement-content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.start {
    display: flex;
    justify-content: center;
}
.stat-card {
    text-align: center;
}

.stat-card h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 16px;
    opacity: 0.8;
}

.stat-line {
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    margin: 10px auto 0;
}
.stat-card-1 {
    text-align: center;
}

.stat-card-1 h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card-1 p {
    font-size: 16px;
    opacity: 0.8;
}

.stat-line-1 {
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    margin: 10px auto 0;
}
/* ===========================
   Product Slider
   =========================== */
.slider-container {
    position: relative;
    margin: 0 -20px;
    padding: 0 60px;
}

.slider-wrapper {
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.product-card {
    min-width: calc(33.333% - 14px);
    background: #F5F2ED;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

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

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

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

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition);
}

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

.overlay-btn {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    transition: var(--transition);
}

.overlay-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.overlay-btn svg {
    width: 20px;
    height: 20px;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(217, 119, 6, 0.9);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: var(--transition);
}

.product-card:hover .product-name {
    color: var(--primary);
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.product-price-old {
    font-size: 14px;
    color: var(--muted-foreground);
    text-decoration: line-through;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: 10px;
}

.slider-btn-next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--muted);
    transition: var(--transition);
    cursor: pointer;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.25);
}

.slider-dot:hover {
    background: rgba(217, 119, 6, 0.5);
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-card {
    background: var(--card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.star {
    width: 20px;
    height: 20px;
}

.star svg {
    fill: var(--primary);
    stroke: var(--primary);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--foreground);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(217, 119, 6, 0.2);
}

.author-name {
    font-weight: 600;
    margin-bottom: 3px;
}

.author-role {
    font-size: 14px;
    color: var(--muted-foreground);
}

.customer-count {
    text-align: center;
    margin-top: 50px;
}

.customer-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(243, 232, 211, 0.5);
    border-radius: 20px;
    padding: 20px 35px;
}

.customer-avatars {
    display: flex;
    margin-left: -10px;
}

.customer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    margin-left: -10px;
}

.customer-avatar:first-child {
    margin-left: 0;
}

.customer-info h4 {
    font-weight: 600;
    margin-bottom: 3px;
}

.customer-info p {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ===========================
   Newsletter Section
   =========================== */
.newsletter-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.newsletter-form {
    margin: 30px 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 16px 24px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 16px;
    transition: var(--transition);
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

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

.benefit-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 14px;
    color: var(--muted-foreground);
}

.newsletter-image {
    position: relative;
}

.newsletter-image-inner {
    background: var(--card);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.newsletter-image img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

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

.newsletter-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
    animation: pulse 3s infinite;
}

.newsletter-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--foreground);
    color: white;
}

.footer-cta {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.footer-cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.footer-cta-text {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 30px;
}

.footer-cta-image {
    position: relative;
}

.footer-cta-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

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

.footer-badge {
    position: absolute;
    bottom: -20px;
    right: -15px;
    background: var(--primary);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
    text-align: center;
}

.footer-content {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.footer-desc {
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    gap: 12px;
    opacity: 0.7;
}

.contact-item svg {
    flex-shrink: 0;
    stroke: var(--primary);
    fill: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.copyright {
    opacity: 0.7;
    font-size: 14px;
}

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

.footer-legal a {
    font-size: 14px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--primary);
}

/* ===========================
   Contact Page
   =========================== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(217, 119, 6, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    fill: none;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.contact-form-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-weight: 600;
    font-size: 14px;
}

.form-field input,
.form-field textarea,
.form-field select {
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

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

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===========================
   Page-Specific Styles
   =========================== */
.page-header {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--background) 50%, var(--muted) 100%);
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--muted-foreground);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--muted-foreground);
}

/* Team Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

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

.team-card:hover .team-image {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 25px;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
}

.pricing-price span {
    font-size: 20px;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features svg {
    stroke: white;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

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

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 15px;
}

.blog-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 10px;
}

/* Portfolio/Gallery */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 25px;
    background: white;
    color: var(--foreground);
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: white;
}

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

.portfolio-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.portfolio-category {
    font-size: 14px;
    opacity: 0.9;
}

/* ===========================
   Responsive Styles
   =========================== */
@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }

    .header-actions {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .hero-grid,
    .why-grid,
    .achievement-grid,
    .newsletter-grid,
    .footer-cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        text-align: left;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title,
    .page-title {
        font-size: 42px;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .form-group {
        flex-direction: row;
    }

    .form-input {
        flex: 1;
    }

    .btn {
        width: auto;
    }

    .stat-card {
        text-align: left;
    }

    .stat-line {
        margin: 10px 0 0 0;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 48px;
    }

    .page-title {
        font-size: 56px;
    }

    .slider-container {
        padding: 0 80px;
    }

    .product-card {
        min-width: calc(33.333% - 14px);
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 110px 0 40px 0;
    }

    .page-title{
        padding-top: 40px;
    }

    .section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title,
    .page-title {
        font-size: 32px;
    }

    .page-header {
        padding: 60px 0 40px;
    }

    .images-container {
        min-height: 400px;
    }

    .slider-container {
        padding: 0 50px;
    }

    .product-card {
        min-width: 100%;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .slider-btn svg {
        width: 18px;
        height: 18px;
    }

    .testimonials-slider {
        padding: 0 50px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .contact-form-section {
        padding: 30px 20px;
    }

    .footer-cta {
        padding: 50px 0;
    }

    .footer-cta-title {
        font-size: 28px;
    }

    .footer-content {
        padding: 40px 0;
    }

    .achievement-content h2 {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card h3 {
        font-size: 36px;
    }
       .stat-card-1 h3 {
        font-size: 36px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}


