/**
 * Royal Teknik - Main Stylesheet
 * Modern, Animated & Responsive Design
 */

/* ======================================
   CSS Variables
====================================== */
:root {
    /* Colors */
    --primary-color: #0066cc;
    --primary-dark: #004499;
    --primary-light: #3399ff;
    --secondary-color: #00c9a7;
    --accent-color: #ff6b35;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #00c9a7 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-preloader: 400;
}

/* ======================================
   Reset & Base Styles
====================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: var(--line-height-base);
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ======================================
   Preloader
====================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: var(--z-preloader);
    transition: opacity 0.5s, visibility 0.5s;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    max-width: min(200px, 60vw);
    max-height: min(80px, 12vh);
    width: auto;
    height: auto;
    object-fit: contain;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    position: relative;
}

.loader::before,
.loader-inner {
    content: '';
    position: absolute;
    border-radius: var(--radius-full);
}

.loader::before {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-inner {
    width: 28px;
    height: 28px;
    background: var(--gradient-dark);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* ======================================
   Header
====================================== */
.cs-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
}

.cs-header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.cs-header.scrolled .cs-top_bar {
    display: none;
}

/* Top Bar */
.cs-top_bar {
    background: var(--white);
    padding: 10px 0;
    color: #333;
    font-size: 0.875rem;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.cs-top_bar_in {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cs-top_bar_list {
    display: flex;
    gap: 25px;
}

.cs-top_bar_list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1f2937;
}

.cs-top_bar_list i {
    color: #000000;
    font-size: 1rem;
}

.cs-top_bar_list a {
    color: #1f2937;
    font-weight: 500;
}

.cs-top_bar_list a:hover {
    color: var(--primary-color);
}

.cs-social_btns {
    display: flex;
    gap: 10px;
}

.cs-social_btns a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #1f2937;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    border: 1px solid #e5e7eb;
}

.cs-social_btns a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Main Header - Hero Section Style */
.cs-main_header {
    background: var(--gradient-dark);
    padding: 20px 0;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cs-header:not(.scrolled) .cs-main_header {
    background: var(--gradient-dark);
    backdrop-filter: blur(20px);
}

.cs-header.scrolled .cs-main_header {
    background: var(--gradient-dark);
}

.cs-main_header_in {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cs-site_branding img {
    max-height: 55px;
    transition: all var(--transition-base);
    filter: brightness(1.1) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.cs-site_branding:hover img {
    transform: scale(1.05);
}

/* Navigation - Hero Style */
.cs-nav_list {
    display: flex;
    gap: 5px;
}

.cs-nav_list > li {
    position: relative;
}

.cs-nav_list > li > a {
    display: block;
    padding: 12px 20px;
    font-weight: 600;
    color: var(--white);
    position: relative;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cs-nav_list > li > a:hover {
    background: rgba(255,255,255,0.1);
    color: #e5e7eb;
}

.cs-nav_list > li > a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #9ca3af;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.cs-nav_list > li:hover > a::after,
.cs-nav_list > li.active > a::after {
    transform: scaleX(1);
}

/* Dropdown Menu */
.cs-dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.menu-item-has-children:hover .cs-dropdown_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cs-dropdown_menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-700);
    transition: all var(--transition-base);
}

.cs-dropdown_menu li a:hover {
    background: var(--gray-100);
    color: var(--primary-color);
    padding-left: 25px;
}

/* CTA Button */
.cs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.cs-btn.cs-style1 {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,102,204,0.4);
}

.cs-btn.cs-style1:hover {
    background: linear-gradient(135deg, #4b5563 0%, #6b7280 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(75,85,99,0.5);
}

.cs-btn.cs-style2 {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cs-btn.cs-style2:hover {
    background: linear-gradient(135deg, #4b5563 0%, #6b7280 100%);
    border-color: #6b7280;
    color: var(--white);
}

/* Mobile Menu Toggle */
.cs-menu_toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    padding: 5px;
}

.cs-menu_toggle span {
    width: 100%;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* Mobile Menu */
.cs-mobile_menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(180deg, #1e3a5f 0%, #0f2847 100%);
    z-index: var(--z-modal);
    transition: right var(--transition-slow);
    overflow-y: auto;
}

.cs-mobile_menu.active {
    right: 0;
}

.cs-mobile_menu_in {
    padding: 20px;
}

.cs-mobile_menu_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.cs-mobile_menu_header .cs-site_branding {
    background: transparent;
    padding: 8px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.cs-mobile_menu_header .cs-site_branding img {
    height: 45px;
    width: auto;
}

.cs-menu_close {
    font-size: 2rem;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
}

.cs-mobile_nav_list > li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cs-mobile_nav_list > li > a {
    display: block;
    padding: 15px 0;
    font-weight: 500;
    color: #ffffff;
}

.cs-mobile_nav_list .menu-item-has-children {
    position: relative;
}

.cs-submenu_toggle {
    position: absolute;
    right: 0;
    top: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

.cs-mobile_nav_list .cs-dropdown_menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    display: none;
    background: rgba(0,0,0,0.2);
    border-radius: 6px;
    margin-top: 8px;
    padding: 10px 20px;
}

.cs-mobile_nav_list .cs-dropdown_menu a {
    color: rgba(255,255,255,0.95);
}

.cs-mobile_nav_list .menu-item-has-children.active .cs-dropdown_menu {
    display: block;
}

.cs-mobile_menu_footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cs-mobile_menu_footer .cs-social_btns a {
    color: #000000;
    background: rgba(255,255,255,0.9);
    border-radius: 4px;
}

/* ======================================
   Hero Section
====================================== */
.cs-hero.cs-style6 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
    padding-top: 120px;
    padding-bottom: 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.cs-hero.cs-style6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.4) 0%, rgba(0,102,204,0.3) 100%);
}

.cs-hero .container {
    position: relative;
    z-index: 1;
}

.cs-hero .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.cs-hero .col-xl-7,
.cs-hero .col-xl-5 {
    padding: 0 15px;
}

.cs-hero .col-xl-7 {
    flex: 0 0 58.33%;
    max-width: 58.33%;
}

.cs-hero .col-xl-5 {
    flex: 0 0 41.67%;
    max-width: 41.67%;
}

.cs-hero_text {
    color: var(--white);
}

.cs-hero_title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.cs-hero_subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cs-text_btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    position: relative;
    padding-bottom: 5px;
}

.cs-text_btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
}

