/*
Theme Name: GITEX - جیتکس
Theme URI: https://gitex.ir
Author: GITEX Team
Author URI: https://gitex.ir
Description: قالب اختصاصی شرکت جیتکس - واردکننده تخصصی پیچ سر مته. طراحی مدرن، سئو بهینه، سرعت بالا و کاملاً فارسی.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gitex
Tags: rtl, one-page, custom-logo, custom-colors, featured-images, theme-options

قالب جیتکس - واردات پیچ سر مته
*/

/* ===== CSS Variables ===== */
:root {
    --color-teal-50: #effcfc;
    --color-teal-100: #d7f6f7;
    --color-teal-200: #b3edee;
    --color-teal-300: #7fdfe2;
    --color-teal-400: #44c8cd;
    --color-teal-500: #28abb2;
    --color-teal-600: #248b96;
    --color-teal-700: #23707a;
    --color-teal-800: #245c65;
    --color-teal-900: #224d56;
    --color-teal-950: #0f3139;
    
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --color-gray-950: #0a0a0a;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Vazirmatn', system-ui, -apple-system, sans-serif;
    background-color: var(--color-gray-950);
    color: #fff;
    direction: rtl;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

ul, ol {
    list-style: none;
}

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

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #111;
}
::-webkit-scrollbar-thumb {
    background: var(--color-teal-500);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-teal-400);
}

/* ===== Container ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 171, 178, 0.1);
    border: 1px solid rgba(40, 171, 178, 0.2);
    border-radius: 9999px;
    padding: 0.375rem 1rem;
    margin-bottom: 1.5rem;
}

.section-badge span {
    color: var(--color-teal-400);
    font-size: 0.875rem;
    font-weight: 500;
}

.section-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--color-teal-400);
}

.section-desc {
    color: var(--color-gray-400);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(to left, var(--color-teal-500), var(--color-teal-600));
    color: #000;
    box-shadow: 0 10px 25px -5px rgba(40, 171, 178, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(to left, var(--color-teal-400), var(--color-teal-500));
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--color-gray-700);
    color: var(--color-gray-300);
}

.btn-outline:hover {
    border-color: var(--color-teal-500);
    color: var(--color-teal-400);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(40, 171, 178, 0.3); }
    50% { box-shadow: 0 0 40px rgba(40, 171, 178, 0.6); }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--color-gray-950);
    color: var(--color-gray-400);
    font-size: 0.875rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-gray-800);
    display: none;
}

@media (min-width: 768px) {
    .top-bar {
        display: block;
    }
}

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

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-contact svg {
    color: var(--color-teal-400);
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 20px rgba(40, 171, 178, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    position: relative;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--color-teal-400), var(--color-teal-600));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.site-logo:hover .logo-icon {
    transform: rotate(6deg);
}

.logo-icon span {
    color: #000;
    font-weight: 900;
    font-size: 1.25rem;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: var(--color-teal-400);
    border-radius: 50%;
    opacity: 0.6;
}

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

.logo-text .brand-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.1em;
}

.logo-text .brand-name span {
    color: var(--color-teal-400);
}

.logo-text .brand-tagline {
    font-size: 0.625rem;
    color: rgba(40, 171, 178, 0.8);
    letter-spacing: 0.15em;
    margin-top: -2px;
}

/* Navigation */
.main-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }
}

.main-nav a {
    padding: 0.5rem 1rem;
    color: var(--color-gray-300);
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--color-teal-400);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--color-teal-400);
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    margin-right: 1rem;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(to left, var(--color-teal-500), var(--color-teal-600));
    color: #000;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(40, 171, 178, 0.25);
}

.nav-cta:hover {
    background: linear-gradient(to left, var(--color-teal-400), var(--color-teal-500));
}

.nav-cta::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    padding: 0.5rem;
    color: #fff;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-nav {
    display: none;
    background: var(--color-gray-950);
    border-top: 1px solid var(--color-gray-800);
    padding: 1rem;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-gray-300);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
}

.mobile-nav a:hover {
    color: var(--color-teal-400);
    background: var(--color-gray-900);
}

