/* ===================================
   ANANTIQ - Digital Marketing Agency
   Custom CSS (Color scheme derived from logo)
=================================== */

/* ===== CSS Variables - Brand Colors (ANANTIQ Logo) ===== */
:root {
    /* Brand Colors derived from ANANTIQ logo */
    --primary-color: #1A1F3A;          /* Deep Navy (main brand color from logo) */
    --primary-dark: #0F1326;            /* Darker navy */
    --primary-light: #2A3050;           /* Lighter navy */

    --accent-color: #E85A2B;            /* Vibrant Orange (from logo swirl) */
    --accent-dark: #C8491F;             /* Darker orange */
    --accent-light: #FF7A4D;            /* Lighter orange */

    --secondary-color: #5B7A9A;         /* Steel Blue (from "Vision" text) */
    --secondary-light: #7A95B0;         /* Lighter steel blue */

    --dark-color: #0F1326;              /* Deep dark */
    --dark-light: #1F2438;              /* Slightly lighter dark */

    --light-color: #FFFFFF;             /* Pure white */
    --light-bg: #F8F9FC;                /* Light off-white */
    --light-bg-2: #EEF1F7;              /* Slightly darker light bg */

    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;

    --success-color: #28A745;
    --warning-color: #FFC107;
    --danger-color: #DC3545;

    --gradient-primary: linear-gradient(135deg, #1A1F3A 0%, #2A3050 100%);
    --gradient-accent: linear-gradient(135deg, #E85A2B 0%, #FF7A4D 100%);
    --gradient-mix: linear-gradient(135deg, #E85A2B 0%, #1A1F3A 100%);

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    --shadow-sm: 0 2px 8px rgba(26, 31, 58, 0.08);
    --shadow-md: 0 5px 20px rgba(26, 31, 58, 0.1);
    --shadow-lg: 0 15px 40px rgba(26, 31, 58, 0.15);
    --shadow-accent: 0 10px 30px rgba(232, 90, 43, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 50px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--light-color);
}

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

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

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

::selection {
    background: var(--accent-color);
    color: var(--light-color);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--primary-color);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader {
    display: flex;
    gap: 10px;
}
.loader-dot {
    width: 16px; height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: loaderBounce 1.4s infinite ease-in-out;
}
.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes loaderBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--primary-dark);
    color: var(--light-color);
    padding: 8px 0;
    font-size: 13px;
    font-family: var(--font-secondary);
}
.top-info span {
    margin-right: 20px;
    color: var(--gray-300);
}
.top-info i { color: var(--accent-color); margin-right: 6px; }
.top-social a {
    color: var(--light-color);
    margin-left: 14px;
    font-size: 14px;
    transition: var(--transition);
}
.top-social a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* ===== Navbar ===== */
.main-navbar {
    background: var(--light-color);
    padding: 14px 0;
    transition: var(--transition);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.main-navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}
.navbar-brand .logo-img {
    height: 50px;
    width: auto;
}
.navbar-toggler {
    border: none;
    padding: 6px 10px;
    background: var(--accent-color);
    border-radius: var(--radius-sm);
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-nav .nav-link {
    color: var(--primary-color);
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 2px;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%;
    width: 0; height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 30px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color);
}

.btn-quote {
    background: var(--accent-color);
    color: var(--light-color) !important;
    border-radius: var(--radius-pill);
    padding: 10px 22px !important;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-accent);
}
.btn-quote:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(232, 90, 43, 0.4);
}
.btn-quote::after { display: none; }

/* ===== Buttons ===== */
.btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    font-size: 15px;
    font-family: var(--font-primary);
}
.btn-primary {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: var(--light-color);
    box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(232, 90, 43, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-outline:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}
.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
}

