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

:root {
    --primary: #3A7D2C;
    --primary-dark: #2D6322;
    --primary-light: #4A9B38;
    --primary-rgb: 58, 125, 44;
    --secondary: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 4px 20px rgba(58, 125, 44, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
}

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

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary);
    position: relative;
}

.section-badge {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(58, 125, 44, 0.35);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}

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

.btn-white:hover {
    background: transparent;
    color: var(--secondary);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--text-dark);
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-xl {
    padding: 20px 48px;
    font-size: 20px;
    border-radius: var(--radius-lg);
}

/* ===========================
   Header
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-gray);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.btn-header {
    padding: 12px 28px;
    font-size: 15px;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f5faf4 50%, #eaf5e8 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(var(--primary-rgb), 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(var(--primary-rgb), 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 28px;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    padding: 32px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 8px;
    font-weight: 500;
}

/* Countdown Timer */
.countdown-timer {
    margin-top: 32px;
}

.countdown-label {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 16px;
    font-weight: 500;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.timer-item {
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    min-width: 85px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.timer-value {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.timer-label {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 6px;
    font-weight: 500;
}

.timer-separator {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

/* ===========================
   Section Styling
   =========================== */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 56px;
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   Problem Section
   =========================== */
.problem {
    background: var(--bg-white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 56px;
}

.problem-item {
    background: var(--bg-light);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.problem-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--primary-rgb), 0.1);
}

.problem-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.problem-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.problem-item p {
    font-size: 15px;
    color: var(--text-gray);
}

.problem-solution {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.solution-content {
    position: relative;
    z-index: 2;
    padding: 48px;
    text-align: center;
    color: var(--secondary);
}

.solution-content h3 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.solution-content p {
    font-size: 18px;
    margin-bottom: 28px;
    line-height: 1.8;
    opacity: 0.95;
}

/* ===========================
   Services Section
   =========================== */
.services {
    background: var(--bg-light);
}

/* Single Service Card Layout */
.services-single {
    max-width: 900px;
    margin: 0 auto;
}

.service-card-large {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(var(--primary-rgb), 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-card-content {
    display: flex;
    gap: 48px;
    padding: 48px;
    align-items: flex-start;
}

.service-icon-large {
    font-size: 80px;
    flex-shrink: 0;
}

.service-details {
    flex: 1;
}

.service-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-description {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 2px solid rgba(0, 0, 0, 0.06);
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-from {
    font-size: 14px;
    color: var(--text-gray);
}

.price-value {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary);
}

.price-old {
    font-size: 18px;
    color: var(--text-gray);
    text-decoration: line-through;
    opacity: 0.7;
}

.price-currency {
    font-size: 18px;
    color: var(--text-gray);
}

/* ===========================
   Portfolio Section (NEW)
   =========================== */
.portfolio {
    background: var(--bg-white);
    padding: 100px 0;
}

.portfolio-slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 20px;
}

.portfolio-slider {
    display: flex;
    gap: 24px;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.portfolio-slider:active {
    cursor: grabbing;
}

.portfolio-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
}

.portfolio-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.15);
}

.portfolio-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.portfolio-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.portfolio-card:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light), #e8e8e8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.placeholder-icon {
    font-size: 64px;
    opacity: 0.8;
}

.placeholder-text {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-category {
    background: var(--primary);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.portfolio-view {
    background: var(--secondary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-link:hover .portfolio-view {
    background: var(--primary);
    color: var(--secondary);
}

.portfolio-info {
    padding: 24px;
}

.portfolio-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.portfolio-info p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.portfolio-tags span {
    background: var(--bg-light);
    color: var(--text-gray);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary);
}

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

.slider-prev {
    right: 20px;
}

.slider-next {
    left: 20px;
}

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

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.portfolio-cta {
    text-align: center;
    margin-top: 48px;
}

.portfolio-cta p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* ===========================
   Process Section
   =========================== */
.process {
    background: var(--bg-light);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-track {
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.process-timeline .timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}

.process-timeline .timeline-item:last-child {
    margin-bottom: 0;
}

.process-timeline .timeline-number {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
    z-index: 2;
    border: 4px solid var(--bg-light);
}

.process-timeline .timeline-content {
    flex: 1;
    background: var(--bg-white);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.process-timeline .timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(-8px);
}

.timeline-day {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.process-timeline .timeline-content h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.process-timeline .timeline-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.process-cta {
    text-align: center;
    margin-top: 56px;
}

/* ===========================
   Audience Section
   =========================== */
.audience {
    background: var(--bg-white);
}

.checklist {
    max-width: 750px;
    margin: 0 auto 48px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-light);
    padding: 22px 28px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    font-size: 17px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.checklist-item:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--primary-rgb), 0.1);
    background: var(--bg-white);
}

.check-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.audience-cta {
    text-align: center;
}

/* ===========================
   Guarantee Section
   =========================== */
.guarantee {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.guarantee-box {
    background: var(--bg-white);
    padding: 64px 56px;
    border-radius: var(--radius-xl);
    border: 3px solid var(--gold);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.guarantee-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.guarantee-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.guarantee-intro {
    font-size: 18px;
    color: var(--text-gray);
    margin-top: 20px;
    line-height: 1.8;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.guarantee-item {
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #fffef5, #fff);
    box-shadow: var(--shadow-md);
}

.guarantee-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.guarantee-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.guarantee-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.guarantee-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid var(--gold);
    position: relative;
    z-index: 2;
}

.guarantee-closing {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ===========================
   Testimonials Section (NEW)
   =========================== */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 36px 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--primary-rgb), 0.1);
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===========================
   FAQ Section (NEW)
   =========================== */
.faq {
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
    transition: all 0.3s ease;
}

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

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===========================
   Final CTA Section
   =========================== */
.cta-final {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

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

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 24px;
}

.cta-text {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 500;
}

.cta-subtext {
    font-size: 20px;
    margin-bottom: 48px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-urgency {
    background: rgba(255, 255, 255, 0.15);
    padding: 18px 36px;
    border-radius: var(--radius-full);
    display: inline-block;
}

.cta-urgency p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--text-dark);
    color: var(--secondary);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo .logo-text {
    color: var(--secondary);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 8px;
}

.footer-tagline {
    color: var(--primary-light) !important;
    font-weight: 600;
    margin-top: 12px !important;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links a,
.footer-contact a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--secondary);
    padding-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(10px);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--text-dark);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* ===========================
   Animations
   =========================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .portfolio-slide {
        flex: 0 0 calc(50% - 12px);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .hero {
        padding: 120px 0 80px;
    }

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

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 32px;
    }

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

    /* Service Card Large Responsive */
    .service-card-content {
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
    }

    .service-icon-large {
        font-size: 60px;
    }

    .service-title {
        font-size: 26px;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .service-footer {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .service-footer .btn {
        width: 100%;
    }

    .process-timeline .timeline-content {
        padding: 24px;
    }

    .timeline-track {
        right: 20px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-text {
        font-size: 20px;
    }

    .guarantee-box {
        padding: 40px 28px;
    }

    .countdown-wrapper {
        gap: 8px;
    }

    .timer-item {
        padding: 12px 14px;
        min-width: 65px;
    }

    .timer-value {
        font-size: 24px;
    }

    .portfolio-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

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

    .slider-prev {
        right: 10px;
    }

    .slider-next {
        left: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .btn-large, .btn-xl {
        width: 100%;
    }

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

    .problem-grid,
    .guarantee-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-card-content {
        padding: 24px 20px;
    }

    .price-value {
        font-size: 36px;
    }

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

    .cta-text {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .countdown-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .timer-item {
        flex: 0 0 calc(50% - 20px);
    }

    .timer-separator {
        display: none;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}
