/* ========================================
   Cortez Media Co - Static Landing Page
   Complete Stylesheet
   ======================================== */

/* ----- CSS Variables ----- */
:root {
    --primary: #B65D3B;
    --primary-dark: #9a4d2f;
    --primary-light: #d47856;
    --secondary: #D4BDA4;
    --secondary-dark: #c4a98e;
    --sage: #6D805C;
    --sage-dark: #5a6b4c;
    --text-dark: #2C3E50;
    --text-medium: #5D6D7E;
    --text-light: #95A5A6;
    --text-gray: #6b7280;
    --bg-white: #FFFFFF;
    --bg-light: #f8f9fa;
    --bg-beige: #D4BDA4;
    --bg-cream: #F5E5C8;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-full: 50px;
    --transition: all 0.3s ease;
    --font-primary: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --header-height: 80px;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--text-medium);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--text-dark); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
@media (max-width: 768px) { .container { padding: 0 15px; } }

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-lg); }
.btn-secondary {
    background: var(--secondary);
    color: var(--text-dark);
}
.btn-secondary:hover { background: var(--secondary-dark); }
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-white {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}
.btn-white:hover { background: rgba(255,255,255,0.2); border-color: white; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-full { width: 100%; justify-content: center; }

/* ----- Utility Classes ----- */
.mb-3 { margin-bottom: 1rem; }
.text-center { text-align: center; }
.position-relative { position: relative; }
.clearfix::after { content: ""; clear: both; display: table; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ----- Section Titles ----- */
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.section-title p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.topbar .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}
.header-col-logo { flex: 0 0 auto; display: flex; align-items: center; }
.logo a { display: flex; align-items: center; }
.logo img { width: 200px; height: auto; }

.header-col-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.25rem;
    background: transparent;
}
.menu-item { margin: 0; flex-shrink: 0; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.65rem 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    white-space: nowrap;
    transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 12px rgba(182,93,59,0.3);
}
.nav-link i { font-size: 1rem; }
.nav-link span { font-size: 0.85rem; }

.header-col-icon { flex: 0 0 auto; }
.header-col-icon a { color: var(--text-dark); font-size: 1.25rem; }

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 992px) {
    .mobile-toggle { display: block; }
    .header-col-nav { position: static; }
    .main-menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        background: var(--bg-white);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        padding: 5rem 1.5rem 2rem;
        gap: 0.25rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    .main-menu.open { right: 0; }
    .main-menu .nav-link { width: 100%; padding: 0.85rem 1rem; font-size: 0.95rem; }
    .main-menu .menu-item { width: 100%; }
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.4);
        z-index: 999;
    }
    .nav-overlay.active { display: block; }
}

/* ==========================================
   HERO / BANNER SECTION
   ========================================== */
#banner {
    background-color: #ffffff;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.banner-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: center;
    width: 100%;
}
.banner-main-text {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    align-self: center;
}
.inner_carousel h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #B65D3B;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.inner_carousel .slider-para {
    color: #111111;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.banner-buttons-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.banner-btn-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
    align-self: center;
}
.read-more { display: block; }
.read-more a {
    display: inline-block;
    background: #B65D3B !important;
    border-radius: 6px;
    padding: 12px 19px;
    text-transform: capitalize;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}
.read-more a:hover {
    background: #9a4d2f !important;
    transform: translateY(-2px);
}
.secondary-btn {
    background-color: #B65D3B !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(182, 93, 59, 0.3);
}
.secondary-btn:hover {
    background-color: #D4BDA4 !important;
    color: white !important;
}
.banner-col-left {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    align-self: center;
}
.banner-image { text-align: center; }
.banner-image img {
    max-width: 100%;
    height: 500px !important;
    width: auto !important;
    object-fit: cover !important;
    object-position: center center;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
}

