/* =========================
   Global Styles
========================= */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap');

* {
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    outline: none; 
    border: none;
    text-decoration: none;
    transition: .2s linear;
}

.heading,
.navbar a,
.btn,
h1, h2, h3, h4, h5, h6 {
    text-transform: capitalize;
}

.font-garamond {
    font-family: 'EB Garamond', serif;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.font-zain {
    font-family: 'Zain', sans-serif;
}

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --main-color: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    --hover-color: linear-gradient(135deg, #c19660 0%, #b08850 100%);
    --section-alt: #ffffff;
    --new-color: #f19e99;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}

section {
    padding: 6rem 9% 3rem 9%;
    background: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.heading {
    text-align: center;
    font-size: 3rem;
    color: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    padding: 0.3rem;
    margin: 1rem 0;
    background: rgba(143, 185, 150, 0.05);
}

.heading span {
    color: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: #333;
    color: #fff;
    padding: .9rem 3.5rem;
    cursor: pointer;
    font-size: 1.7rem;
}

.btn:hover {
    background: var(--hover-color);
}

/* =========================
   Scroll Fade-In Animation
========================= */
.section-content-fade {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.section-content-fade.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   Header
========================= */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background:#f19e99;
    padding: 1rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 .5rem 1rem rgba(0,0, 0, .1);
}

header .logo {
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--main-color);
}

header .logo img {
    height: 70px;
    width: auto;
}

header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

header .navbar .nav-links {
    display: flex;
    align-items: center;
}

header .navbar .nav-links a {
    padding: 0 1.5rem;
    color: #ffffff;
    font-size: 1.6rem;
    position: relative;
}

header .navbar .nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

header .navbar .nav-links a:hover {
    color: #ffffff;
}

header .navbar .nav-links a:hover::after {
    width: 100%;
}

header .navbar .login-btn {
    background: linear-gradient(135deg, #f7f8f7 0%, #f19e99 40%);
    color: #f5f3f0;
    padding: 0.8rem 3.2rem;
    border-radius: 7rem;
    font-weight: bold;
    border:none;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(231, 230, 230, 0.685);
    transition: all 0.3s ease;
}

header .navbar .login-btn:hover {
    border: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(253, 252, 252);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* =========================
   User Authentication Section
========================= */
.user-section {
    position: relative;
}

.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #f7f8f7 0%, #f19e99 40%);
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 2.5rem;
    font-weight: 500;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(250, 250, 250, 0.662);
}

.user-btn:hover {
    border: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(253, 252, 252);
}

.user-btn i:last-child {
    transition: transform 0.3s ease;
}

.user-btn:hover i:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-radius: 12px;
    z-index: 1001;
    margin-top: 0.5rem;
    border: 1px solid rgba(212, 165, 116, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.dropdown-content.show {
    display: block;
    animation: dropdownSlide 0.3s ease-out;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a {
    color: #f19e99;
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dropdown-content a:hover {
    color: #f19e99;
    transform: translateX(5px);
}

.dropdown-content a.logout-link {
    color: #dc3545;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: none;
}

.dropdown-content a.logout-link:hover {
    color: #f19e99;
}

.dropdown-divider {
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin: 5px 0;
}

/* =========================
   Welcome Message
========================= */
.welcome-message {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #c3e6cb;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 8px 25px rgba(195, 230, 203, 0.3);
    z-index: 1002;
    max-width: 350px;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.message-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #155724;
    font-size: 1.4rem;
}

.message-content i {
    color: #28a745;
    font-size: 1.6rem;
}

.close-message {
    background: none;
    border: none;
    color: #155724;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    font-size: 1.4rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.close-message:hover {
    opacity: 1;
}

/* =========================
   Home Section
========================= */
.home {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
}

.home-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.home::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0);
}

.home .content {
    position: relative;
    z-index: 1;
}

/* =========================
   Details Section
========================= */
.details {
    display: flex;
    align-items: center;
    justify-content: center;
}

.details .row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.details .row .content {
    display: flex;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.details .row .content img {
    flex: 0 0 auto;
    width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.details .row .content .text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.details .row .content p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.details .subtitle {
    font-size: 2.2rem;
    color: #666;
    line-height: 1.5;
}

/* =========================
   Services Section
========================= */
.services {
    background: #f8f9fa;
    padding: 6rem 5% 3rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-content-fade {
    width: 100%;
}

.services .heading {
    font-size: 3rem;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.services .subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.service-card-container {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 950px;
    margin: 0 auto;
    min-height: 350px;
    max-height: 350px;
}

.service-card {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card.active {
    display: flex;
    opacity: 1;
    animation: fadeInService 0.5s ease;
}

@keyframes fadeInService {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.service-card.image-left {
    flex-direction: row;
}

.service-card.image-right {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-height: 350px;
    max-height: 350px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-color: #f8f9fa;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.05), transparent);
}

.service-content {
    flex: 1;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-number {
    display: inline-block;
    background: linear-gradient(135deg, #f7f8f7 0%, #f19e99 40%);
    color: white;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 12px;
    width: fit-content;
    letter-spacing: 1px;
}

.service-content h2 {
    font-size: 1.9rem;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.2;
}

.service-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-book-btn {
    background: linear-gradient(135deg, #f7f8f7 0%, #f19e99 40%);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 5px 20px rgba(241, 158, 153, 0.3);
}

.service-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(241, 158, 153, 0.5);
}

.service-dots-container {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
    pointer-events: none;
}

.service-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.8);
    pointer-events: all;
}

.service-dot:hover {
    background: rgba(0,0,0,0.5);
    transform: scale(1.2);
}

.service-dot.active {
    background: #f19e99;
    border-color: #f19e99;
    transform: scale(1.3);
}

/* =========================
   About Section
========================= */
.about {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0;
    width: 100%;
    max-width: 1200px;
}

.about .row .content {
    flex: 1 1 40rem;
}

.about .row .content p {
    font-size: 1.4rem;
    color: #666;
    padding-top: 0.8rem;
    line-height: 1.4;
}

/* =========================
   Contact Section
========================= */
.contact {
    background: #f8f9fa;
    padding: 6rem 5% 3rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .heading {
    font-size: 3rem;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.1rem;
    font-size: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    color: #333;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: none;
}

.form-input:focus {
    outline: none;
    border-color: #92a98f;
    background: white;
    box-shadow: 0 0 0 3px rgba(146, 169, 143, 0.1);
}

.form-input::placeholder {
    color: #999;
    font-style: italic;
    text-transform: none;
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
    max-height: 120px;
    text-transform: none;
}

.submit-btn {
    background: linear-gradient(135deg, #f7f8f7 0%, #f19e99 40%);
    color: white;
    border: none;
    padding: 1rem 2.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(146, 169, 143, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    width: 100%;
    text-transform: capitalize;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(68, 71, 67, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    font-size: 1.4rem;
}

/* =========================
   MOBILE RESPONSIVE STYLES
========================= */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    html {
        font-size: 58%;
    }
    
    section {
        padding: 5rem 7% 2rem 7%;
    }
    
    header {
        padding: 1rem 4%;
    }
    
    .home .content h3 {
        font-size: 5rem;
    }
    
    .service-card-container {
        max-width: 100%;
    }
}

/* Mobile Landscape (900px and below) */
@media (max-width: 900px) {
    html {
        font-size: 55%;
    }
    
    header .navbar .nav-links {
        flex-direction: column;
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        background: #f19e99;
        padding: 2rem 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    header .navbar .nav-links.active {
        left: 0;
    }
    
    header .navbar .nav-links a {
        display: block;
        padding: 1.5rem 2rem;
        margin: 0.5rem 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    header .navbar .nav-links a:last-child {
        border-bottom: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    header .navbar {
        width: 100%;
        justify-content: flex-end;
    }
    
    header .navbar .login-btn {
        margin-left: 1rem;
    }
    
    .home .content h3 {
        font-size: 4.5rem;
    }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    html {
        font-size: 52%;
    }
    
    section {
        padding: 4rem 5% 2rem 5%;
        min-height: auto;
        max-height: none;
        height: auto;
    }
    
    header .logo img {
        height: 55px;
    }
    
    header .navbar .login-btn,
    .user-btn {
        padding: 0.6rem 2rem;
        font-size: 1.4rem;
    }
    
    /* Home Section Mobile */
    .home {
        min-height: 70vh;
        padding-top: 8rem;
    }
    
    .home .content h3 {
        font-size: 3.5rem;
        text-shadow: 
            -1px -1px 0 #fff,
            1px -1px 0 #fff,
            -1px 1px 0 #fff,
            1px 1px 0 #fff;
    }
    
    .arrow-btn {
        width: 50px;
        height: 50px;
    }
    
    .arrow-btn i {
        font-size: 2rem;
    }
    
    /* About Section Mobile */
    .about .row {
        flex-direction: column;
        text-align: center;
    }
    
    .about .row .content p {
        font-size: 1.5rem;
        line-height: 1.8;
        padding: 0 1rem;
    }
    
    /* Services Section Mobile */
    .services {
        padding: 4rem 3% 3rem 3%;
    }
    
    .services .heading {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .services .subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .service-card-container {
        min-height: auto;
        max-height: none;
        border-radius: 15px;
    }
    
    .service-card.image-left,
    .service-card.image-right {
        flex-direction: column !important;
    }
    
    .service-image {
        min-height: 220px;
        max-height: 220px;
        width: 100%;
        background-size: contain;
        background-position: center center;
        background-color: #f8f9fa;
    }
    
    .service-content {
        padding: 25px 20px 40px 20px;
    }
    
    .service-content h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .service-content p {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .service-book-btn {
        padding: 10px 25px;
        font-size: 1.3rem;
        width: 100%;
    }
    
    .service-dots-container {
        bottom: 15px;
    }
    
    /* Details Section Mobile */
    .details .row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .details .row .content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .details .row .content img {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .details .row .content .text-content {
        text-align: center;
    }
    
    .details .subtitle {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 4rem 3%;
    }
    
    .contact .heading {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 1.4rem;
    }
    
    .form-input {
        padding: 1.2rem 1.5rem;
        font-size: 1.4rem;
    }
    
    textarea.form-input {
        min-height: 120px;
    }
    
    .submit-btn {
        padding: 1.3rem 2.5rem;
        font-size: 1.5rem;
    }
    
    /* Welcome Message Mobile */
    .welcome-message {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 12px 15px;
    }
    
    .message-content {
        font-size: 1.3rem;
    }
    
    /* User Dropdown Mobile */
    .dropdown-content {
        min-width: 200px;
        right: -10px;
    }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    html {
        font-size: 50%;
    }
    
    section {
        padding: 3rem 4% 2rem 4%;
    }
    
    header {
        padding: 0.8rem 3%;
    }
    
    header .logo img {
        height: 50px;
    }
    
    .menu-toggle span {
        width: 22px;
    }
    
    header .navbar .login-btn {
        padding: 0.6rem 1.8rem;
        font-size: 1.3rem;
    }
    
    .user-btn {
        padding: 0.6rem 1.5rem;
        font-size: 1.3rem;
        gap: 0.5rem;
    }
    
    .user-btn span {
        display: none;
    }
    
    /* Home Section Small Mobile */
    .home {
        min-height: 60vh;
        padding-top: 7rem;
    }
    
    .home .content h3 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .arrow-btn {
        width: 45px;
        height: 45px;
    }
    
    .arrow-btn i {
        font-size: 1.8rem;
    }
    
    /* Headings Mobile */
    .heading {
        font-size: 2.2rem;
        margin: 0.5rem 0 1rem 0;
    }
    
    /* About Section Small Mobile */
    .about .row .content p {
        font-size: 1.4rem;
        padding: 0 0.5rem;
    }
    
    /* Services Section Small Mobile */
    .services .heading {
        font-size: 2.2rem;
    }
    
    .services .subtitle {
        font-size: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .service-card-container {
        border-radius: 12px;
    }
    
    .service-image {
        min-height: 200px;
        max-height: 200px;
        background-size: contain;
        background-position: center center;
        background-color: #f8f9fa;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-number {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    
    .service-content h2 {
        font-size: 1.6rem;
    }
    
    .service-content p {
        font-size: 1.2rem;
        line-height: 1.5;
    }
    
    .service-book-btn {
        padding: 9px 20px;
        font-size: 1.2rem;
    }
    
    .service-dots-container {
        bottom: 10px;
        gap: 5px;
        z-index: 5;
    }
    
    .service-dot {
        width: 5px;
        height: 5px;
        border-width: 1px;
    }
    
    .service-dot:hover {
        transform: scale(1.1);
    }
    
    .service-dot.active {
        transform: scale(1.3);
    }
    
    .service-content {
        padding: 20px 15px 35px 15px;
    }
    
    .service-book-btn {
        padding: 9px 20px;
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    /* Details Section Small Mobile */
    .details .row .content img {
        max-width: 280px;
    }
    
    .details .subtitle {
        font-size: 1.6rem;
    }
    
    /* Contact Section Small Mobile */
    .contact .heading {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 1.5rem 1.2rem;
    }
    
    .form-group label {
        font-size: 1.3rem;
    }
    
    .form-input {
        padding: 1rem 1.2rem;
        font-size: 1.3rem;
    }
    
    textarea.form-input {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 1.2rem 2rem;
        font-size: 1.4rem;
    }
    
    /* Welcome Message Small Mobile */
    .welcome-message {
        padding: 10px 12px;
        border-radius: 10px;
    }
    
    .message-content {
        font-size: 1.2rem;
        gap: 8px;
    }
    
    .message-content i {
        font-size: 1.4rem;
    }
    
    .close-message {
        font-size: 1.2rem;
    }
    
    /* Dropdown Small Mobile */
    .dropdown-content {
        min-width: 180px;
    }
    
    .dropdown-content a {
        padding: 10px 15px;
        font-size: 1.3rem;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    html {
        font-size: 48%;
    }
    
    .home .content h3 {
        font-size: 2.5rem;
    }
    
    .service-image {
        min-height: 180px;
        max-height: 180px;
        background-size: contain;
        background-position: center center;
        background-color: #f8f9fa;
    }
    
    .service-content {
        padding: 15px 12px;
    }
    
    header .logo img {
        height: 45px;
    }
}

/* Landscape Orientation Fix */
@media (max-height: 500px) and (orientation: landscape) {
    section {
        min-height: auto;
        height: auto;
        padding: 3rem 5%;
    }
    
    .home {
        min-height: 90vh;
    }
    
    .home .content h3 {
        font-size: 3rem;
    }
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    header .navbar .nav-links a {
        padding: 1.8rem 2rem;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .service-book-btn,
    .submit-btn,
    .arrow-btn {
        min-height: 48px;
        min-width: 48px;
    }
    
    /* Make dots touch-friendly but visually small */
    .service-dot {
        width: 5px;
        height: 5px;
        position: relative;
    }
    
    .service-dot::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: transparent;
    }
    
    .service-book-btn:hover,
    .submit-btn:hover {
        transform: none;
    }
    
    .service-book-btn:active,
    .submit-btn:active {
        transform: scale(0.98);
    }
}