/* 
  Thelondary - Premium Laundry Services
  Theme: Royal Blue, Gold, Clean White, Glassmorphism
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    --primary: #1a237e;
    /* Royal Blue */
    --primary-light: #534bae;
    --primary-dark: #000051;
    --secondary: #d4af37;
    /* Gold */
    --accent: #00bcd4;
    /* Cyan/Teal for freshness */
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.section-padding {
    padding: 80px 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    /* Optional: if logo is square */
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 35, 126, 0.7), rgba(26, 35, 126, 0.5)), url('../Images/hero-bg.jpg');
    /* Graceful fallback if image missing */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--white);
    margin-top: 0;
    /* Header is fixed */
    padding-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--secondary);
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Round water animation in hero */
.hero-water {
    position: absolute;
    right: 8%;
    bottom: 10%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 10%, rgba(255, 255, 255, 0.8), rgba(0, 188, 212, 0.9) 40%, rgba(26, 35, 126, 1) 100%);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.6);
    animation: float-smooth 6s ease-in-out infinite;
}

.hero-water::before,
.hero-water::after {
    content: '';
    position: absolute;
    left: -25%;
    right: -25%;
    height: 55%;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 45%;
    animation: hero-wave 6s ease-in-out infinite;
}

.hero-water::after {
    top: 10%;
    background: rgba(255, 255, 255, 0.25);
    animation-duration: 8s;
    animation-delay: -1.5s;
}

.hero-bubble {
    position: absolute;
    bottom: -20px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    animation: hero-bubble 7s infinite ease-in;
}

.hero-bubble.b1 {
    left: 25%;
    animation-delay: 0s;
}

.hero-bubble.b2 {
    left: 45%;
    width: 12px;
    height: 12px;
    animation-delay: 1.5s;
}

.hero-bubble.b3 {
    left: 65%;
    width: 16px;
    height: 16px;
    animation-delay: 3s;
}

.hero-bubble.b4 {
    left: 35%;
    width: 10px;
    height: 10px;
    animation-delay: 4.5s;
}

@keyframes hero-wave {
    0% {
        transform: translateY(80%) rotate(0deg);
    }

    50% {
        transform: translateY(20%) rotate(3deg);
    }

    100% {
        transform: translateY(80%) rotate(0deg);
    }
}

@keyframes hero-bubble {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    80% {
        transform: translateY(-240px) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-260px) scale(1.1);
        opacity: 0;
    }
}

/* Features/Services Preview */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: var(--white);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

/* Footer */
.main-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links h3 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding: 1.5rem 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        display: flex;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Advanced Animated Section */
.animated-stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #000 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--secondary), transparent);
    opacity: 0.1;
    animation: float 10s infinite ease-in-out;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-50px) rotate(10deg);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Scroll Animation Classes (to be added by JS) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========== ADVANCED ANIMATIONS & MODERN DESIGN ========== */

/* Ripple Effect for Buttons */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Enhanced Glass Card with 3D Transform */
.glass-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 35, 126, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
    z-index: -1;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(31, 38, 135, 0.3);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Animated Gradient Background */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient {
    background: linear-gradient(-45deg, var(--primary), var(--primary-light), var(--secondary), var(--accent));
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
}

/* Pulse Animation for Badges */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Shimmer Loading Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Bounce Animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.bounce {
    animation: bounce 2s infinite;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Rotate Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.rotate {
    animation: rotate 20s linear infinite;
}

/* Enhanced Feature Card with Flip Effect */
.feature-card {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
    transition: transform 0.8s ease;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--secondary) 100%);
}

/* Floating Animation for Icons */
@keyframes float-smooth {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.float-icon {
    animation: float-smooth 3s ease-in-out infinite;
}

/* Glow Effect */
.glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6),
        0 0 40px rgba(212, 175, 55, 0.4),
        0 0 60px rgba(212, 175, 55, 0.2);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Flip Effect */
.flip-card {
    perspective: 1000px;
    height: 300px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
}

.flip-card-back {
    transform: rotateY(180deg);
}

/* Typing Animation */
@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.typing-effect {
    overflow: hidden;
    border-right: 3px solid var(--secondary);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Enhanced Input Focus */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Floating Labels */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
    transform: translateY(-25px) scale(0.85);
    color: var(--primary);
}

.form-group label {
    position: absolute;
    left: 12px;
    top: 12px;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

/* Progress Bar Animation */
@keyframes progress {
    from {
        width: 0%;
    }
}

.progress-bar {
    height: 8px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    animation: progress 2s ease-out;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

/* Hover Lift Effect */
.lift-on-hover {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lift-on-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Stagger Animation for Lists */
@keyframes stagger-fade-in {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stagger-item {
    animation: stagger-fade-in 0.5s ease-out;
}

.stagger-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stagger-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stagger-item:nth-child(5) {
    animation-delay: 0.5s;
}

/* Neon Glow Button */
.btn-neon {
    position: relative;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
}

.btn-neon:hover {
    background: var(--secondary);
    color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8),
        0 0 40px rgba(212, 175, 55, 0.6),
        inset 0 0 20px rgba(212, 175, 55, 0.3);
    text-shadow: none;
}

/* Pricing section styling */
.pricing-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(26, 35, 126, 0.08), rgba(0, 188, 212, 0.08));
}

.pricing-section__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.2), transparent 35%),
        radial-gradient(circle at 80% 0%, rgba(0, 188, 212, 0.15), transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(26, 35, 126, 0.15), transparent 38%);
    filter: blur(0px);
    pointer-events: none;
}