/* Banner Wave Divider */
.banner-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}
.banner-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media screen and (max-width: 991px) {
    .banner-main-text,
    .banner-col-left {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    .banner-buttons-row { justify-content: center; }
    .banner-btn-col { flex: 0 0 auto; }
    .banner-image img { max-width: 400px; margin: 2rem auto 0; }
}
@media screen and (max-width: 767px) {
    #banner { min-height: 400px !important; padding-top: calc(var(--header-height) + 1rem); padding-bottom: 80px; }
    .banner-wave { display: none; }
    .banner-image img {
        height: auto !important;
        width: 500px !important;
        max-width: 100%;
        object-fit: contain !important;
    }
    .banner-col-left { margin-bottom: 20px; }
    .banner-btn-col { flex: 0 0 100%; max-width: 100%; margin-top: 0.5rem; }
    .read-more { text-align: center; }
}
@media (max-width: 480px) {
    #banner { min-height: 300px !important; }
    .banner-image img { width: 350px !important; object-fit: contain !important; }
    .inner_carousel h2 { font-size: 1.6rem; }
    .inner_carousel .slider-para { font-size: 15px; }
    .read-more a { padding: 10px 16px; font-size: 0.9rem; }
}

/* ==========================================
   VIDEO SECTION
   ========================================== */
#techwind-video {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--secondary) 100%);
    padding: clamp(4rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
}
.video-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-align: center;
}
.video-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-medium);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.video-wrapper { display: flex; justify-content: center; }
.video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 800px;
    width: 100%;
    background: #000;
}
.video-container video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.video-play-btn:hover { transform: translate(-50%,-50%) scale(1.1); }
.video-play-btn.hidden { display: none; }

@media (max-width: 768px) {
    .video-container video { height: 280px; }
    .video-play-btn { width: 60px; height: 60px; font-size: 2rem; }
}

/* ==========================================
   PROBLEMS SECTION
   ========================================== */
#techwind-problems {
    background: var(--bg-white);
    padding: clamp(4rem, 8vw, 6rem) 0;
}
.problems-header { text-align: center; margin-bottom: 3rem; }
.problems-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.problems-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.problem-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.problem-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(182,93,59,0.3);
    transition: var(--transition);
}
.problem-item:hover .problem-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(182,93,59,0.4);
}
.problem-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.problem-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}
.final-statement {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 3rem;
    line-height: 1.3;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
#services {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-cream) 100%);
    padding: clamp(4rem, 8vw, 6rem) 0;
}
.services-subtitle {
    display: block;
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.service-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
    opacity: 0.5;
}
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(182,93,59,0.1);
    font-size: 2.5rem;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}
.service-card h4 { margin-bottom: 1rem; }
.service-card h4 a { color: var(--text-dark); transition: var(--transition); }
.service-card:hover h4 a { color: var(--primary); }
.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}
.service-link:hover { transform: translateX(5px); color: var(--primary-dark); }

/* ==========================================
   MODERN SAAS HERO (Techwind)
   ========================================== */
#techwind-hero {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--secondary) 100%);
    padding: clamp(4rem, 10vw, 8rem) 0;
    position: relative;
    overflow: hidden;
}
#techwind-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, var(--sage) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, var(--bg-white) 0%, transparent 50%);
    opacity: 0.05;
    z-index: 0;
}
#techwind-hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-content { animation: fadeInUp 0.8s ease; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(109,128,92,0.1);
    color: var(--sage);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(109,128,92,0.2);
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
}
.hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.hero-stats .stat-item i {
    font-size: 2rem;
    color: var(--primary);
}
.hero-stats .stat-content h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}
.hero-stats .stat-content p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.hero-image { animation: fadeInRight 0.8s ease; }
.hero-image-grid { position: relative; }
.hero-image-main {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-image-main img { width: 100%; height: auto; display: block; }
.hero-image-float {
    position: absolute;
    top: -20px;
    right: -30px;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}
.hero-image-float img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 180px;
}

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

@media (max-width: 992px) {
    #techwind-hero .container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
    .hero-stats { justify-content: center; flex-direction: column; align-items: center; }
    .hero-image-float { position: static; animation: none; margin-top: 1rem; text-align: center; }
    .hero-image-float img { max-width: 140px; margin: 0 auto; }
}

/* ==========================================
   CEO SECTION
   ========================================== */
