﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scrollbar background */
::-webkit-scrollbar {
    width: 10px;
}

/* Scrollbar track */
::-webkit-scrollbar-track {
    background: #fff3e0; /* light background */
    border-radius: 3px;
}

/* Scrollbar handle (thumb) */
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ffb74d, #ffb74d); /* orange gradient */
    border-radius: 1px;
}

    /* Scrollbar handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #ffb74d, #ffb74d);
    }
/* Up arrow */
::-webkit-scrollbar-button:single-button:decrement {
    background: #ffb74d url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12"><polygon points="6,2 2,8 10,8" fill="white"/></svg>') no-repeat center;
}

/* Down arrow */
::-webkit-scrollbar-button:single-button:increment {
    background: #ff9800 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12"><polygon points="2,4 10,4 6,10" fill="white"/></svg>') no-repeat center;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #4a3728;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Urgent Banner */
.urgent-banner {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.urgent-banner a {
    color: #f4d03f;
    text-decoration: none;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

    .urgent-banner a:hover {
        background: rgba(244, 208, 63, 0.2);
    }

/* Enhanced Header */
header {/*
   */ background: linear-gradient(135deg,#f4d03f,#f7dc6f,#f1c40f);
    background: linear-gradient(135deg, #f5d861, #f7dc6f, #f1c40f);
    padding: 10px 0;
    min-height: 90px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

/* Enhanced Logo */
/*.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4a3728;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
    font-family: 'Georgia', serif;
    letter-spacing: -1px;
}

    .logo::after {
        content: '✨';
        font-size: 1.2rem;
        position: absolute;
        top: -5px;
        right: -25px;
        animation: sparkle 2s infinite;
    }

.logo {
    display: flex;
    align-items: center;
}

    .logo a {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

.brand-logo {
    height: 72px;
    width: auto;
    display: block;
    transition: all .3s ease;
}

    .brand-logo:hover {
        transform: scale(1.05);
    }*/
.logo {
    display: flex;
    align-items: center;
}

    .logo a {
        display: flex;
        align-items: center;
    }

.brand-logo {
    height: 90px;
    width: auto;
}

    .brand-logo:hover {
        transform: scale(1.05);
    }

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1) rotate(180deg);
    }
}

/* Enhanced Call Button */
.phone-header {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .phone-header:hover {
        background: linear-gradient(135deg, #229954, #27ae60);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    }

/* Enhanced Hero Section */
.hero {
    background: linear-gradient(135deg, #f4d03f 0%, #f7dc6f 50%, #f39c12 100%);
    padding: 120px 0 0px;
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,100 1000,0 1000,100"/></svg>');
        pointer-events: none;
    }

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Changed from 1fr 1fr to make illustration bigger */
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #4a3728;
    margin-bottom: 1rem;
    line-height: 1.1;
    position: relative;
}

    .hero-text h1::before {
        content: '🔥';
        font-size: 2rem;
        position: absolute;
        left: -50px;
        top: 10px;
        animation: flame 2s ease-in-out infinite;
    }

@keyframes flame {
    0%, 100% {
        transform: scale(1) rotate(-5deg);
    }

    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

.hero-text .tagline {
    font-size: 1.8rem;
    color: #6b5b47;
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
    position: relative;
}

    .hero-text .tagline::before {
        content: '"';
        font-size: 2rem;
        color: #f39c12;
        position: absolute;
        left: -20px;
        top: -10px;
    }

    .hero-text .tagline::after {
        content: '"';
        font-size: 2rem;
        color: #f39c12;
        position: absolute;
        right: -8px;
        bottom: -10px;
    }

.cta-button {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

    .cta-button:hover {
        background: linear-gradient(135deg, #229954, #27ae60);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    }

/* Enhanced hero-illustration */
.hero-illustration {
    text-align: center;
    position: relative;
}

    .hero-illustration img {
        max-width: 100%;
        height: auto;
        /*  animation: float 3s ease-in-out infinite;*/
        /* Make the image larger within its container */
        transform: scale(1.3);
    }

@keyframes float {
    0% {
        transform: scale(1.1) translateY(0px);
    }

    50% {
        transform: scale(1.1) translateY(-12px);
    }

    100% {
        transform: scale(1.1) translateY(0px);
    }
}

/* Optional glowing sparkle */
.hero-illustration img:hover {
    filter: drop-shadow(0 0 10px gold) drop-shadow(0 0 20px orange);
    transition: filter 0.3s ease-in-out;
}

/* Ironing Illustration - Made larger */
.ironing-scene {
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px; /* Increased from 40px */
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: scale(1.2); /* Make the entire scene bigger */
}

.ironing-board {
    width: 360px; /* Increased from 300px */
    height: 144px; /* Increased from 120px */
    background: linear-gradient(145deg, #e8e8e8, #f5f5f5);
    border-radius: 60px 60px 10px 10px;
    position: relative;
    margin: 0 auto 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

    .ironing-board::before {
        content: '';
        position: absolute;
        bottom: -60px; /* Adjusted for larger size */
        left: 50%;
        transform: translateX(-50%);
        width: 10px; /* Increased from 8px */
        height: 60px; /* Increased from 50px */
        background: #8b7355;
        border-radius: 4px;
    }

    .ironing-board::after {
        content: '';
        position: absolute;
        bottom: -84px; /* Adjusted for larger size */
        left: 50%;
        transform: translateX(-50%);
        width: 48px; /* Increased from 40px */
        height: 24px; /* Increased from 20px */
        background: #6b5b47;
        border-radius: 20px;
    }

.shirt-on-board {
    position: absolute;
    top: -12px; /* Adjusted */
    left: 24px; /* Adjusted */
    width: 144px; /* Increased from 120px */
    height: 96px; /* Increased from 80px */
    background: linear-gradient(145deg, #87ceeb, #b0e0e6);
    border-radius: 15px 15px 5px 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .shirt-on-board::before {
        content: '';
        position: absolute;
        top: 12px; /* Adjusted */
        left: 12px; /* Adjusted */
        right: 12px; /* Adjusted */
        height: 2px;
        background: #4682b4;
        border-radius: 1px;
    }

.iron {
    position: absolute;
    top: -36px; /* Adjusted */
    right: 36px; /* Adjusted */
    width: 96px; /* Increased from 80px */
    height: 48px; /* Increased from 40px */
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 5px 25px 5px 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: ironMove 3s ease-in-out infinite;
}

    .iron::before {
        content: '';
        position: absolute;
        top: -18px; /* Adjusted */
        left: 12px; /* Adjusted */
        width: 30px; /* Increased from 25px */
        height: 18px; /* Increased from 15px */
        background: #34495e;
        border-radius: 8px 8px 2px 2px;
    }

    .iron::after {
        content: '💨';
        position: absolute;
        top: -30px; /* Adjusted */
        right: -24px; /* Adjusted */
        font-size: 1.5rem; /* Increased from 1.2rem */
        animation: steam 1.5s ease-in-out infinite;
    }

@keyframes ironMove {
    0%, 100% {
        transform: translateX(0) rotate(-5deg);
    }

    50% {
        transform: translateX(-24px) rotate(5deg); /* Adjusted from -20px */
    }
}

@keyframes steam {
    0% {
        opacity: 0.3;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-5px);
    }

    100% {
        opacity: 0.3;
        transform: translateY(-10px);
    }
}

.folded-clothes {
    display: flex;
    justify-content: center;
    gap: 18px; /* Increased from 15px */
    margin-top: 48px; /* Increased from 40px */
}

.clothes-stack {
    width: 72px; /* Increased from 60px */
    height: 48px; /* Increased from 40px */
    position: relative;
}

    .clothes-stack .cloth {
        position: absolute;
        width: 100%;
        height: 10px; /* Increased from 8px */
        border-radius: 2px;
    }

        .clothes-stack .cloth:nth-child(1) {
            bottom: 0;
            background: linear-gradient(145deg, #e74c3c, #c0392b);
        }

        .clothes-stack .cloth:nth-child(2) {
            bottom: 12px; /* Adjusted from 10px */
            background: linear-gradient(145deg, #3498db, #2980b9);
        }

        .clothes-stack .cloth:nth-child(3) {
            bottom: 24px; /* Adjusted from 20px */
            background: linear-gradient(145deg, #2ecc71, #27ae60);
        }

        .clothes-stack .cloth:nth-child(4) {
            bottom: 36px; /* Adjusted from 30px */
            background: linear-gradient(145deg, #f39c12, #e67e22);
        }

/* Quality indicators */
.quality-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #4a3728;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us Section */
.why-choose {
    padding: 10px 0;
    background: #fffcf0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 1.5rem;
}

.feature {
    background: #FFFCF0;
    padding: 10px 10px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 1px solid #27ae60;
    border-right: 1px solid #27ae60;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .feature:hover {
        transform: translateY(-5px);
    }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.feature p {
    color: #666;
    font-size: 1.1rem;
}

/* How It Works Section */
/*.how-it-works {
    padding: 10px 0;
    background: #FFFCF7;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 2rem;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    background: #27ae60;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.step p {
    color: #666;
    line-height: 1.6;
}*/

.how-it-works {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff9f0, #fff3e0);
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #e65100;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 2rem;
}

.step {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

    .step:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

.step-icon {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.step h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.step p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
   /* background: linear-gradient(135deg, #27ae60, #2ecc71);*/
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid red;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    animation: pulse 2s infinite;
    text-decoration: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

        .hero-text h1::before {
            left: -30px;
            font-size: 1.5rem;
        }

    .hero-text .tagline::before,
    .hero-text .tagline::after {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .header-content {
        min-height: 130px;
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        font-size: 2rem;
    }

        .logo::after {
            right: -20px;
            font-size: 1rem;
        }

    header {
        /*height: 110px;*/
        padding: 15px 0;
    }

    .ironing-scene {
        padding: 20px;
        transform: scale(1); /* Reset scale on mobile */
    }
    .brand-logo {
        height: 95px;
    }

    .ironing-board {
        width: 250px;
        height: 100px;
    }

    .iron {
        width: 60px;
        height: 30px;
    }

    /* Reset mobile sizing for better fit */
    .shirt-on-board {
        width: 120px;
        height: 80px;
        top: -10px;
        left: 20px;
    }
}body {
}

.why-choose-us {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
}

    .why-choose-us .section-title {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 40px;
        color: #e65100;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .feature-card:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        background: rgba(255, 255, 255, 0.95);
    }

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ff6f00;
}

.feature-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
/*
.site-footer {
    background: linear-gradient(90deg, #ff9800, #ff5722);
    color: white;
    padding: 50px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-brand h2 {
    margin: 0;
    font-size: 28px;
}

.footer-brand p {
    font-size: 14px;
    margin-top: 8px;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 12px;
    font-size: 18px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    display: inline-block;
    padding-bottom: 4px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

    .footer-links a:hover {
        color: #ffe082;
    }

.footer-contact p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-social {
    margin-top: 12px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .footer-social a {
        background: rgba(255,255,255,0.2);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 14px;
        text-decoration: none;
        color: white;
        transition: background 0.3s ease, transform 0.2s ease;
    }

        .footer-social a:hover {
            background: #ffe082;
            color: #333;
            transform: translateY(-2px);
        }

.footer-bottom {
    text-align: center;
    margin-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 12px;
    font-size: 13px;
}*/

.site-footer {
    background: #fafafa;
    color: #333;
    padding: 50px 20px 20px;
    font-family: 'Poppins', sans-serif;
    border-top: 3px solid #ff9800;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-brand h2 {
    margin: 0;
    font-size: 28px;
    color: #ff5722; /* strong brand color */
}

.footer-brand p {
    font-size: 14px;
    margin-top: 8px;
    color: #666;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 12px;
    font-size: 18px;
    border-bottom: 2px solid #ff9800;
    display: inline-block;
    padding-bottom: 4px;
    color: #333;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

    .footer-links a:hover {
        color: #ff5722;
    }

.footer-contact p {
    margin: 5px 0;
    font-size: 14px;
    color: #444;
}

.footer-social {
    margin-top: 12px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .footer-social a {
        background: #ff9800;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 14px;
        text-decoration: none;
        color: white;
        transition: background 0.3s ease, transform 0.2s ease;
    }

        .footer-social a:hover {
            background: #ff5722;
            transform: translateY(-2px);
        }

.footer-bottom {
    text-align: center;
    margin-top: 25px;
    border-top: 1px solid #ddd;
    padding-top: 12px;
    font-size: 13px;
    color: #777;
}

/* Modal background overlay */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Box */
.modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    position: relative;
    animation: popupFade 0.3s ease;
}

/* Close Button */
.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
}

    .booking-form label {
        margin-top: 12px;
        font-weight: 600;
        font-size: 14px;
        text-align: left;
    }

    .booking-form input {
        margin-top: 6px;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 14px;
    }

        .booking-form input:focus {
            border-color: #ff9800;
            box-shadow: 0 0 6px rgba(255,152,0,0.4);
        }

/* Button */
.submit-btn {
    margin-top: 20px;
    padding: 12px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

    .submit-btn:hover {
        background: linear-gradient(90deg, #ffb74d, #f57c00);
    }

/* Animation */
@keyframes popupFade {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Header */

.admin-header {
    background: #ffb74d;
    padding: 15px 0;
    color: white;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header .logo {
    font-size: 24px;
    font-weight: bold;
}

.admin-menu a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

    .admin-menu a:hover {
        text-decoration: underline;
    }

.admin-dashboard {
    margin-top: 50px; /* prevents overlap with header */
    padding: 20px;
}
/* Dashboard Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

/* TABS */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.tab-section{
    margin-top:20px;
}
.tab-btn {
    background: #ffe0b2;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

    .tab-btn.active {
        background: #ff7043;
        color: white;
    }

.tab-content {
    display: none;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .tab-content.active {
        display: block;
    }

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: #ffb74d;
    color: white;
}

th, td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

    td a {
        color: #ff7043;
        font-weight: bold;
        text-decoration: none;
    }

        td a:hover {
            text-decoration: underline;
        }

/* FILTERS */
.filters {
    margin-bottom: 15px;
}

    .filters input {
        margin-left: 5px;
        margin-right: 15px;
        padding: 5px;
    }

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
}

.close-btn {
    float: right;
    cursor: pointer;
    font-size: 20px;
    color: #333;
}

.submit-btn {
    background: #ff7043;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

    .submit-btn:hover {
        background: #f4511e;
    }

/* Landpage.css - New CSS for Fancy Contact Details */
/* Group to keep the new list and the button aligned */
.contact-group {
    display: flex;
    align-items: center; /* Vertically center the list and the button */
    gap: 20px; /* Space between the number list and the main button */
}

/* Style for the stack of numbers */
    .fancy-phone-list {
        display: flex;
        flex-direction: column; /* Stack the links vertically */
        text-align: right;
        line-height: 1.2;
    }

    .fancy-phone-list a {
        color: #4a3728; /* Use the dark body/logo color for contrast */
        font-size: 1.1rem;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.2s ease-in-out;
        margin: 2px 0; /* Small vertical space between numbers */
    }

    .fancy-phone-list a:hover {
        color: black; /* Use the main orange/yellow highlight color on hover */
        transform: scale(1.10); /* Subtle scale up */
        text-shadow: 0 0 5px rgba(243, 156, 18, 0.5); /* Subtle glow effect */
    }