/* Root Variables - Light Mode */
:root {
    --primary-color: #ef5b0c;
    --primary-dark: #d14e09;
    --primary-light: #ff6d1f;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #fff;
    --bg-gray: #f8f9fa;
    --hero-bg-start: #fff;
    --hero-bg-end: #fff5f0;
    --nav-bg: rgba(255, 255, 255, 0.1);
    --nav-border: rgba(255, 255, 255, 0.3);
    --card-bg: rgba(255, 255, 255, 0.4);
    --card-border: rgba(255, 255, 255, 0.5);
    --shadow: 0 10px 30px rgba(239, 91, 12, 0.1);
    --shadow-hover: 0 15px 40px rgba(239, 91, 12, 0.2);
    --transition: all 0.3s ease;
}

/* Dark Mode Variables */
body.dark-mode {
    --text-dark: #f5f5f5;
    --text-light: #b0b0b0;
    --bg-light: #0a0a0a;
    --bg-gray: #1a1a1a;
    --hero-bg-start: #0a0a0a;
    --hero-bg-end: #1a1010;
    --nav-bg: rgba(20, 20, 20, 0.7);
    --nav-border: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(30, 30, 30, 0.6);
    --card-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 15px 40px rgba(239, 91, 12, 0.3);
}

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

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    background: var(--nav-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 0.9);
    border: 1px solid var(--nav-border);
    z-index: 1000;
    transition: var(--transition);
    border-radius: 50px;
    padding: 0.5rem 2rem;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(239, 91, 12, 0.3));
    transition: var(--transition);
}

.logo-img:hover {
    filter: drop-shadow(0 4px 12px rgba(239, 91, 12, 0.5));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(239, 91, 12, 0.3);
}

/* Dark Mode Toggle - Feather Icons */
.dark-mode-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1000;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-mode-toggle svg {
    width: 28px;
    height: 28px;
    color: var(--text-dark);
    stroke-width: 2;
    transition: var(--transition);
}

.dark-mode-toggle:hover svg {
    transform: scale(1.15);
    color: var(--primary-color);
}

.dark-mode-toggle:active svg {
    transform: scale(0.95);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    overflow: hidden;
}

.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 20px rgba(239, 91, 12, 0.3));
    transition: var(--transition);
}

.hero-logo-img:hover {
    filter: drop-shadow(0 6px 30px rgba(239, 91, 12, 0.5));
    transform: scale(1.05);
}

/* Glassmorphic Water Droplets */
.water-droplets-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.droplet {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(135, 206, 235, 0.3);
    opacity: 1;
    animation: dropletFloat 4s ease-in-out infinite;
}

.droplet::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 30%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    filter: blur(1px);
}

.droplet::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 20%;
    width: 15%;
    height: 15%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    filter: blur(0.5px);
}

/* Individual droplet positioning and sizing - covering more of the screen */
.droplet-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 8%;
    animation-delay: 0s;
}

.droplet-2 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 12%;
    animation-delay: 0.5s;
}

.droplet-3 {
    width: 180px;
    height: 180px;
    top: 35%;
    left: 3%;
    animation-delay: 1s;
}

.droplet-4 {
    width: 140px;
    height: 140px;
    top: 45%;
    right: 15%;
    animation-delay: 1.5s;
}

.droplet-5 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.droplet-6 {
    width: 160px;
    height: 160px;
    top: 68%;
    right: 8%;
    animation-delay: 2.5s;
}

.droplet-7 {
    width: 90px;
    height: 90px;
    top: 25%;
    left: 45%;
    animation-delay: 3s;
}

.droplet-8 {
    width: 130px;
    height: 130px;
    top: 55%;
    left: 65%;
    animation-delay: 3.5s;
}

.droplet-9 {
    width: 110px;
    height: 110px;
    top: 5%;
    left: 35%;
    animation-delay: 0.8s;
}

.droplet-10 {
    width: 95px;
    height: 95px;
    top: 80%;
    left: 45%;
    animation-delay: 1.2s;
}

.droplet-11 {
    width: 125px;
    height: 125px;
    top: 40%;
    right: 40%;
    animation-delay: 1.8s;
}

.droplet-12 {
    width: 85px;
    height: 85px;
    top: 20%;
    right: 35%;
    animation-delay: 2.2s;
}

.droplet-13 {
    width: 105px;
    height: 105px;
    top: 75%;
    left: 30%;
    animation-delay: 0.3s;
}

.droplet-14 {
    width: 70px;
    height: 70px;
    top: 12%;
    left: 60%;
    animation-delay: 0.7s;
}

.droplet-15 {
    width: 115px;
    height: 115px;
    top: 50%;
    left: 80%;
    animation-delay: 1.1s;
}

.droplet-16 {
    width: 80px;
    height: 80px;
    top: 85%;
    right: 25%;
    animation-delay: 1.4s;
}

.droplet-17 {
    width: 95px;
    height: 95px;
    top: 30%;
    left: 25%;
    animation-delay: 1.7s;
}

.droplet-18 {
    width: 65px;
    height: 65px;
    top: 65%;
    right: 50%;
    animation-delay: 2.1s;
}

.droplet-19 {
    width: 120px;
    height: 120px;
    top: 8%;
    right: 5%;
    animation-delay: 2.4s;
}

.droplet-20 {
    width: 75px;
    height: 75px;
    top: 45%;
    left: 10%;
    animation-delay: 2.7s;
}

/* Dissolving animation */
.droplet.dissolving {
    animation: dropletDissolve 2s ease-in-out forwards;
}