#techwind-ceo {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--bg-beige);
    position: relative;
    overflow: hidden;
}
.ceo-minimalist-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}
.ceo-photo-section { position: relative; }
.ceo-photo-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.ceo-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.ceo-photo-decoration {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    border: 4px solid var(--primary);
    border-radius: var(--radius);
    z-index: -1;
}
.bio-content { padding: 1rem 0; }
.bio-header { margin-bottom: 1.5rem; }
.bio-header h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}
.ceo-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}
.bio-text p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}
.bio-signature {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    padding-top: 1rem;
    border-top: 3px solid var(--primary);
    display: inline-block;
}

@media (max-width: 992px) {
    .ceo-minimalist-layout { grid-template-columns: 1fr; gap: 2rem; }
    .ceo-photo { height: 350px; }
    .bio-header h4 { font-size: 1.6rem; }
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
#techwind-testimonials {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--bg-light);
}
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.testimonials-subtitle {
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}
.testimonial-logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    border-radius: 8px;
}
.testimonial-card h4 {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.testimonial-card .client-industry {
    text-align: center;
    color: var(--text-gray);
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.testimonial-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}
.testimonial-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 0.65rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.testimonial-video-btn:hover { background: var(--primary-dark); color: white; }

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: clamp(4rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 0;
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-text h2 {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}
.cta-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.cta-button:hover {
    background: rgba(255,255,255,0.25);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* ==========================================
   SOCIAL / INSTAGRAM SECTION
   ========================================== */
#social-section {
    background: var(--bg-white);
    padding: clamp(4rem, 8vw, 6rem) 0;
}
.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
.instagram-header {
    text-align: center;
    margin-bottom: 2rem;
}
.instagram-header i { font-size: 2rem; color: var(--primary); margin-bottom: 0.5rem; }
.instagram-header h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.instagram-header p { color: var(--text-medium); }

.social-post-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}
.social-post-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.social-platform-name {
    font-weight: 600;
    color: var(--text-dark);
}
.social-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.social-follow-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: white; }

/* Sidebar Stats */
.social-stats-sidebar { display: flex; flex-direction: column; gap: 2rem; }
.stats-card, .newsletter-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border);
}
.stats-header, .newsletter-header { text-align: center; margin-bottom: 1.5rem; }
.stats-header i, .newsletter-header i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.stats-header h6, .newsletter-header h6 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
}
.stats-header p, .newsletter-header p {
    color: var(--text-medium);
    font-size: 0.875rem;
}
.stats-content { display: flex; flex-direction: column; gap: 1rem; }

.newsletter-form-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.newsletter-form-sidebar input {
    padding: 0.85rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}
.newsletter-form-sidebar input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(182,93,59,0.1);
}
.newsletter-form-sidebar button {
    padding: 0.85rem;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
}
.newsletter-form-sidebar button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
    .social-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.9);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .logo-footer { margin-bottom: 1rem; }
.footer-brand .logo-footer img { width: 160px; height: auto; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 300px; }
.footer h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}
.footer ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}
.footer a:hover { color: var(--secondary); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--secondary);
    color: var(--text-dark);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { max-width: 100%; }
    .footer-social { justify-content: center; }
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   WOW.JS ANIMATION FALLBACK
   ========================================== */
.wow { visibility: hidden; }
.wow.animated { visibility: visible; }
@keyframes bounceInDown {
    0% { opacity: 0; transform: translateY(-60px); }
    60% { opacity: 1; transform: translateY(15px); }
    80% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}
.bounceInDown {
    animation-name: bounceInDown;
    animation-duration: 3s;
}

/* ==========================================
   FACEBOOK EMBED OVERRIDES
   ========================================== */
.fb-page, .fb-post, .fb-embed {
    max-width: 100% !important;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */
@media (max-width: 480px) {
    .read-more a { width: 100%; justify-content: center; text-align: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .problem-item { flex-direction: column; align-items: center; text-align: center; }
    .service-card { padding: 2rem 1.25rem; }
    .testimonial-card { padding: 1.5rem; }
}
