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

:root {
    /* Primary Colors - Dark Blue (from logo - AC unit and gears) */
    --primary-color: #1e3a8a;
    --primary-dark: #1e3a8a;
    --primary-light: #1e3a8a;

    /* Secondary Colors - Red (from logo - fan and screwdriver) */
    --secondary-color: #ef4444;
    --secondary-dark: #dc2626;
    --secondary-light: #f87171;

    /* Accent Colors - Using only logo colors */
    --accent-red: #1e3a8a;
    --accent-blue: #1e3a8a;

    /* WhatsApp Color */
    --whatsapp-green: #25d366;
    --whatsapp-dark: #128c7e;

    /* Neutral Colors */
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --light-bg: #f9fafb;

    /* Gradients - Using only logo colors (dark blue #1e3a8a and red #ef4444) */
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #1e3a8a 100%);
    --gradient-secondary: linear-gradient(135deg, #ef4444 0%, #ef4444 100%);
    --gradient-red-blue: linear-gradient(135deg, #ef4444 0%, #1e3a8a 100%);
    --gradient-dark: linear-gradient(135deg, #1e3a8a 0%, #1e3a8a 100%);
    --gradient-hero: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(30, 58, 138, 0.9) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* ===================================
   Top Bar
   =================================== */
.top-bar {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    transition: var(--transition-fast);
}

.top-contact:hover {
    color: var(--accent-red);
}

.top-contact i {
    font-size: 16px;
}

.opening-hours {
    display: flex;
    align-items: center;
    gap: 8px;
}

.opening-hours i {
    color: var(--accent-red);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-image {
    /*height: 50px;*/
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: var(--transition-normal);
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    display: none;
    font-weight: 700;
    background: linear-gradient(135deg, #ef4444 0%, #1e3a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .logo-text {
        display: inline;
    }
}

@media (max-width: 767px) {
    .logo-image {
        height: 45px;
        max-width: 180px;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a i {
    font-size: 12px;
    transition: var(--transition-fast);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover>a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
    margin-top: 10px;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp-alt {
    background: var(--white);
    color: var(--whatsapp-green);
    border: 2px solid var(--whatsapp-green);
}

.btn-whatsapp-alt:hover {
    background: var(--whatsapp-green);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    background: var(--gradient-hero);
    background-image: url('../images/hero-technician.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 80px 0 60px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(239, 68, 68, 0.75) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    z-index: 3;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    color: var(--accent-red);
    font-size: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.98);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.92);
    animation: fadeInUp 0.8s ease 0.3s backwards;
    max-width: 95%;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-cta .btn {
    font-size: 16px;
    padding: 14px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.18);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition-normal);
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.feature-badge i {
    color: var(--accent-red);
    font-size: 16px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

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

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-floating-card {
    position: absolute;
    bottom: 50px;
    left: -20px;
    background: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s ease-in-out infinite;
    z-index: 10;
    min-width: 220px;
}

.hero-stats-box {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.stats-box-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    animation: slideInRight 0.8s ease 0.3s backwards;
}

.stats-box-item i {
    color: var(--accent-red);
    font-size: 20px;
}

.stats-box-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.floating-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-red-blue);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-icon i {
    font-size: 24px;
    color: var(--white);
}

.floating-card-text {
    display: flex;
    flex-direction: column;
}

.floating-card-text strong {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 3px;
}

.floating-card-text span {
    font-size: 13px;
    color: var(--text-gray);
}

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

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-15px) translateX(5px);
    }
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose-us {
    background: var(--light-bg);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.comparison-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.comparison-card.others h3 {
    color: var(--accent-red);
}

.comparison-card.ahmad {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.comparison-card.ahmad h3 {
    color: var(--white);
}

.best-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
    padding: 8px 0;
}

.comparison-list i {
    font-size: 20px;
    flex-shrink: 0;
}

.comparison-card.others .comparison-list i {
    color: var(--primary-dark);
}

.comparison-card.ahmad .comparison-list i {
    color: var(--white);
}

/* ===================================
   Services Section
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-card.featured {
    background: var(--white);
    color: var(--text-dark);
    border-color: var(--primary-color);
    border-width: 3px;
}

.service-card.featured:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.service-card.featured .service-image {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--gradient-primary);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.service-card.featured .service-icon {
    background: var(--gradient-red-blue);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    padding: 0 35px;
}

.service-card.featured h3 {
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
    padding: 0 35px;
}

.service-card.featured p {
    color: var(--text-gray);
}

.service-features {
    margin-bottom: 20px;
    padding: 0 35px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-gray);
}

.service-card.featured .service-features li {
    color: var(--text-gray);
}

.service-card.featured .service-features li i {
    color: var(--accent-red);
}

.service-features i {
    color: var(--accent-red);
    font-size: 16px;
}

.service-card.featured .service-features i {
    color: var(--accent-red);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-fast);
    padding: 0 35px 35px;
    margin-top: auto;
}

.service-card.featured .service-link {
    color: var(--primary-color);
}

.service-card.featured .service-link:hover {
    color: var(--accent-red);
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    transition: var(--transition-fast);
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 36px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===================================
   Service Areas Section
   =================================== */
.service-areas {
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.area-item {
    background: var(--light-bg);
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.area-item:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.area-item i {
    margin-right: 8px;
    color: var(--accent-red);
}

.area-item:hover i {
    color: var(--white);
}

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

.testimonials-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 25px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.rating-stars-large {
    display: flex;
    gap: 5px;
}

.rating-stars-large i {
    color: var(--accent-red);
    font-size: 28px;
}

.rating-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rating-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

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

.testimonials-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0 40px;
    margin: 0 -20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-bg);
}

.testimonials-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.testimonials-scroll-container::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: var(--radius-full);
}

.testimonials-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

.testimonials-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.testimonials-grid {
    display: flex;
    gap: 25px;
    padding: 0 20px;
    min-width: max-content;
}

.testimonials-grid .testimonial-card {
    flex: 0 0 380px;
    min-width: 380px;
    max-width: 380px;
}

.testimonial-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: testimonialFadeIn 0.6s ease forwards;
}

@keyframes testimonialFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }
.testimonial-card:nth-child(7) { animation-delay: 0.7s; }
.testimonial-card:nth-child(8) { animation-delay: 0.8s; }

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.stars {
    display: flex;
    gap: 3px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: #10b981;
    font-size: 18px;
}

.testimonial-platform {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.testimonial-platform img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.testimonial-platform .google-logo-fallback {
    color: #4285F4;
    font-size: 20px;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
    flex-grow: 1;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 3px solid var(--white);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-full);
}

.author-avatar i {
    font-size: 24px;
    color: var(--white);
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===================================
   Trusted Brands Section
   =================================== */
.trusted-brands {
    background: var(--white);
    padding: 100px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.brand-card {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-red);
    background: var(--light-bg);
}

.brand-logo {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-card:hover .brand-name {
    color: var(--accent-red);
}

.brand-text {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.brand-card:hover .brand-text {
    color: var(--text-dark);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 70px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-domain-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 300px;
}

.footer-domain-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-domain-btn i {
    color: var(--accent-red);
    font-size: 18px;
    flex-shrink: 0;
}

.footer-domain-btn span {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.social-links a i {
    font-size: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
    font-size: 15px;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact i {
    color: var(--accent-red);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
    font-size: 15px;
    line-height: 1.5;
}

.footer-contact a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.6;
}

.footer-bottom a {
    color: var(--accent-red);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ===================================
   Floating Buttons
   =================================== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-btn i {
    font-size: 24px;
    color: var(--white);
}

.call-btn {
    background: var(--gradient-primary);
}

.whatsapp-btn {
    background: var(--whatsapp-green);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   Scroll to Top
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.scroll-top i {
    font-size: 20px;
}

/* ===================================
   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);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(30, 58, 138, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(30, 58, 138, 0);
    }
}

/* ===================================
   Page Header (for inner pages)
   =================================== */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

/* ===================================
   About Page Styles
   =================================== */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    font-size: 17px;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.mission-values {
    background: var(--light-bg);
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i {
    font-size: 36px;
    color: var(--white);
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mission-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.why-trust {
    padding: 80px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 30px;
}

.trust-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.trust-item p {
    color: var(--text-gray);
}

.expertise {
    background: var(--light-bg);
    padding: 80px 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.expertise-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.expertise-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.expertise-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.expertise-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 15px;
}

.owner-section {
    padding: 80px 0;
}

.owner-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.owner-photo {
    width: 250px;
    height: 250px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.owner-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: var(--radius-full);
}

.owner-photo i {
    font-size: 100px;
    color: var(--white);
}

.owner-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.owner-text h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.owner-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    font-size: 17px;
}

.owner-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.owner-signature strong {
    display: block;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.owner-signature span {
    color: var(--text-gray);
    font-size: 14px;
}

/* ===================================
   Contact Page Styles
   =================================== */
.contact-page-content {
    padding: 80px 0;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-column {
    flex: 1;
    min-width: 300px;
}

.contact-form-column {
    flex: 1;
    min-width: 300px;
}

@media (max-width: 768px) {
    .contact-page-content {
        padding: 40px 0;
    }
    
    .contact-page-content .container {
        padding: 0;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
        margin: 0;
        padding: 0;
    }
    
    .contact-info-column,
    .contact-form-column {
        width: 100%;
        min-width: 100%;
        flex: 1 1 100%;
        margin: 0;
        padding: 0 15px;
    }
    
    .contact-form {
        margin: 0 -15px !important;
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 30px 20px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border-left: none !important;
        border-right: none !important;
    }
        min-width: 100%;
        flex: 1 1 100%;
    }
    
    .contact-form {
        margin: 0 -15px;
        width: calc(100% + 30px);
        padding: 30px 20px !important;
        border-radius: 0 !important;
    }
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-box {
    background: var(--light-bg);
    padding: 40px;
    border-radius: var(--radius-xl);
}

.contact-info-box h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 24px;
    color: var(--white);
}

.contact-info-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-info-text p,
.contact-info-text a {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-info-text a:hover {
    color: var(--primary-color);
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form-box h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

#formMessage {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 500;
    line-height: 1.6;
    display: none;
}

#formMessage.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

#formMessage.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition-fast);
}

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.map-section {
    padding: 0;
    margin-top: 80px;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===================================
   Blog Page Styles
   =================================== */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.blog-image {
    width: 100%;
    height: 220px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image i {
    font-size: 60px;
    color: var(--white);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.blog-content h3 a {
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-fast);
}

.read-more:hover {
    gap: 12px;
}

.blog-image {
    position: relative;
}

.blog-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--white);
    padding: 6px 15px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.blog-category {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 60px;
}

/* ===================================
   Blog Detail Page Styles
   =================================== */
.blog-detail-header {
    padding: 30px 0;
    background: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

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

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-dark);
}

.blog-detail-section {
    padding: 60px 0;
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.blog-detail-main {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-content {
    padding: 40px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-gray);
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-meta i {
    color: var(--primary-color);
}

.blog-detail-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.blog-detail-body {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 16px;
}

.blog-detail-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-detail-body h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 12px;
}

.blog-detail-body ul,
.blog-detail-body ol {
    margin: 15px 0;
    padding-left: 30px;
}

.blog-detail-body li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.blog-detail-body strong {
    color: var(--text-dark);
    font-weight: 600;
}

.blog-detail-body p {
    margin-bottom: 20px;
}

.blog-detail-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 20px;
}

.blog-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.blog-tags i {
    color: var(--primary-color);
}

.blog-tags a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 5px 12px;
    background: var(--light-bg);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.blog-tags a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: var(--text-gray);
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.sidebar-widget h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.recent-post-content {
    flex: 1;
}

.recent-post-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.recent-post-content h4 a:hover {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 13px;
    color: var(--text-gray);
}

/* ===================================
   Service Detail Page Styles
   =================================== */
.service-detail {
    padding: 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    padding: 80px 0;
}

@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-sidebar {
        position: static;
    }
}

.service-main-content {
    background: var(--white);
    padding: 0;
    position: relative;
    overflow-x: visible;
}

.service-main-content > * {
    margin-bottom: 0;
}

.service-banner {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 40px;
    border-radius: 0;
    margin: 0 0 40px 0;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.service-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(239, 68, 68, 0.75) 100%);
    z-index: 1;
}

.service-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

@media (max-width: 768px) {
    .service-banner {
        padding: 50px 20px;
        min-height: 250px;
    }
    
    .service-detail-grid {
        padding: 40px 0;
    }
    
    .service-banner-content h1 {
        font-size: 32px;
    }
    
    .service-banner-content p {
        font-size: 18px;
    }
}

.service-banner-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-banner-content p {
    font-size: 20px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.service-content-section {
    margin-bottom: 50px;
    padding: 0;
}

.service-content-section ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.service-content-section:last-child {
    margin-bottom: 0;
}

.service-content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-content-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-content-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-content-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    padding: 12px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
}

.service-content-section ul li:hover {
    background: rgba(30, 58, 138, 0.05);
    transform: translateX(5px);
}

.service-content-section ul li i {
    color: var(--accent-red);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 18px;
}

.process-steps {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.process-step {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.sidebar-cta {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.sidebar-cta h3 {
    color: var(--white);
}

.sidebar-cta p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.sidebar-services {
    list-style: none;
}

.sidebar-services li {
    margin-bottom: 12px;
}

.sidebar-services a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-lg);
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.sidebar-services a:hover,
.sidebar-services a.active {
    background: var(--light-bg);
    color: var(--primary-color);
}

.sidebar-services i {
    color: var(--primary-color);
}

.faq-section {
    margin-top: 50px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    cursor: pointer;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-color);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    color: var(--text-gray);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 10px;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        transition: var(--transition-normal);
        overflow-y: auto;
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links a {
        padding: 15px 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        background: var(--light-bg);
        margin-top: 0;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-cta {
        width: 100%;
        margin-top: 20px;
    }

    .nav-cta .btn {
        width: 100%;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 40px 0 30px;
        min-height: auto;
        background-position: center center;
    }

    .hero .container {
        padding: 0 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

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

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-features {
        gap: 8px;
        justify-content: center;
        margin-bottom: 20px;
    }

    .feature-badge {
        padding: 6px 12px;
        font-size: 12px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-item {
        text-align: center;
        flex: 1;
        min-width: 80px;
    }

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

    .stat-label {
        font-size: 11px;
    }

    .hero-image-wrapper {
        height: auto;
        min-height: 250px;
        margin-top: 20px;
    }

    .hero-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 15px auto;
        width: 100%;
        max-width: 280px;
        padding: 15px 18px;
    }

    .hero-stats-box {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin-top: 15px;
        width: 100%;
        align-items: center;
    }

    .stats-box-item {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

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

    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .blog-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-detail-title {
        font-size: 28px;
    }

    .blog-detail-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    .blog-detail-image {
        height: 250px;
    }

    .blog-detail-content {
        padding: 25px;
    }

    .blog-detail-title {
        font-size: 24px;
    }

    .blog-detail-body {
        font-size: 15px;
    }

    .footer {
        padding: 50px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }

    .footer-col h3,
    .footer-col h4 {
        margin-bottom: 15px;
    }

    .footer-domain-btn {
        max-width: 100%;
    }

    .top-bar-content {
        justify-content: center;
        text-align: center;
    }

    .hero {
        padding: 30px 0 25px;
        background-position: center center;
        background-size: cover;
    }

    .hero .container {
        padding: 0 15px;
    }

    .hero-content {
        gap: 25px;
    }

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

    .hero-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 18px;
    }

    .hero-cta .btn {
        width: 100%;
        font-size: 14px;
        padding: 12px 20px;
    }

    .hero-features {
        gap: 6px;
        justify-content: center;
        margin-bottom: 18px;
    }

    .feature-badge {
        padding: 5px 10px;
        font-size: 11px;
    }

    .hero-stats {
        gap: 15px;
        justify-content: center;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-item {
        text-align: center;
        flex: 1;
        min-width: 70px;
    }

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

    .stat-label {
        font-size: 10px;
    }

    .hero-image-wrapper {
        min-height: 200px;
        margin-top: 15px;
    }

    .hero-floating-card {
        max-width: 260px;
        padding: 12px 16px;
    }

    .stats-box-item {
        max-width: 260px;
        padding: 10px 15px;
    }

    .stat-label {
        font-size: 12px;
    }

    section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-scroll-container {
        margin: 0 -15px;
        padding: 15px 0 30px;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }

    .brand-card {
        padding: 20px 15px;
        min-height: 130px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-text {
        font-size: 12px;
    }

    .testimonials-grid {
        padding: 0 15px;
    }

    .testimonials-grid .testimonial-card {
        flex: 0 0 320px;
        min-width: 320px;
        max-width: 320px;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }

    .brand-card {
        padding: 20px 15px;
        min-height: 130px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-text {
        font-size: 12px;
    }flex: 0 0 320px;
        min-width: 320px;
        max-width: 320px;
    }
    
    .rating-badge {
        flex-direction: column;
        gap: 15px;
        padding: 20px 30px;
    }
    
    .about-grid,
    .owner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .owner-photo {
        width: 200px;
        height: 200px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

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

    .cta-buttons .btn {
        width: 100%;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn i {
        font-size: 24px;
    }

    .scroll-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 25px 0 20px;
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.3;
    }

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

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

    .hero-cta .btn {
        font-size: 13px;
        padding: 11px 18px;
    }

    .feature-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

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

    .stat-label {
        font-size: 9px;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }

    .brand-card {
        padding: 18px 12px;
        min-height: 120px;
    }

    .brand-name {
        font-size: 14px;
    }

    .brand-text {
        font-size: 11px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .service-card,
    .feature-card,
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonials-rating {
        margin-bottom: 30px;
    }
    
    .rating-badge {
        padding: 20px;
    }
    
    .rating-number {
        font-size: 28px;
    }
    
    .rating-stars-large i {
        font-size: 24px;
    }
}