/* ===== CSS Variables ===== */
:root {
    /* --theme-color is set by Blade inline style */
    --secondary-color: #1f2937;
    --accent-color: #fbbf24;
    --success-color: #25D366;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.sf-container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }

/* ===== Theme Utilities ===== */
.theme-bg { background-color: var(--theme-color) !important; }
.theme-text { color: var(--theme-color) !important; }
.theme-border { border-color: var(--theme-color) !important; }
.theme-bg-hover:hover { background-color: var(--theme-color) !important; }
.theme-border-hover:hover { border-color: var(--theme-color) !important; }

.text-gradient {
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #374151 100%);
    color: #fff;
    padding: 0.5rem 0;
    font-size: 0.8rem;
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left {
    display: flex;
    gap: 1.5rem;
}
.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.top-bar-left i {
    color: var(--theme-color);
}
.top-bar-right .social-icons {
    display: flex;
    gap: 0.75rem;
}
.top-bar-right .social-icons a {
    color: #fff;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-decoration: none;
}
.top-bar-right .social-icons a:hover {
    opacity: 1;
    color: var(--theme-color);
}

/* ===== HEADER ===== */
.sf-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Header Main */
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}
.sf-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}
.sf-logo:hover { transform: scale(1.02); }
.sf-logo-image { height: 50px; width: auto; object-fit: contain; }
.sf-logo-text h1 {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
}
.sf-logo-text .tagline { font-size: 0.7rem; color: var(--text-secondary); }

.header-contact-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.contact-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.contact-icon-wrap {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--theme-color) 0%, color-mix(in srgb, var(--theme-color) 80%, black) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
}
.contact-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}
.header-cta-btn {
    background: linear-gradient(135deg, var(--theme-color) 0%, color-mix(in srgb, var(--theme-color) 80%, black) 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--theme-color) 30%, transparent);
}
.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--theme-color) 40%, transparent);
}

/* ===== Main Navigation ===== */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}
.nav-item { position: relative; }
.nav-item > a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.875rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}
.nav-item > a:hover,
.nav-item.active > a {
    color: var(--theme-color);
    background: color-mix(in srgb, var(--theme-color) 8%, transparent);
}

/* Nav Search */
.nav-search {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-search input {
    padding: 0.5rem 0.75rem 0.5rem 2.25rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    width: 180px;
    transition: all 0.3s ease;
    font-family: inherit;
}
.nav-search input:focus {
    outline: none;
    border-color: var(--theme-color);
    width: 220px;
}
.nav-search i {
    position: absolute;
    left: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-login {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: transparent;
}
.btn-login:hover {
    background: var(--theme-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px color-mix(in srgb, var(--theme-color) 20%, transparent);
}

/* Cart Icon */
.sf-cart-icon {
    position: relative;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-left: 0.5rem;
    background: none;
    border: none;
}
.sf-cart-icon:hover { color: var(--theme-color); }
.sf-cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--theme-color);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sf-cart-badge.hidden { display: none; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--theme-color);
    cursor: pointer;
    padding: 0.5rem;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.slide.active { opacity: 1; z-index: 1; }
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--theme-color) 85%, transparent) 0%, color-mix(in srgb, var(--theme-color) 75%, black 25%) 100%);
}
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 90%;
    max-width: 800px;
}
.slide-badge {
    display: inline-block;
    background: color-mix(in srgb, var(--theme-color) 90%, transparent);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}
.hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary-hero, .btn-secondary-hero {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}
.btn-primary-hero {
    background: var(--white);
    color: var(--theme-color);
}
.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-secondary-hero {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-secondary-hero:hover {
    background: var(--white);
    color: var(--theme-color);
}

/* Slider Controls */
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--theme-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}
.slider-prev:hover, .slider-next:hover {
    background: var(--theme-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.slider-dot.active, .slider-dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--theme-color) 0%, color-mix(in srgb, var(--theme-color) 80%, black) 100%);
    padding: 4rem 0;
    margin-top: -5px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.stat-item {
    text-align: center;
    color: #fff;
}
.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
    backdrop-filter: blur(5px);
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTION HEADERS ===== */
.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, color-mix(in srgb, var(--theme-color) 10%, transparent) 0%, color-mix(in srgb, var(--theme-color) 20%, transparent) 100%);
    color: var(--theme-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.section-title-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.section-subtitle-large {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 5rem 0;
    background: var(--white);
}
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.feature-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}
.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: color-mix(in srgb, var(--theme-color) 40%, transparent);
}
.feature-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--theme-color) 10%, transparent) 0%, color-mix(in srgb, var(--theme-color) 20%, transparent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--theme-color);
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}
.feature-card-modern:hover .feature-icon-wrap {
    background: linear-gradient(135deg, var(--theme-color) 0%, color-mix(in srgb, var(--theme-color) 80%, black) 100%);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}