.cs-text_btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.cs-text_btn:hover {
    color: var(--secondary-color);
}

.cs-text_btn svg {
    transition: transform var(--transition-base);
}

.cs-text_btn:hover svg {
    transform: translateX(10px);
}

/* Hero Image */
.cs-hero_img {
    position: relative;
    text-align: center;
}

.cs-hero_img > img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Video Button */
.cs-hero_video_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    z-index: 2;
    animation: pulse-ring 2s ease-out infinite;
}

.cs-hero_video_btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: var(--primary-color);
    animation: pulse-ring 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ======================================
   Section Styles
====================================== */
.cs-section {
    padding: 80px 0;
}

.cs-section_heading {
    text-align: center;
    margin-bottom: 50px;
}

.cs-section_subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    padding: 0 20px;
}

.cs-section_subtitle::before,
.cs-section_subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.cs-section_subtitle::before { left: -30px; }
.cs-section_subtitle::after { right: -30px; }

.cs-section_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.cs-section_title span {
    color: var(--primary-color);
}

/* ======================================
   About Section
====================================== */
.cs-about {
    background: var(--gray-100);
}

.cs-about_text {
    max-width: 600px;
}

.cs-about_text p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.cs-about_img {
    position: relative;
    max-width: 450px;
}

.cs-about_img img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 100%;
}

.cs-about_experience {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cs-about_experience .number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.cs-about_experience .text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ======================================
   Services Section
====================================== */
.cs-services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cs-service_card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.cs-service_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.cs-service_card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.cs-service_card:hover::before {
    transform: scaleX(1);
}

.cs-service_icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
    transition: all var(--transition-base);
}

.cs-service_card:hover .cs-service_icon {
    transform: rotateY(180deg);
}

.cs-service_title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cs-service_desc {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.cs-service_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.cs-service_link:hover {
    gap: 15px;
}

/* ======================================
   Partners/Logo Slider
====================================== */
.cs-partners {
    background: var(--gray-100);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.cs-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300) 50%, transparent);
}

.cs-partners_heading {
    text-align: center;
    margin-bottom: 50px;
}

.cs-partners_heading h3 {
    font-size: 1.5rem;
    color: var(--gray-700);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.cs-logo_slider {
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    padding: 20px 0;
}

.cs-logo_slider .swiper-wrapper {
    display: flex;
    align-items: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition-timing-function: linear;
}

.cs-logo_slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: auto !important;
    padding: 0 30px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.cs-logo_slider .swiper-slide a,
.cs-logo_slider .swiper-slide > img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    min-width: 140px;
    min-height: 80px;
}