/* ===== Section General ===== */
.section-padding {
    padding: 100px 0;
    position: relative;
}
.section-header { margin-bottom: 20px; }
.section-subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(232, 90, 43, 0.1);
    border-radius: var(--radius-pill);
}
.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-desc {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    font-family: var(--font-secondary);
}
.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== Hero Section ===== */
.hero-section {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--light-color) 100%);
    position: relative;
    overflow: hidden;
}
.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
}
.shape-1 { width: 400px; height: 400px; background: var(--accent-color); top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: var(--secondary-color); bottom: -50px; left: -50px; opacity: 0.3; }
.shape-3 { width: 200px; height: 200px; background: var(--accent-light); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.shape-4 { width: 250px; height: 250px; background: var(--secondary-light); top: 30%; right: 20%; opacity: 0.2; }

.hero-content { position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}
.hero-badge i { color: var(--accent-color); }
.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--primary-color);
}
.hero-desc {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.7;
    font-family: var(--font-secondary);
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 50px;
}
.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.stat-item { position: relative; }
.stat-item h3 {
    font-size: 38px;
    font-weight: 800;
    color: var(--accent-color);
    display: inline-block;
}
.stat-item .plus {
    font-size: 28px;
    color: var(--accent-color);
    font-weight: 700;
}
.stat-item p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    font-weight: 500;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    z-index: 1;
}
.main-hero-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}
.floating-card {
    position: absolute;
    background: var(--light-color);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: floatY 3s ease-in-out infinite;
}
.floating-card i {
    font-size: 24px;
    color: var(--accent-color);
    background: rgba(232, 90, 43, 0.1);
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.floating-card h6 {
    font-size: 13px;
    margin: 0;
    color: var(--gray-700);
    font-weight: 600;
}
.floating-card span {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
}
.card-1 { top: 20px; left: -20px; animation-delay: 0s; }
.card-2 { top: 50%; right: -20px; animation-delay: 1s; }
.card-3 { bottom: 30px; left: 30px; animation-delay: 2s; }
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-clients {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}
.client-label {
    text-align: center;
    color: var(--gray-600);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 24px;
}
.client-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.client-logos span {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-500);
    opacity: 0.6;
    transition: var(--transition);
    font-family: var(--font-secondary);
}
.client-logos span:hover {
    color: var(--accent-color);
    opacity: 1;
}

/* ===== About Section ===== */
.about-section { background: var(--light-color); }
.about-image-wrapper {
    position: relative;
    padding-bottom: 30px;
}
.about-image-main img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.about-image-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    border: 8px solid var(--light-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.experience-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--accent-color);
    color: var(--light-color);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-accent);
}
.experience-badge h2 {
    color: var(--light-color);
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}
.experience-badge h2 span { font-size: 24px; }
.experience-badge p {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}
.about-text {
    color: var(--gray-600);
    font-family: var(--font-secondary);
    font-size: 16px;
    margin-bottom: 18px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
}
.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.feature-icon {
    width: 38px; height: 38px;
    background: rgba(232, 90, 43, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.feature-item h5 {
    font-size: 17px;
    margin-bottom: 4px;
    color: var(--primary-color);
    font-weight: 600;
}
.feature-item p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    font-family: var(--font-secondary);
}

/* ===== Services Section ===== */
.services-section { background: var(--light-bg); }
.service-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid transparent;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 90, 43, 0.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
    background: var(--primary-color);
    color: var(--light-color);
    transform: scale(1.02);
}
.service-card.featured h3 { color: var(--light-color); }
.service-card.featured p { color: var(--gray-300); }
.service-card.featured .service-icon {
    background: var(--accent-color);
    color: var(--light-color);
}
.service-card.featured .service-list li { color: var(--gray-300); }
.service-card.featured .service-list li i { color: var(--accent-color); }
.service-card.featured .service-link { color: var(--accent-color); }
.service-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--accent-color);
    color: var(--light-color);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.service-icon {
    width: 70px; height: 70px;
    background: rgba(232, 90, 43, 0.1);
    color: var(--accent-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--accent-color);
    color: var(--light-color);
    transform: rotate(-5deg) scale(1.05);
}
.service-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 700;
}
.service-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 15px;
    font-family: var(--font-secondary);
}
.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}
.service-list li {
    padding: 5px 0;
    color: var(--gray-700);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-secondary);
}
.service-list li i { color: var(--accent-color); }
.service-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-link:hover { gap: 10px; color: var(--accent-dark); }

/* ===== Why Section ===== */
.why-section { background: var(--light-color); }
.why-progress { margin-top: 30px; }
.progress-item { margin-bottom: 22px; }
.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
    font-family: var(--font-secondary);
}
.progress {
    height: 8px;
    background: var(--light-bg-2);
    border-radius: 4px;
    overflow: hidden;
}
.progress-bar {
    background: var(--gradient-accent);
    width: 0;
    height: 100%;
    border-radius: 4px;
    transition: width 1.5s ease;
}
.why-card {
    background: var(--light-color);
    padding: 30px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}