.mobile-nav .nav-cta {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    margin-right: 0;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(10,10,10,0.8), var(--color-gray-950));
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-shape-1 {
    top: 5rem;
    right: 5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(40, 171, 178, 0.05);
    animation: float 3s ease-in-out infinite;
}

.hero-shape-2 {
    bottom: 8rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(40, 171, 178, 0.05);
    animation: float 3s ease-in-out infinite 0.3s;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: linear-gradient(rgba(40,171,178,1) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(40,171,178,1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 171, 178, 0.1);
    border: 1px solid rgba(40, 171, 178, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 2rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-teal-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-badge span {
    color: var(--color-teal-400);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-gradient {
    background: linear-gradient(to left, var(--color-teal-300), var(--color-teal-400), var(--color-teal-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

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

.hero-desc {
    font-size: 1.125rem;
    color: var(--color-gray-400);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .hero-desc {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-buttons .btn {
    font-size: 1.125rem;
}

.hero-stats {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

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

.hero-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-teal-400);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .hero-stat-number {
        font-size: 2.5rem;
    }
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(40, 171, 178, 0.5);
    animation: bounce 2s ease-in-out infinite;
}

/* ===== About Section ===== */
.about-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(40, 171, 178, 0.3), transparent);
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.8), transparent);
}

.about-image-border {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(40, 171, 178, 0.2);
    border-radius: 1rem;
    z-index: -1;
}

.about-floating-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--color-gray-900);
    border: 1px solid var(--color-gray-800);
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.about-floating-card-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-floating-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(40, 171, 178, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal-400);
}

.about-floating-text h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
}

.about-floating-text p {
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-content h2 {
        font-size: 2.5rem;
    }
}

.about-content h2 span {
    color: var(--color-teal-400);
}

.about-text {
    color: var(--color-gray-400);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.about-feature {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid var(--color-gray-800);
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.about-feature:hover {
    border-color: rgba(40, 171, 178, 0.3);
}

.about-feature svg {
    color: var(--color-teal-400);
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.about-feature:hover svg {
    transform: scale(1.1);
}

.about-feature h4 {
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.about-feature p {
    color: var(--color-gray-500);
    font-size: 0.75rem;
}

/* ===== Brands Section ===== */
.brands-section {
    padding: 4rem 0;
    background: var(--color-gray-900);
    position: relative;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(40, 171, 178, 0.2), transparent);
}

.brands-title {
    text-align: center;
    color: var(--color-gray-500);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--color-gray-800);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.brand-item:hover {
    border-color: rgba(40, 171, 178, 0.3);
}

.brand-item .flag {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.brand-item:hover .flag {
    transform: scale(1.1);
}

.brand-item .name {
    color: var(--color-gray-500);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.brand-item:hover .name {
    color: var(--color-teal-400);
}

/* ===== Products Section ===== */
.products-section {
    padding: 6rem 0;
    background: var(--color-gray-900);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(40, 171, 178, 0.2), transparent);
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: var(--color-gray-950);
    border: 1px solid var(--color-gray-800);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.5s ease;
}

.product-card:hover {
    border-color: rgba(40, 171, 178, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(40, 171, 178, 0.05);
}

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

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

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

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-gray-950), transparent);
    opacity: 0.6;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-teal-500);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    z-index: 5;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.product-card:hover .product-content h3 {
    color: var(--color-teal-400);
}

.product-content p {
    color: var(--color-gray-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-specs {
    margin-bottom: 1.25rem;
}

.product-specs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-400);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.product-specs li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-teal-400);
    border-radius: 50%;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-teal-400);
    font-size: 0.875rem;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.product-link:hover {
    gap: 0.75rem;
}

/* ===== Why Us Section ===== */
.why-us-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(40, 171, 178, 0.2), transparent);
}

.why-us-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: radial-gradient(circle, rgba(40,171,178,1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.why-us-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    position: relative;
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid var(--color-gray-800);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(40, 171, 178, 0.05), transparent);
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    border-color: rgba(40, 171, 178, 0.3);
    transform: translateY(-4px);
}

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

.feature-card-inner {
    position: relative;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(40, 171, 178, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-teal-400);
    transition: background 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(40, 171, 178, 0.2);
}

.feature-card h3 {
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--color-teal-400);
}