.feature-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.feature-card-modern p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== SERVICES SECTION MODERN ===== */
.services-section-modern {
    padding: 5rem 0;
    background: var(--bg-light);
}
.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}
.service-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.service-card-large.reverse {
    direction: rtl;
}
.service-card-large.reverse > * {
    direction: ltr;
}
.service-image {
    position: relative;
    min-height: 350px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card-large:hover .service-image img {
    transform: scale(1.1);
}
.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--theme-color) 80%, transparent) 0%, color-mix(in srgb, var(--theme-color) 90%, black 10%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.service-card-large:hover .service-image-overlay {
    opacity: 1;
}
.service-link {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--theme-color);
    transform: scale(0);
    transition: transform 0.4s ease;
    text-decoration: none;
}
.service-card-large:hover .service-link {
    transform: scale(1);
}
.service-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-content .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--theme-color) 0%, color-mix(in srgb, var(--theme-color) 80%, black) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}
.service-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.service-content > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}
.service-features li i {
    color: var(--theme-color);
}
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--theme-color) 0%, color-mix(in srgb, var(--theme-color) 80%, black) 100%);
    color: #fff;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}
.service-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px color-mix(in srgb, var(--theme-color) 40%, transparent);
}

/* Quick Categories */
.quick-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.quick-cat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.quick-cat-item:hover {
    border-color: var(--theme-color);
    color: var(--theme-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.quick-cat-item i {
    color: var(--theme-color);
}

/* ===== ABOUT SECTION MODERN ===== */
.about-section-modern {
    padding: 5rem 0;
    background: var(--white);
}
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-experience-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: linear-gradient(135deg, var(--theme-color) 0%, color-mix(in srgb, var(--theme-color) 80%, black) 100%);
    color: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}
.exp-text {
    font-size: 0.8rem;
    opacity: 0.9;
}
.about-content-modern .about-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}
.about-lead {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 500;
}
.about-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.highlight-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--theme-color) 10%, transparent) 0%, color-mix(in srgb, var(--theme-color) 20%, transparent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--theme-color);
}
.highlight-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}
.highlight-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}
.about-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-primary-large {
    background: linear-gradient(135deg, var(--theme-color) 0%, color-mix(in srgb, var(--theme-color) 80%, black) 100%);
    color: #fff;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-large {
    background: transparent;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-outline-large:hover {
    background: var(--theme-color);
    color: #fff;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    padding: 5rem 0;
    background: var(--bg-light);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.portfolio-item:hover img {
    transform: scale(1.1);
}
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-info {
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}
.portfolio-cat {
    display: inline-block;
    background: var(--theme-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #fff;
}
.portfolio-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}
.portfolio-expand {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color);
    opacity: 0;
    transform: scale(0.75);
    transition: all 0.3s ease;
}
.portfolio-item:hover .portfolio-expand {
    opacity: 1;
    transform: scale(1);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #374151 100%);
}
.testimonials-section .section-badge {
    background: color-mix(in srgb, var(--theme-color) 20%, transparent);
}
.testimonials-section .section-title-large,
.testimonials-section .section-subtitle-large {
    color: #fff;
}
.testimonials-section .section-subtitle-large {
    opacity: 0.8;
}
.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 1rem;
}
.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-card {
    min-width: 100%;
    padding: 0 2rem;
}
.testimonial-content {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}
.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: color-mix(in srgb, var(--theme-color) 10%, transparent);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--theme-color) 0%, color-mix(in srgb, var(--theme-color) 80%, black) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    overflow: hidden;
}
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-info h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}
.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.testimonial-prev, .testimonial-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.testimonial-prev:hover, .testimonial-next:hover {
    background: var(--theme-color);
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--theme-color) 0%, color-mix(in srgb, var(--theme-color) 80%, black) 100%);
    overflow: hidden;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: url('') center/cover no-repeat;
    opacity: 0.1;
}
.cta-content {
    position: relative;
    text-align: center;
    color: #fff;
}
.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.cta-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-white-large {
    background: #fff;
    color: var(--theme-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-white-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.btn-whatsapp-large {
    background: #25D366;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-whatsapp-large:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

/* ===== CONTACT SECTION MODERN ===== */
.contact-section-modern {
    padding: 5rem 0;
    background: var(--white);
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}
.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}
.contact-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}
.contact-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--theme-color) 0%, color-mix(in srgb, var(--theme-color) 80%, black) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
}
.contact-card-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}
.contact-card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}
.contact-card-content a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-card-content a:hover {
    color: var(--theme-color);
}
.contact-social h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.social-links-modern {
    display: flex;
    gap: 0.75rem;
}
.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-link:hover {
    background: var(--theme-color);
    color: #fff;
    transform: translateY(-3px);
}
.social-link.whatsapp:hover {
    background: #25D366;
}