.cs-logo_slider .swiper-slide a:hover,
.cs-logo_slider .swiper-slide > img:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.cs-logo_slider img {
    max-height: 70px;
    max-width: 160px;
    width: auto;
    height: auto;
    filter: grayscale(80%);
    opacity: 0.7;
    transition: all 0.4s ease;
    object-fit: contain;
}

.cs-logo_slider a:hover img,
.cs-logo_slider .swiper-slide:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* ======================================
   Reviews Section
====================================== */
.cs-reviews {
    background: var(--gradient-dark);
    color: var(--white);
}

.cs-reviews .cs-section_title {
    color: var(--white);
}

.cs-reviews_header {
    text-align: center;
    margin-bottom: 40px;
}

.cs-reviews_rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cs-reviews_rating .rating-score {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.cs-reviews_rating .stars {
    display: flex;
    gap: 5px;
    color: #ffc107;
    font-size: 1.5rem;
}

.cs-reviews_rating .text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.cs-reviews_rating .count {
    font-size: 0.875rem;
    opacity: 0.8;
}

.cs-review_card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 30px;
    height: 100%;
}

.cs-review_header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.cs-review_avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
}

.cs-review_avatar-img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
    flex-shrink: 0;
}

/* Google Brand Colors for Review Avatars */
.cs-review_avatar.google-blue { background-color: #4285F4; }
.cs-review_avatar.google-red { background-color: #EA4335; }
.cs-review_avatar.google-yellow { background-color: #FBBC05; }
.cs-review_avatar.google-green { background-color: #34A853; }

.cs-review_info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.cs-review_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.cs-review_name-date {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.google-icon-small {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.9;
}

.cs-review_info span {
    font-size: 0.75rem;
    opacity: 0.7;
}

.cs-review_stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.cs-review_text {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ======================================
   Contact Form Section
====================================== */
.cs-contact_form_section {
    background: var(--gray-100);
}

.cs-contact_form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.cs-form_group {
    margin-bottom: 20px;
}

.cs-form_group.cs-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cs-form_label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.cs-form_input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.cs-form_input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0,102,204,0.1);
}

.cs-form_textarea {
    min-height: 150px;
    resize: vertical;
}

.cs-form_submit {
    width: 100%;
    padding: 16px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.cs-form_submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,102,204,0.4);
}

/* ======================================
   Contact Float Button
====================================== */
.cs-contact_float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-dropdown);
}

.cs-contact_float_btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2847 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    position: relative;
    z-index: 2;
}

.cs-contact_float_btn i:last-child {
    display: none;
}

.cs-contact_float.active .cs-contact_float_btn i:first-child {
    display: none;
}

.cs-contact_float.active .cs-contact_float_btn i:last-child {
    display: block;
}

.cs-contact_float_btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #16213e 0%, #0a1e38 100%);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.4);
}

.cs-contact_float_menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.cs-contact_float.active .cs-contact_float_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cs-contact_float_item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    font-weight: 500;
    transition: all var(--transition-base);
}

.cs-contact_float_item.phone i { color: var(--primary-color); }
.cs-contact_float_item.whatsapp i { color: #25d366; }
.cs-contact_float_item.email i { color: var(--accent-color); }

.cs-contact_float_item:hover {
    transform: translateX(-10px);
}

/* ======================================
   Footer
====================================== */
.cs-footer {
    background: var(--gradient-dark);
    color: var(--white);
}

.cs-footer_top {
    padding: 80px 0 50px;
}

.cs-footer_top_in {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.cs-footer_logo img {
    max-height: 50px;
    margin-bottom: 20px;
}

.cs-footer_text {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cs-footer .cs-social_btns.cs-style1 a {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}

.cs-footer .cs-social_btns.cs-style1 a:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.cs-footer_widget_title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

.cs-footer_widget_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.cs-footer_widget_menu li {
    margin-bottom: 12px;
}

.cs-footer_widget_menu a {
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all var(--transition-base);
}

.cs-footer_widget_menu a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 10px;
}

.cs-footer_contact_list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.cs-footer_contact_list i {
    color: #ffffff;
    margin-top: 4px;
}

.cs-footer_contact_list a:hover {
    color: var(--secondary-color);
}

.cs-footer_bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.cs-footer_bottom_in {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cs-copyright {
    font-size: 0.875rem;
    opacity: 0.8;
}

.cs-footer_bottom_links {
    display: flex;
    gap: 15px;
    font-size: 0.875rem;
}

.cs-footer_bottom_links a {
    opacity: 0.8;
}

.cs-footer_bottom_links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* ======================================
   Page Header / Banner
====================================== */
.cs-page_header {
    background: var(--gradient-dark);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cs-page_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
}

.cs-page_header .container {
    position: relative;
    z-index: 1;
}

.cs-page_title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.cs-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

.cs-breadcrumb a:hover {
    color: var(--white);
}

.cs-breadcrumb span {
    color: var(--secondary-color);
}

/* ======================================
   Video Modal
====================================== */
.cs-video_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.cs-video_modal.active {
    opacity: 1;
    visibility: visible;
}

.cs-video_modal_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.cs-video_modal_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
}

.cs-video_modal_close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.cs-video_modal_iframe {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.cs-video_modal_iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ======================================
   Google Translate Widget
====================================== */
.cs-translate_widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: var(--z-dropdown);
    display: flex;
}

.cs-lang_toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2847 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
}

.cs-lang_toggle:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #16213e 0%, #0a1e38 100%);
}