.section-heading .muted {
    color: #5c6c7a;
    max-width: 720px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    position: relative;
    border: 1px solid rgba(26, 35, 126, 0.08);
    overflow: hidden;
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(0, 188, 212, 0.05));
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.eyebrow--pill {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(26, 35, 126, 0.08);
    border: 1px solid rgba(26, 35, 126, 0.1);
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 188, 212, 0.1);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary-dark);
    font-weight: 500;
}

.pricing-table thead th {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
    color: #5c6c7a;
    border-bottom: 1px solid rgba(26, 35, 126, 0.08);
}

.pricing-table tbody tr td {
    padding: 14px 10px;
    font-weight: 500;
}

.pricing-table tbody tr:not(:last-child) td {
    border-bottom: 1px dashed rgba(26, 35, 126, 0.08);
}

.pricing-table tbody tr:hover {
    background: rgba(0, 188, 212, 0.04);
}

/* ========== COMPREHENSIVE RESPONSIVE DESIGN ========== */

/* Additional Global Responsive Utilities */
.row {
    display: flex;
    flex-wrap: wrap;
}

/* Mobile First - Base styles for mobile */
@media (max-width: 576px) {
    /* Container adjustments */
    .container {
        padding: 0 1rem;
    }

    /* Header & Navigation */
    .nav-container {
        height: 70px;
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        height: 40px;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links li {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-links a {
        display: block;
        width: 100%;
    }

    /* Hero Section */
    .hero {
        height: auto;
        min-height: 70vh;
        padding: 100px 0 50px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-water {
        width: 150px;
        height: 150px;
        right: 5%;
        bottom: 5%;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .btn-outline {
        margin-left: 0 !important;
    }

    /* Section Padding */
    .section-padding {
        padding: 40px 0;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Glass Cards */
    .glass-card {
        padding: 1.5rem;
        border-radius: 15px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-links h3 {
        font-size: 1.1rem;
    }

    /* Services Page Specific */
    .row {
        flex-direction: column !important;
    }

    .row[style*="flex-direction: row-reverse"] {
        flex-direction: column !important;
    }

    /* Contact Page */
    .contact-form-wrapper,
    .contact-info-wrapper {
        min-width: 100% !important;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Tablet and Small Desktop */
@media (min-width: 577px) and (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .glass-card {
        padding: 1.75rem;
    }

    /* Services Page - Stack on tablet */
    .row {
        flex-direction: column !important;
    }

    .row[style*="flex-direction: row-reverse"] {
        flex-direction: column !important;
    }
}

/* Medium Desktop */
@media (min-width: 769px) and (max-width: 992px) {
    .container {
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Desktop - Keep existing styles */
@media (min-width: 993px) {
    /* All desktop styles remain as is */
}

/* Additional Mobile Fixes */
@media (max-width: 768px) {
    .pricing-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Image responsiveness */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Logo adjustments */
    .logo span {
        font-size: 1rem;
    }

    .logo img {
        height: 35px;
    }

    /* Text gradient fix for mobile */
    .text-gradient {
        font-size: 1.5rem;
    }

    /* Button spacing */
    .btn + .btn {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    /* Animated gradient section */
    .animated-gradient {
        padding-top: 100px !important;
        padding-bottom: 30px !important;
    }

    /* Page headers */
    .section-padding[style*="padding-top: 150px"] {
        padding-top: 100px !important;
    }

    /* Contact form adjustments */
    iframe {
        height: 250px !important;
    }

    /* Mobile menu improvements */
    .mobile-toggle {
        display: block;
        z-index: 1001;
        color: var(--primary);
        font-size: 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
        display: flex !important;
    }

    .nav-links li {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 30px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-water {
        display: block;
        width: 120px;
        height: 120px;
    }
}

/* Show hero water on larger mobile */
@media (min-width: 577px) and (max-width: 768px) {
    .hero-water {
        display: block;
        width: 180px;
        height: 180px;
    }
}

/* Very Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .glass-card {
        padding: 1rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Service Page Specific Styles */
.service-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.service-img {
    max-height: 250px;
    width: auto;
    max-width: 100%;
    border-radius: 15px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-img:hover {
    transform: translateY(-5px);
}

.service-features {
    margin-bottom: 1rem;
    list-style: none;
    padding: 0;
}

.service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-action {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Contact Page Specific Styles */
.contact-form-wrapper,
.contact-info-wrapper {
    flex: 1;
    min-width: 300px;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

    .contact-map {
        width: 100%;
        height: 300px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    /* Additional mobile fixes */
    .hero-water {
        display: none; /* Hide on very small screens */
    }

    .animated-gradient {
        background-size: 200% 200%;
    }

    /* Form inputs mobile */
    input[type="text"],
    input[type="email"],
    textarea,
    select {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }

/* Mobile adjustments for service rows */
@media (max-width: 768px) {
    .service-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-row-reverse {
        flex-direction: column;
    }

    .service-content,
    .service-image {
        min-width: 100%;
        width: 100%;
    }

    .service-img {
        max-height: 200px;
        width: 100%;
        object-fit: contain;
    }

    .contact-row {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        min-width: 100%;
        width: 100%;
    }
}