/* Contact Form Modern */
.contact-form-modern {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
}
.contact-form-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.contact-form-modern .form-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.contact-form-modern .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.contact-form-modern .form-group {
    position: relative;
    margin-bottom: 1rem;
}
.contact-form-modern .form-group.full {
    grid-column: 1 / -1;
}
.contact-form-modern input,
.contact-form-modern select,
.contact-form-modern textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
}
.contact-form-modern input:focus,
.contact-form-modern select:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--theme-color) 10%, transparent);
}
.contact-form-modern .form-group > i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}
.contact-form-modern .form-group.full > i {
    top: 1.25rem;
    transform: none;
}
.btn-full { width: 100%; justify-content: center; }

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.page-item .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--white);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
.page-item .page-link:hover {
    border-color: var(--theme-color);
    color: var(--theme-color);
    background: color-mix(in srgb, var(--theme-color) 5%, transparent);
}
.page-item.active .page-link {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--theme-color) 30%, transparent);
}
.page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== FOOTER MODERN ===== */
.footer-modern {
    background: var(--secondary-color);
    color: #fff;
}
.footer-top {
    padding: 4rem 0 3rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}
.footer-brand .footer-logo {
    margin-bottom: 1rem;
}
.footer-brand .footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}
.footer-brand h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--theme-color);
    transform: translateY(-3px);
}
.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--theme-color);
    border-radius: 2px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--theme-color);
    padding-left: 5px;
}
.footer-links a i {
    font-size: 0.7rem;
    color: var(--theme-color);
}
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
.footer-contact li i {
    color: var(--theme-color);
    font-size: 1rem;
    margin-top: 0.25rem;
}
.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact li a:hover {
    color: var(--theme-color);
}
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.25rem 0;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}
.footer-credit i {
    color: #ef4444;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: wa-pulse 2s infinite;
}
.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}
@keyframes wa-pulse {
    0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--theme-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: color-mix(in srgb, var(--theme-color) 80%, black);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .header-contact-bar { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid-modern { grid-template-columns: repeat(2, 1fr); }
    .service-card-large { grid-template-columns: 1fr; }
    .service-card-large.reverse { direction: ltr; }
    .service-image { min-height: 300px; }
    .about-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .about-images { max-width: 500px; margin: 0 auto; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar-content { flex-direction: column; gap: 0.5rem; text-align: center; }
    .top-bar-left { flex-direction: column; gap: 0.5rem; }
    .mobile-menu-toggle { display: block; }

    .main-nav { flex-wrap: wrap; }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--white);
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .nav-menu.active { display: flex; }
    .nav-item > a {
        justify-content: flex-start;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-search { width: 100%; padding: 0.5rem 1rem; order: -1; }
    .nav-search input { width: 100%; }

    .hero-slider { height: 400px; }
    .slide-content h2 { font-size: 2rem; }
    .slide-badge { font-size: 0.7rem; padding: 0.4rem 1rem; }
    .slide-content p { font-size: 1rem; margin-bottom: 1.5rem; }
    .slider-prev, .slider-next { width: 40px; height: 40px; font-size: 1rem; }
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .stat-number { font-size: 2rem; }
    .stat-icon { width: 50px; height: 50px; font-size: 1.25rem; }

    .section-title-large { font-size: 1.75rem; }
    .features-grid-modern { grid-template-columns: 1fr; }
    .feature-card-modern { padding: 1.5rem; }

    .service-content { padding: 1.5rem; }
    .service-content h3 { font-size: 1.5rem; }

    .about-img-secondary { width: 150px; height: 150px; right: 0; bottom: -20px; }
    .about-experience-badge { left: 0; padding: 1rem; }
    .exp-number { font-size: 1.75rem; }
    .about-content-modern .about-title { font-size: 1.75rem; }

    .portfolio-grid { grid-template-columns: 1fr; }

    .cta-content h2 { font-size: 1.75rem; }

    .contact-form-modern .form-row { grid-template-columns: 1fr; }

    .page-item .page-link { min-width: 36px; height: 36px; padding: 0 8px; font-size: 0.8rem; border-radius: 8px; }
    .pagination { gap: 4px; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-links h4::after, .footer-contact h4::after { left: 50%; transform: translateX(-50%); }
    .footer-bottom-content { flex-direction: column; gap: 0.5rem; text-align: center; }
    .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
    .sf-container { padding: 0 0.75rem; }
    .hero-slider { height: 350px; }
    .slide-content h2 { font-size: 1.5rem; }
    .slide-content p { font-size: 0.9rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons a { width: 100%; max-width: 280px; justify-content: center; }
    .stats-section { padding: 2.5rem 0; }
    .testimonial-card { padding: 0 0.5rem; }
    .testimonial-content { padding: 1.5rem; }
    .contact-form-modern { padding: 1.5rem; }
    .btn-white-large, .btn-whatsapp-large { padding: 0.875rem 1.5rem; font-size: 0.9rem; }
}