.why-icon {
    width: 60px; height: 60px;
    background: var(--gradient-accent);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-accent);
}
.why-card h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.why-card p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
    font-family: var(--font-secondary);
}

/* ===== Portfolio Section ===== */
.portfolio-section { background: var(--light-bg); }
.portfolio-filter {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    background: var(--light-color);
    padding: 8px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
}
.filter-btn {
    background: transparent;
    color: var(--gray-600);
    border: none;
    padding: 8px 22px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-primary);
}
.filter-btn:hover { color: var(--accent-color); }
.filter-btn.active {
    background: var(--accent-color);
    color: var(--light-color);
}
.portfolio-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}
.portfolio-card img {
    transition: var(--transition);
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.portfolio-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(26, 31, 58, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--light-color);
    opacity: 0;
    transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-card:hover img { transform: scale(1.1); }
.portfolio-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--light-color);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    align-self: flex-start;
}
.portfolio-overlay h4 {
    color: var(--light-color);
    font-size: 20px;
    margin-bottom: 6px;
}
.portfolio-overlay p {
    color: var(--gray-300);
    margin: 0;
    font-size: 13px;
    font-family: var(--font-secondary);
}
.portfolio-link {
    position: absolute;
    top: 20px; right: 20px;
    width: 44px; height: 44px;
    background: var(--accent-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transform: rotate(-45deg);
    transition: var(--transition);
}
.portfolio-link:hover { background: var(--light-color); color: var(--accent-color); }

/* ===== Process Section ===== */
.process-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}
.process-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
}
.process-section .section-title { color: var(--light-color); }
.process-section .section-desc { color: var(--gray-300); }
.process-section .section-subtitle {
    background: rgba(232, 90, 43, 0.2);
    color: var(--accent-light);
}
.process-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 36px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
}
.process-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--accent-color);
}
.process-number {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 50px;
    font-weight: 900;
    color: rgba(232, 90, 43, 0.2);
    line-height: 1;
}
.process-icon {
    width: 70px; height: 70px;
    background: var(--gradient-accent);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-accent);
}
.process-card h4 {
    color: var(--light-color);
    font-size: 20px;
    margin-bottom: 12px;
}
.process-card p {
    color: var(--gray-300);
    font-size: 14px;
    margin: 0;
    font-family: var(--font-secondary);
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--accent-color);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.4;
}
.stat-box {
    color: var(--light-color);
    position: relative;
    z-index: 1;
}
.stat-box i {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
    opacity: 0.9;
}
.stat-box h2 {
    color: var(--light-color);
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1;
}
.stat-box p {
    font-size: 15px;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

/* ===== Team Section ===== */
.team-section { background: var(--light-color); }
.team-card {
    background: var(--light-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.team-image {
    position: relative;
    overflow: hidden;
}
.team-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: var(--transition);
}
.team-card:hover .team-image img { transform: scale(1.05); }
.team-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}
.team-card:hover .team-social {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.team-social a {
    width: 40px; height: 40px;
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.team-social a:hover {
    background: var(--accent-color);
    color: var(--light-color);
}
.team-info {
    padding: 20px;
    background: var(--light-color);
}
.team-info h4 {
    font-size: 19px;
    margin-bottom: 4px;
}
.team-info span {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-secondary);
}

/* ===== Testimonials ===== */
.testimonial-section { background: var(--light-bg); }
.testimonial-card {
    background: var(--light-color);
    padding: 50px 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.quote-icon {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 80px;
    color: var(--accent-color);
    opacity: 0.1;
    line-height: 1;
}
.testimonial-card p {
    font-size: 20px;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: var(--font-secondary);
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: left;
}
.testimonial-author img {
    width: 70px; height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}
.testimonial-author h5 {
    font-size: 18px;
    margin: 0 0 2px;
    color: var(--primary-color);
}
.testimonial-author span {
    color: var(--gray-600);
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-secondary);
}
.stars { color: var(--warning-color); font-size: 14px; }
.carousel-indicators { bottom: -50px; }
.carousel-indicators button {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    border: none;
    margin: 0 5px;
}
.carousel-indicators button.active { background: var(--accent-dark); transform: scale(1.2); }
.carousel-control-prev, .carousel-control-next {
    width: 50px; height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 1;
}
.carousel-control-prev { left: -70px; }
.carousel-control-next { right: -70px; }
.carousel-control-prev:hover, .carousel-control-next:hover { background: var(--accent-dark); }

/* ===== Pricing Section ===== */
.pricing-section { background: var(--light-color); }
.pricing-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 2px solid var(--gray-200);
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}
.pricing-card.featured {
    background: var(--primary-color);
    color: var(--light-color);
    transform: scale(1.04);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}
.pricing-card.featured h3 { color: var(--light-color); }
.pricing-card.featured .pricing-desc { color: var(--gray-300); }
.pricing-card.featured .pricing-features li { color: var(--gray-300); }
.pricing-card.featured .pricing-features li i { color: var(--accent-color); }
.pricing-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--light-color);
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-color);
}
.pricing-desc {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}
.price {
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.pricing-card.featured .price { border-color: rgba(255,255,255,0.1); }
.price .currency {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 700;
    vertical-align: top;
}
.price .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 4px;
}
.pricing-card.featured .price .amount { color: var(--light-color); }
.price .period {
    color: var(--gray-600);
    font-size: 14px;
}
.pricing-card.featured .price .period { color: var(--gray-300); }
.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}
.pricing-features li {
    padding: 8px 0;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-family: var(--font-secondary);
}
.pricing-features li i {
    color: var(--success-color);
    font-size: 16px;
}
.pricing-features li.disabled { color: var(--gray-500); }
.pricing-features li.disabled i { color: var(--gray-400); }