.feature-card p {
    color: var(--color-gray-500);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===== Gallery Section ===== */
.gallery-section {
    padding: 6rem 0;
    background: var(--color-gray-900);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(40, 171, 178, 0.2), transparent);
}

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

.gallery-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-gray-950), rgba(10,10,10,0.5), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

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

.gallery-item-overlay span {
    color: var(--color-teal-400);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.gallery-item-overlay h3 {
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
}

.gallery-item-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 1rem;
    transition: border-color 0.5s ease;
}

.gallery-item:hover .gallery-item-border {
    border-color: rgba(40, 171, 178, 0.3);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(40, 171, 178, 0.2), transparent);
}

.testimonials-bg {
    position: absolute;
    top: -10rem;
    right: 25%;
    width: 600px;
    height: 600px;
    background: rgba(40, 171, 178, 0.03);
    border-radius: 50%;
    filter: blur(60px);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    position: relative;
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid var(--color-gray-800);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s ease;
}

.testimonial-card:hover {
    border-color: rgba(40, 171, 178, 0.2);
}

.testimonial-quote {
    color: rgba(40, 171, 178, 0.2);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--color-gray-400);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    color: #facc15;
    fill: #facc15;
}

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

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--color-teal-400), var(--color-teal-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 900;
    font-size: 1.125rem;
}

.testimonial-info h4 {
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
}

.testimonial-info p {
    color: var(--color-gray-500);
    font-size: 0.75rem;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 5rem 0;
    background: var(--color-gray-900);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(40, 171, 178, 0.2), transparent);
}

.cta-bg-1 {
    position: absolute;
    top: -5rem;
    right: -5rem;
    width: 20rem;
    height: 20rem;
    background: rgba(40, 171, 178, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-bg-2 {
    position: absolute;
    bottom: -5rem;
    left: -5rem;
    width: 20rem;
    height: 20rem;
    background: rgba(40, 171, 178, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 3rem;
    }
}

.cta-content h2 span {
    color: var(--color-teal-400);
}

.cta-content p {
    color: var(--color-gray-400);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-phone {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 6rem 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(40, 171, 178, 0.2), transparent);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-list {
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(40, 171, 178, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal-400);
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background: rgba(40, 171, 178, 0.2);
}

.contact-info-text h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-social span {
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

.contact-social a {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-gray-900);
    border: 1px solid var(--color-gray-800);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-500);
    transition: all 0.3s ease;
}

.contact-social a:hover {
    color: var(--color-teal-400);
    border-color: rgba(40, 171, 178, 0.3);
}

.contact-form-wrapper {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid var(--color-gray-800);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-form-wrapper h3 {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.form-group label {
    display: block;
    color: var(--color-gray-400);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--color-gray-950);
    border: 1px solid var(--color-gray-800);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.875rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-600);
}

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

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

.form-submit {
    width: 100%;
    margin-top: 0.5rem;
}

/* ===== Footer ===== */
.site-footer {
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(40, 171, 178, 0.3), transparent);
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand .site-logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--color-gray-500);
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 2.25rem;
    height: 2.25rem;
    background: var(--color-gray-900);
    border: 1px solid var(--color-gray-800);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-500);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--color-teal-400);
    border-color: rgba(40, 171, 178, 0.3);
}

.footer-column h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--color-teal-400);
    border-radius: 2px;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-500);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column ul li a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--color-gray-700);
    border-radius: 50%;
}

.footer-column ul li a:hover {
    color: var(--color-teal-400);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-item svg {
    color: var(--color-teal-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-900);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
    }
}

.footer-copyright {
    color: var(--color-gray-600);
    font-size: 0.875rem;
}

.footer-copyright span {
    color: var(--color-teal-500);
    font-weight: 700;
}

.back-to-top {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(40, 171, 178, 0.1);
    border: 1px solid rgba(40, 171, 178, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal-400);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: rgba(40, 171, 178, 0.2);
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1000;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #20BA5C;
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.whatsapp-float .pulse {
    position: absolute;
    inset: 0;
    background: #25D366;
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.2;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ===== WordPress Core Styles ===== */
.alignleft {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin: 0 auto 1rem;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    text-align: center;
    padding: 0.5rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Admin Bar Fix */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}