@keyframes dropletFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

@keyframes dropletDissolve {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0px);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2) translateY(-20px);
        filter: blur(2px);
    }
    100% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
        filter: blur(5px);
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-light) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--hero-bg-start) 0%, var(--hero-bg-end) 100%);
    z-index: -1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(239, 91, 12, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(239, 91, 12, 0.05) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

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

.highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: -10px;
    width: 120%;
    height: 20px;
    background: rgba(239, 91, 12, 0.1);
    z-index: -1;
    transform: rotate(-2deg);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-block;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 20px rgba(239, 91, 12, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(239, 91, 12, 0.4);
}

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

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

.btn-block {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: scrollDown 1.5s infinite;
}

/* Sections */
section {
    padding: 5rem 0;
    background-color: var(--bg-light);
    transition: background-color 0.3s ease;
}

section.contact {
    padding: 5rem 0 0 0;
    margin-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

/* Background graphic on Services */
.services,
.services-page {
    background-image: url('assets/images/full-light-large-bg.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 1100px auto;
}

.services-page {
    padding-top: 120px;
}

.services-page .privacy-content {
    padding-bottom: 2rem;
}

.services-page .services-grid {
    margin-top: 0;
}

.services-images-section {
    padding: 3rem 0;
    overflow: visible;
}

.services-images-section .container {
    overflow: visible;
}

.services-scroll-container {
    width: 100%;
}

.services-scroll-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-image-item {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid var(--card-border);
}

.service-image-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(239, 91, 12, 0.2);
}

.service-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

/* Privacy Page */
.privacy-page {
    padding: 40px 0 0 0;
    background: var(--bg-light);
    min-height: 100vh;
    background-image: url('assets/images/full-light-large-bg.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 1100px auto;
}

.privacy-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.privacy-logo-img {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 4px 20px rgba(239, 91, 12, 0.3));
    transition: var(--transition);
}

.privacy-logo-img:hover {
    filter: drop-shadow(0 6px 30px rgba(239, 91, 12, 0.5));
    transform: scale(1.05);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.privacy-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-text {
    color: var(--text-light);
    line-height: 2;
    font-size: 1.1rem;
}

.privacy-text p {
    margin-bottom: 1.5rem;
}

.privacy-text h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.privacy-text ul {
    margin: 1.5rem 0;
    padding-right: 2rem;
}

.privacy-text ul li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.privacy-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.privacy-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

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

.service-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: right;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 0.9);
    border: 1px solid var(--card-border);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(239, 91, 12, 0.15),
                inset 0 1px 1px rgba(255, 255, 255, 0.9);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.service-intro {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.service-features li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    padding-right: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-features li strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.stat-item:first-child {
    grid-column: 1 / -1;
    text-align: center;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 0.9);
    border: 1px solid var(--card-border);
}

.feature-item:hover {
    transform: translateX(-10px);
    box-shadow: 0 15px 40px rgba(239, 91, 12, 0.15),
                inset 0 1px 1px rgba(255, 255, 255, 0.9);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-simple {
    padding: 0;
}

.contact-simple .contact-image-wrapper {
    max-width: 100%;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-phone-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
}

.contact-phone-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 2px;
    direction: ltr;
    unicode-bidi: embed;
}

.contact-image-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.contact-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 20px 20px 0 0;
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollDown {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

.animate-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar {
        width: 70%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-content {
        max-width: 100%;
    }

    .contact-phone-number {
        font-size: 2.2rem;
    }
}

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

    .service-card:nth-child(3) {
        max-width: 100%;
    }

    .services-scroll-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .services-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .services-scroll-wrapper {
        display: flex;
        gap: 1.5rem;
        grid-template-columns: none;
        padding: 1rem 20px 2rem;
    }

    .service-image-item {
        flex-shrink: 0;
        width: 350px;
    }

    .service-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-logo-img {
        height: 80px;
    }

    .privacy-logo-img {
        height: 70px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Responsive droplets for mobile */
    .droplet-1, .droplet-3, .droplet-6, .droplet-19 {
        width: 90px;
        height: 90px;
    }

    .droplet-2, .droplet-4, .droplet-8, .droplet-11, .droplet-13, .droplet-15, .droplet-17 {
        width: 75px;
        height: 75px;
    }

    .droplet-5, .droplet-7, .droplet-9, .droplet-10, .droplet-12, .droplet-14, .droplet-16, .droplet-18, .droplet-20 {
        width: 60px;
        height: 60px;
    }

    .service-card {
        padding: 2rem;
    }

    .service-features li {
        font-size: 0.95rem;
    }

    .service-image-item {
        width: 300px;
    }

    .service-image {
        height: 300px;
    }

    .services-scroll-wrapper {
        gap: 1rem;
        padding: 1rem 10px 1.5rem;
    }

    .contact-phone-number {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Dark mode toggle responsive */
    .dark-mode-toggle {
        bottom: 20px;
        right: 20px;
    }
    
    .dark-mode-toggle svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .about-description {
        font-size: 1.1rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item:first-child {
        grid-column: 1;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .feature-item {
        padding: 1.2rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-text h4 {
        font-size: 1.1rem;
    }

    .privacy-title {
        font-size: 2rem;
    }

    .privacy-text {
        font-size: 1rem;
    }

    .privacy-text h2 {
        font-size: 1.5rem;
    }

    .privacy-content {
        padding: 2rem 1rem;
    }

    .contact-phone-number {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: white;
}

