:root {
    /* Constant Variables */
    --primary-blue: #00a8e8;
    --deep-blue: #003459;
    --accent-red: #e63946;
    --font-main: 'Poppins', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Default (Dark Mode) Variables */
    --bg-main: #111827;
    --bg-gradient: linear-gradient(135deg, #1e293b 0%, #111827 50%, #0f172a 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --text-main: #f9fafb;
    --text-muted: #94a3b8;
    --header-bg: rgba(17, 24, 39, 0.9);
    --footer-bg: #0b111b;
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    --drop-color: rgba(255, 255, 255, 0.05);
    --nav-link-color: #f9fafb;
}

[data-theme="light"] {
    --bg-main: #f8fafc;
    --bg-gradient: linear-gradient(135deg, #f1f5f9 0%, #ffffff 50%, #e2e8f0 100%);
    --card-bg: rgba(255, 255, 255, 0.8);
    --card-border: rgba(0, 0, 0, 0.1);
    /* Darker border for visibility */
    --text-main: #000000;
    /* Strictly black text */
    --text-muted: #475569;
    /* Darker muted text */
    --header-bg: rgba(255, 255, 255, 0.95);
    --footer-bg: #f1f5f9;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --drop-color: rgba(0, 168, 232, 0.15);
    /* More visible drops */
    --nav-link-color: #0f172a;
}

[data-theme="light"] .gradient-text {
    /* visible gradient on white background */
    background: linear-gradient(135deg, #0284c7, #0369a1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .loader-bar-progress {
    background: linear-gradient(90deg, var(--primary-blue), #0284c7);
}

/* Micro-Animations & Effects */
.glow-effect:hover {
    box-shadow: 0 0 20px var(--primary-blue);
    transform: translateY(-3px);
}

.tilt-card {
    transition: var(--transition-smooth);
}

.tilt-card:hover {
    box-shadow: 0 30px 60px rgba(0, 168, 232, 0.2);
}

.nav-link:hover {
    color: var(--primary-blue);
    transform: scale(1.05);
}

.phone-btn:hover {
    transform: scale(1.1) rotate(-2deg);
    filter: brightness(1.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.5s ease, color 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

img,
video {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    /* Hardware acceleration */
    filter: contrast(1.02) brightness(1.02) saturate(1.02);
}

video {
    object-fit: cover;
    background: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-blue {
    color: var(--primary-blue);
}

.brand-red {
    color: var(--accent-red);
}

/* Background Drops */
#water-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background: var(--bg-gradient);
    pointer-events: none;
    overflow: hidden;
    transition: background 0.5s ease;
}

.water-drop {
    position: absolute;
    border-radius: 50%;
    background: var(--drop-color);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
        opacity: 0;
    }
}

.glass-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition-smooth);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.icon-box i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
}

.logo-3d-wrapper {
    width: 90px;
    height: 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00a8e8, #0077b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.logo-circle img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    filter: brightness(1.05);
    /* Slight brightness for clarity */
}

/* Animations removed as per user request */


@keyframes rotateLogo {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

@keyframes floatDroplet {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.logo-text h1 {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 2px;
}

.logo-text h1 .brand-blue {
    color: #00a8e8;
}

.logo-text h1 .brand-red {
    color: #e63946;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--nav-link-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    transition: 0.3s;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

@media (min-width: 1024px) {
    .header .container {
        max-width: 90%;
        padding: 0 50px;
    }

    .nav {
        gap: 32px;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-blue), #0077b6);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.phone-btn:hover::before {
    left: 100%;
}

.phone-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 168, 232, 0.6);
    filter: brightness(1.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    gap: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: 0.3s;
}

.btn:hover::after {
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 32px;
    height: 3.5px;
    background: var(--text-main);
    margin: 6px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

[data-theme="light"] .mobile-menu-btn span {
    background: #000000;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow);
}

.theme-toggle:hover {
    transform: rotate(30deg) scale(1.1);
    background: var(--primary-blue);
    color: white;
}

[data-theme="light"] .theme-toggle i::before {
    content: "\f186";
    /* moon icon */
}

[data-theme="dark"] .theme-toggle i::before {
    content: "\f185";
    /* sun icon */
}

/* Hamburger to X animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Footer */
.footer {
    padding: 30px 0;
    background: var(--footer-bg);
    text-align: center;
    border-top: 1px solid var(--card-border);
    transition: background 0.5s ease;
}

.footer p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.footer-socials {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: var(--primary-blue);
}

/* Old Floating WhatsApp Removed */

/* Preloader / Entrance Animation */
/* Preloader / Entrance Animation */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

#preloader.loaded {
    transform: translateY(-100%);
}

.preloader-content {
    text-align: center;
}

.preloader-logo-text {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 15px;
    margin-bottom: 10px;
    position: relative;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-blue);
    display: inline-block;
}

.preloader-logo-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: var(--primary-blue);
    -webkit-text-stroke: 0;
    overflow: hidden;
    white-space: nowrap;
    animation: textFill 3s ease-in-out forwards;
}

@keyframes textFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.preloader-subtext {
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 8px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

.loader-bar-container {
    width: 280px;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid rgba(0, 168, 232, 0.2);
}

.loader-bar-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), #00d4ff, #ffffff);
    animation: progressLoad 3s ease-in-out forwards;
}

@keyframes progressLoad {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smart Contact Menu (FAB) */
.smart-contact-wrapper {
    position: fixed;
    bottom: 120px;
    right: 30px;
    z-index: 9990;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.smart-contact-wrapper.visible {
    opacity: 1;
    pointer-events: all;
}

.fab-main-btn {
    width: 62px;
    height: 62px;
    background: #e63946;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 25px rgba(230, 57, 70, 0.45);
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
    opacity: 1;
}

.fab-main-btn:hover {
    opacity: 1;
    transform: scale(1.05);
}

.fab-main-btn:active {
    transform: scale(0.9);
}

.fab-main-btn.active {
    background: #e63946;
    box-shadow: 0 5px 25px rgba(230, 57, 70, 0.6);
    transform: rotate(180deg);
}

.fab-menu {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s ease;
    pointer-events: none;
    align-items: center;
}

.fab-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.fab-item {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    position: relative;
}

.fab-item:hover {
    transform: scale(1.1);
}

/* Tooltip for FAB items (Desktop) */
.fab-item::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: 0.2s;
    pointer-events: none;
}

.fab-item:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Specific Colors */
.fab-close {
    background: #666;
    border: none;
    cursor: pointer;
}

.fab-phone {
    background: linear-gradient(135deg, #0288d1, #01579b);
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.fab-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.fab-facebook {
    background: linear-gradient(135deg, #1877f2, #0d47a1);
}

@media (max-width: 768px) {
    .smart-contact-wrapper {
        bottom: 100px;
        right: 15px;
    }

    .fab-main-btn {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    .fab-item {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .fab-menu {
        transform: translateY(10px);
        gap: 10px;
    }

    .fab-item::after {
        display: none;
        /* Hide tooltips on mobile */
    }
}

@keyframes bounceAndGlow {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(0, 168, 232, 0.5));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 40px rgba(0, 168, 232, 0.8));
    }
}

@keyframes progress {
    0% {
        width: 0%;
    }

    40% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

/* Google Reviews Section Enhancements */
.google-reviews-banner {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.google-rating-summary {
    display: flex;
    align-items: center;
    gap: 20px;
}

.google-maps-icon {
    width: 60px;
    height: 60px;
}

.rating-info {
    text-align: left;
}

.rating-score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.rating-stars {
    color: #ffb400;
    font-size: 1.2rem;
    margin: 5px 0;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-google {
    background: var(--text-main);
    color: var(--bg-main);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.btn-google:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    color: #000;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-meta .stars {
    color: #ffb400;
    font-size: 0.8rem;
}

.review-meta .time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-source-icon {
    width: 18px;
    height: 18px;
    margin-left: auto;
    opacity: 0.7;
}

.google-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
}

.google-view-all:hover {
    color: white;
    gap: 15px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 25px;
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition-smooth);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: var(--text-dim);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .google-reviews-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

.section-padding {
    padding: 120px 0 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    color: var(--primary-blue);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    margin: 10px 0;
}

.section-subtitle {
    color: var(--text-dim);
}

/* ========== MOBILE RESPONSIVE STYLES ========== */

/* Tablet & Small Desktop (max-width: 992px) */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 100px 0 80px;
    }
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {

    /* Header & Navigation */
    .header {
        padding: 10px 0;
    }

    .header .container {
        flex-wrap: nowrap;
        /* Prevent wrapping implies side-by-side */
        justify-content: space-between;
    }

    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-main);
        /* Adaptive background */
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
        gap: 15px;
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }

    .nav-link {
        font-size: 1.25rem;
        padding: 12px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Logo */
    .logo-container {
        gap: 12px;
    }

    .logo-3d-wrapper {
        width: 62px;
        height: 62px;
    }

    .logo-text h1 {
        font-size: 1.35rem;
    }

    .logo-text p {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    /* Header Actions - Side by Side */
    .header-actions {
        gap: 8px;
        display: flex;
        /* Ensure flex behavior */
        align-items: center;
    }

    /* Make phone button icon-only on mobile */
    .phone-btn {
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .phone-btn span {
        display: none;
    }

    .phone-btn i {
        margin: 0;
        font-size: 1.1rem;
    }

    /* Preloader */
    .preloader-logo-text {
        font-size: 3rem;
        letter-spacing: 8px;
    }

    .preloader-logo-text::after {
        letter-spacing: 8px;
    }

    .preloader-subtext {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }

    .loader-bar-container {
        width: 180px;
    }

    /* Section Headers */
    .section-padding {
        padding: 90px 0 60px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .section-badge {
        font-size: 0.8rem;
    }

    /* Footer */
    .footer {
        padding: 25px 15px;
    }

    .footer p {
        font-size: 0.85rem;
    }

    .footer-socials {
        gap: 15px;
    }

    .footer-socials a {
        font-size: 1.3rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Header */
    .header {
        padding: 8px 0;
    }

    .logo-3d-wrapper {
        width: 50px;
        height: 50px;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }

    .logo-text p {
        display: none;
    }

    .nav {
        top: 65px;
        padding: 20px 15px;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 8px 0;
    }

    .phone-btn {
        padding: 10px 14px;
        border-radius: 12px;
        font-size: 0.95rem;
    }

    /* Preloader */
    .preloader-logo {
        width: 160px;
        height: auto;
    }

    .loader-bar {
        width: 150px;
        height: 5px;
    }

    /* Section */
    .section-padding {
        padding: 80px 0 50px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .section-badge {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    /* Footer */
    .footer {
        padding: 15px 10px;
    }

    .footer p {
        font-size: 0.8rem;
    }
}