/* ===== FAQ Section ===== */
.faq-section { background: var(--light-bg); }
.custom-accordion .accordion-item {
    background: var(--light-color);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 14px;
    overflow: hidden;
}
.custom-accordion .accordion-button {
    background: var(--light-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    padding: 18px 20px;
    font-family: var(--font-primary);
}
.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--light-color);
    box-shadow: none;
}
.custom-accordion .accordion-button:focus { box-shadow: none; }
.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A1F3A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
    padding: 20px;
    color: var(--gray-600);
    font-family: var(--font-secondary);
    line-height: 1.7;
}

/* ===== Blog Section ===== */
.blog-section { background: var(--light-color); }
.blog-card {
    background: var(--light-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.blog-image {
    position: relative;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-image img { transform: scale(1.1); }
.blog-category {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--accent-color);
    color: var(--light-color);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
}
.blog-content { padding: 24px; }
.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 12px;
    font-family: var(--font-secondary);
}
.blog-meta i { color: var(--accent-color); margin-right: 4px; }
.blog-content h4 {
    font-size: 19px;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--primary-color);
    transition: var(--transition);
}
.blog-card:hover .blog-content h4 { color: var(--accent-color); }
.blog-content p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 16px;
    font-family: var(--font-secondary);
}
.blog-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-link:hover { gap: 10px; }

/* ===== CTA Section ===== */
.cta-section {
    padding: 60px 0;
    background: var(--light-bg);
}
.cta-wrapper {
    background: var(--gradient-primary);
    padding: 60px 50px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}
.cta-wrapper h2 {
    color: var(--light-color);
    font-size: 36px;
    margin-bottom: 12px;
    position: relative;
}
.cta-wrapper p {
    color: var(--gray-300);
    font-size: 17px;
    margin: 0;
    position: relative;
    font-family: var(--font-secondary);
}
.cta-wrapper .btn-primary {
    background: var(--accent-color);
    position: relative;
    z-index: 1;
}