.cs-lang_menu {
    position: absolute;
    bottom: 70px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.cs-translate_widget.active .cs-lang_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cs-lang_item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    font-weight: 500;
    transition: all var(--transition-base);
}

.cs-lang_item:hover {
    transform: translateX(10px);
    background: var(--gray-100);
}

.cs-lang_flag {
    font-size: 1.5rem;
    display: none;
}

.goog-te-gadget {
    font-family: var(--font-primary) !important;
}

.goog-te-gadget-simple {
    background: var(--white) !important;
    border: none !important;
    box-shadow: var(--shadow-md) !important;
    border-radius: var(--radius-md) !important;
    padding: 8px 15px !important;
}

/* ======================================
   Stats Counter
====================================== */
.cs-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.cs-stat_item {
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
}

.cs-stat_number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cs-stat_text {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ======================================
   FAQ Section
====================================== */
.cs-faq_list {
    max-width: 800px;
    margin: 0 auto;
}

.cs-faq_item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.cs-faq_question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.cs-faq_question:hover {
    color: var(--primary-color);
}

.cs-faq_question i {
    transition: transform var(--transition-base);
}

.cs-faq_item.active .cs-faq_question i {
    transform: rotate(180deg);
}

.cs-faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.cs-faq_item.active .cs-faq_answer {
    max-height: 500px;
}

.cs-faq_answer_content {
    padding: 0 25px 25px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ======================================
   Blog Cards
====================================== */
.cs-blog_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.cs-blog_card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.cs-blog_card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.cs-blog_thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.cs-blog_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.cs-blog_card:hover .cs-blog_thumb img {
    transform: scale(1.1);
}

.cs-blog_date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
}

.cs-blog_content {
    padding: 25px;
}

.cs-blog_title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.cs-blog_title a:hover {
    color: var(--primary-color);
}

.cs-blog_excerpt {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.cs-blog_meta {
    display: flex;
    gap: 20px;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.cs-blog_meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* ======================================
   Brand Cards
====================================== */
.cs-brand_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cs-brand_card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.cs-brand_card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.cs-brand_logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cs-brand_logo img {
    max-height: 100%;
    max-width: 150px;
}

.cs-brand_name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cs-brand_desc {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ======================================
   Utilities
====================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.bg-primary { background-color: var(--primary-color); }
.bg-dark { background-color: var(--dark-color); }
.bg-light { background-color: var(--gray-100); }
.bg-white { background-color: var(--white); }

.text-primary { color: var(--primary-color); }
.text-white { color: var(--white); }
.text-dark { color: var(--dark-color); }
.text-muted { color: var(--gray-600); }

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to top button */
.cs-scroll_top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2847 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
    font-size: 1.25rem;
}

.cs-scroll_top.visible {
    opacity: 1;
    visibility: visible;
}

.cs-scroll_top:hover {
    background: linear-gradient(135deg, #16213e 0%, #0a1e38 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.4);
}

/* ======================================
   Page Hero
====================================== */
.page-hero {
    background: var(--gradient-dark);
    padding: 150px 0 80px;
    margin-top: 140px;
    text-align: center;
    position: relative;
}

.page-hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.page-hero .breadcrumb a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.page-hero .breadcrumb a:hover {
    color: var(--white);
}

.page-hero .breadcrumb span:not(:last-child) {
    color: rgba(255,255,255,0.5);
}

/* ======================================
   About Page
====================================== */
.about-page.section-padding {
    padding-top: calc(70px);
    padding-bottom: 120px;
}

.section-padding {
    padding: 50px 0;
}