/* ===== Contact Section ===== */
.contact-section { background: var(--light-bg); }
.contact-info {
    background: var(--primary-color);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    height: 100%;
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}
.contact-info::before {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 250px; height: 250px;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
    width: 50px; height: 50px;
    background: var(--accent-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-info-item h5 {
    color: var(--light-color);
    font-size: 16px;
    margin-bottom: 4px;
}
.contact-info-item p {
    color: var(--gray-300);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    font-family: var(--font-secondary);
}
.contact-form {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.contact-form .form-control {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 15px;
    color: var(--primary-color);
    transition: var(--transition);
    font-family: var(--font-secondary);
}
.contact-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(232, 90, 43, 0.1);
}
.contact-form .form-control::placeholder { color: var(--gray-500); }
.contact-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231A1F3A' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

/* ===== Footer ===== */
.footer-section {
    background: var(--primary-dark);
    color: var(--gray-300);
    padding: 80px 0 0;
    position: relative;
}
.footer-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-accent);
}
.footer-widget h5 {
    color: var(--light-color);
    font-size: 18px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--accent-color);
}
.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}
.footer-widget p {
    color: var(--gray-300);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--gray-300);
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-secondary);
}
.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}
.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-pill);
    overflow: hidden;
    margin-top: 16px;
}
.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 18px;
    color: var(--light-color);
    font-size: 14px;
    outline: none;
    font-family: var(--font-secondary);
}
.newsletter-form input::placeholder { color: var(--gray-400); }
.newsletter-form button {
    background: var(--accent-color);
    color: var(--light-color);
    border: none;
    padding: 0 22px;
    cursor: pointer;
    transition: var(--transition);
}
.newsletter-form button:hover { background: var(--accent-dark); }
.footer-contact p {
    color: var(--gray-300);
    font-size: 14px;
    margin-bottom: 6px;
    font-family: var(--font-secondary);
}
.footer-contact i {
    color: var(--accent-color);
    margin-right: 8px;
}
.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
    color: var(--gray-400);
    font-size: 14px;
    margin: 0;
    font-family: var(--font-secondary);
}
.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
.footer-bottom-links a {
    color: var(--gray-400);
    font-size: 14px;
    font-family: var(--font-secondary);
}
.footer-bottom-links a:hover { color: var(--accent-color); }

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: var(--accent-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-accent);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-5px);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px; left: 30px;
    width: 56px; height: 56px;
    background: #25D366;
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition);
    animation: pulseWA 2s infinite;
}
.whatsapp-float:hover {
    color: var(--light-color);
    transform: scale(1.1);
}
@keyframes pulseWA {
    0% { box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); }
}

/* ===== Responsive ===== */
@media (max-width: 1199.98px) {
    .section-padding { padding: 80px 0; }
    .hero-title { font-size: 46px; }
    .section-title { font-size: 36px; }
    .carousel-control-prev { left: -30px; }
    .carousel-control-next { right: -30px; }
}

@media (max-width: 991.98px) {
    .section-padding { padding: 70px 0; }
    .hero-title { font-size: 40px; }
    .section-title { font-size: 32px; }
    .hero-buttons { margin-bottom: 30px; }
    .navbar-collapse {
        background: var(--light-color);
        margin-top: 14px;
        padding: 20px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
    }
    .btn-quote { margin-top: 10px; text-align: center; }
    .carousel-control-prev, .carousel-control-next { display: none; }
    .cta-wrapper { padding: 40px 30px; }
    .cta-wrapper h2 { font-size: 28px; }
    .pricing-card.featured { transform: scale(1); }
    .footer-bottom-links { justify-content: flex-start; margin-top: 10px; }
}

@media (max-width: 767.98px) {
    .section-padding { padding: 60px 0; }
    .hero-section { padding: 50px 0 40px; }
    .hero-title { font-size: 32px; }
    .hero-desc { font-size: 16px; }
    .section-title { font-size: 28px; }
    .section-desc { font-size: 15px; }
    .hero-stats { gap: 20px; justify-content: flex-start; }
    .stat-item h3 { font-size: 32px; }
    .floating-card { display: none; }
    .about-image-deco { width: 40%; }
    .experience-badge { padding: 14px; }
    .experience-badge h2 { font-size: 30px; }
    .service-card, .pricing-card, .contact-info, .contact-form { padding: 30px 20px; }
    .testimonial-card { padding: 30px 20px; }
    .testimonial-card p { font-size: 16px; }
    .cta-wrapper { padding: 30px 20px; text-align: center; }
    .cta-wrapper h2 { font-size: 24px; }
    .footer-section { padding: 60px 0 0; }
    .portfolio-filter { padding: 6px; }
    .filter-btn { padding: 6px 14px; font-size: 13px; }
    .stat-box h2 { font-size: 36px; }
    .stat-box i { font-size: 32px; }
    .top-info span { display: block; margin: 4px 0; }
    .top-bar { display: none; }
}

@media (max-width: 575.98px) {
    .hero-title { font-size: 28px; }
    .section-title { font-size: 24px; }
    .btn { padding: 10px 22px; font-size: 14px; }
    .btn-lg { padding: 12px 26px; }
    .navbar-brand .logo-img { height: 40px; }
    .back-to-top, .whatsapp-float { width: 44px; height: 44px; font-size: 18px; }
    .whatsapp-float { font-size: 24px; }
    .back-to-top { bottom: 80px; }
}
