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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #FAFAFA;
    background: linear-gradient(135deg, #1A0B0B 0%, #2D1415 50%, #1A0B0B 100%);
    min-height: 100vh;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, rgba(26, 11, 11, 0.95) 0%, rgba(45, 20, 21, 0.95) 100%);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #DC2626;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #FCA311;
}

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

nav a {
    text-decoration: none;
    color: #FAFAFA;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #FCA311;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #DC2626;
    transition: width 0.3s ease;
}

nav a:hover:after {
    width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #DC2626;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/banner-1.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #DC2626, #FCA311);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
}

/* Search Container Styles */
.search-container {
    max-width: 700px;
    margin: 2rem auto;
    position: relative;
    perspective: 1000px;
}

.search-form {
    position: relative;
    transform-style: preserve-3d;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 60px;
    padding: 8px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 0 0 2px #DC2626,
        0 8px 32px rgba(220, 38, 38, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.1),
        0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.search-input-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #DC2626, #FCA311, #FF6B35, #DC2626);
    border-radius: 60px;
    z-index: -1;
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
}

.search-input-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.search-input-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 2px #DC2626,
        0 12px 40px rgba(220, 38, 38, 0.6),
        inset 0 2px 10px rgba(255, 255, 255, 0.15),
        0 20px 45px rgba(0, 0, 0, 0.4);
}

.search-input-wrapper:hover::after {
    left: 100%;
}

.search-input-wrapper:focus-within {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 0 3px #DC2626,
        0 0 30px rgba(220, 38, 38, 0.8),
        0 15px 50px rgba(220, 38, 38, 0.4),
        inset 0 2px 15px rgba(255, 255, 255, 0.2);
}

.search-icon {
    padding: 0 20px;
    color: #DC2626;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    margin-left: 5px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.search-icon:hover {
    background: rgba(220, 38, 38, 0.2);
    transform: scale(1.1);
}

#heroSearch {
    flex: 1;
    background: transparent;
    border: none;
    padding: 18px 25px;
    color: white;
    font-size: 1.1rem;
    outline: none;
    font-family: inherit;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

#heroSearch::placeholder {
    color: #bbb;
    font-style: italic;
    font-weight: 300;
    transition: all 0.3s ease;
}

#heroSearch:focus::placeholder {
    color: transparent;
    transform: translateY(-20px);
}

.search-options {
    background: linear-gradient(135deg, #DC2626, #FCA311);
    border: none;
    color: white;
    font-size: 1.2rem;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.search-options::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.search-options:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.search-options:hover::before {
    width: 100%;
    height: 100%;
}

.search-options:active {
    transform: scale(0.95) rotate(90deg);
}

/* Floating particles effect */
.search-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(252, 163, 17, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 11, 11, 0.95) 0%, rgba(45, 20, 21, 0.95) 100%);
    border: 2px solid #DC2626;
    border-radius: 20px;
    padding: 25px;
    margin-top: 15px;
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: none;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(220, 38, 38, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform-origin: top center;
}

.search-dropdown.active {
    display: block;
    animation: dropdownOpen 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-filter {
    margin-bottom: 20px;
    position: relative;
}

.search-filter label {
    display: block;
    color: #FCA311;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.search-filter label::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #DC2626, #FCA311);
    border-radius: 1px;
}

.search-filter select {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff1744' viewBox='0 0 16 16'%3e%3cpath d='m7.247 4.86-4.796 5.481c-.566.647-.106 1.659.753 1.659h9.592a1 1 0 0 0 .753-1.659l-4.796-5.48a1 1 0 0 0-1.506 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    font-family: inherit;
    font-weight: 500;
}

.search-filter select:hover {
    border-color: #DC2626;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.15) 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
}

.search-filter select:focus {
    border-color: #DC2626;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100%);
    box-shadow: 
        0 0 0 3px rgba(220, 38, 38, 0.2),
        0 8px 25px rgba(220, 38, 38, 0.3);
    transform: translateY(-2px);
}

.search-filter select option {
    background: #222;
    color: white;
    padding: 10px;
    border: none;
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 11, 11, 0.95) 0%, rgba(30, 15, 15, 0.95) 100%);
    border: 2px solid #DC2626;
    border-top: none;
    border-radius: 0 0 25px 25px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 999;
    display: none;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 30px rgba(220, 38, 38, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.search-suggestion {
    padding: 15px 25px;
    color: white;
    cursor: pointer;
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.search-suggestion::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

.search-suggestion:hover {
    background: rgba(220, 38, 38, 0.15);
    color: #FCA311;
    transform: translateX(5px);
    border-left: 3px solid #DC2626;
}

.search-suggestion:hover::before {
    left: 100%;
}

.search-suggestion:last-child {
    border-bottom: none;
    border-radius: 0 0 23px 23px;
}

/* Custom scrollbar for suggestions */
.search-suggestions::-webkit-scrollbar {
    width: 6px;
}

.search-suggestions::-webkit-scrollbar-track {
    background: rgba(220, 38, 38, 0.1);
    border-radius: 3px;
}

.search-suggestions::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #DC2626, #FCA311);
    border-radius: 3px;
}

.search-suggestions::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FCA311, #FF6B35);
}

/* Contact Info */
.contact-info {
    margin: 2.5rem 0;
    text-align: center;
    position: relative;
}

.contact-info p {
    color: white;
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-email {
    color: #FCA311;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(252, 163, 17, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(252, 163, 17, 0.3);
}

.contact-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #DC2626, #FCA311);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-email:hover {
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    text-decoration: none;
}

.contact-email:hover::before {
    opacity: 1;
}

/* Cool Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

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

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(220, 38, 38, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.8)) drop-shadow(0 0 30px rgba(220, 38, 38, 0.4));
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes dropdownOpen {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gradientText {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes gradientSlide {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 0%;
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #FAFAFA;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #DC2626, #FCA311);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #FAFAFA;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #1A0B0B 0%, #2D1415 50%, #1A0B0B 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(26, 11, 11, 0.9) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(220, 38, 38, 0.3);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.5);
    border-color: #FCA311;
    background: linear-gradient(135deg, rgba(252, 163, 17, 0.1) 0%, rgba(26, 11, 11, 0.95) 100%);
}

.service-card h3 {
    color: #FCA311;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card p {
    color: #FAFAFA;
    line-height: 1.6;
    opacity: 0.9;
}

/* Escorts Section */
.gallery {
    background: linear-gradient(135deg, #2D1415 0%, #1A0B0B 50%, #2D1415 100%);
}

.gallery .section-header h2 {
    color: #FAFAFA;
}

.gallery .section-header p {
    color: #FAFAFA;
    opacity: 0.9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* Old gallery-item styles removed to avoid conflicts */

/* About Section */
.about {
    background: linear-gradient(135deg, #1A0B0B 0%, #2D1415 50%, #1A0B0B 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #FCA311;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text p {
    font-size: 1.1rem;
    color: #FAFAFA;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 10px 0;
    color: #DC2626;
    font-weight: 500;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1A0B0B 0%, #2D1415 50%, #1A0B0B 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.contact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(252, 163, 17, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

/* Enhanced Contact Title */
.contact .section-header h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.contact-title-main {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(45deg, #FCA311, #DC2626, #FCA311);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s ease-in-out infinite;
    text-shadow: none;
}

.contact-title-sub {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    color: rgba(250, 250, 250, 0.8);
    font-style: italic;
    letter-spacing: 1px;
}

/* Contact Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(26, 11, 11, 0.8) 0%, rgba(45, 20, 21, 0.8) 100%);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #FCA311;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
}

.contact-card:hover .card-glow {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(252, 163, 17, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC2626, #FCA311);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 2s infinite;
}

.icon-wrapper svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5px;
    color: white;
}

.card-content h3 {
    color: #FCA311;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-content p {
    color: rgba(250, 250, 250, 0.7);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.contact-link {
    color: #DC2626;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #FCA311;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Content Section Styles */
.content-section {
    background: linear-gradient(135deg, #1A0B0B 0%, #2D1415 50%, #1A0B0B 100%);
    padding: 80px 0;
    color: #FAFAFA;
}

.content-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(26, 11, 11, 0.6) 0%, rgba(45, 20, 21, 0.6) 100%);
    border-radius: 20px;
    border: 2px solid rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    border-color: rgba(252, 163, 17, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Remove reverse styles - no longer needed with banner layout */

.content-block.full-width {
    grid-template-columns: 1fr;
    text-align: center;
}

.content-text {
    padding: 20px 0;
    order: 2;
}

.content-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #FCA311;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
}

.content-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #DC2626, #FCA311);
    border-radius: 2px;
}

.content-text.centered h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #FAFAFA;
    opacity: 0.95;
    text-align: justify;
}

.content-text strong {
    color: #FCA311;
    font-weight: 600;
}

.content-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    margin: 30px 0;
    order: 1;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.content-image:hover img {
    transform: scale(1.05);
}

.content-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.1), rgba(252, 163, 17, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
    z-index: 1;
}

.content-image:hover::before {
    opacity: 1;
}

/* Responsive Design for Content Section */
@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }
    
    .content-block {
        margin-bottom: 50px;
        padding: 30px 20px;
    }
    
    .content-text {
        padding: 15px 0;
    }
    
    .content-image {
        margin: 20px 0;
        max-width: 100%;
    }
    
    .content-text h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 20px;
    }
    
    .content-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .content-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 40px 0;
    }
    
    .content-block {
        margin-bottom: 40px;
        padding: 25px 15px;
    }
    
    .content-text h2 {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
    
    .content-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .content-image img {
        height: 250px;
    }
}

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

.content-block {
    animation: contentFadeIn 0.8s ease-out;
}

/* Enhanced Escort Profile Cards */
.escort-card {
    background: linear-gradient(135deg, rgba(26, 11, 11, 0.9) 0%, rgba(45, 20, 21, 0.9) 100%);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.escort-card:hover {
    transform: translateY(-10px);
    border-color: #FCA311;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.4);
}

.escort-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.escort-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.escort-card:hover .escort-image img {
    transform: scale(1.05);
}

.escort-status {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.escort-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
}

.rating-stars {
    color: #FCA311;
    font-size: 0.9rem;
}

.rating-number {
    font-weight: 600;
    font-size: 0.9rem;
}

.escort-info {
    padding: 25px;
}

.escort-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.escort-name {
    color: #FCA311;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.escort-age {
    background: linear-gradient(45deg, #DC2626, #FCA311);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.escort-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.detail-label {
    color: rgba(250, 250, 250, 0.7);
    font-weight: 500;
}

.detail-value {
    color: #FAFAFA;
    font-weight: 600;
}

.escort-features {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.8), rgba(252, 163, 17, 0.8));
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.escort-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
    padding: 0;
}

.whatsapp-btn, .call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border: 2px solid transparent;
}

.whatsapp-btn:hover {
    background: linear-gradient(45deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.call-btn {
    background: linear-gradient(45deg, #DC2626, #FCA311);
    color: white;
    border: 2px solid transparent;
}

.call-btn:hover {
    background: linear-gradient(45deg, #FCA311, #DC2626);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.whatsapp-btn svg, .call-btn svg {
    width: 18px;
    height: 18px;
}

/* Responsive Escort Cards */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .escort-card {
        margin-bottom: 20px;
    }
    
    .escort-image {
        height: 250px;
    }
    
    .escort-info {
        padding: 20px;
    }
    
    .escort-name {
        font-size: 1.3rem;
    }
    
    .escort-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .whatsapp-btn, .call-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px 0;
    }
    
    .escort-image {
        height: 220px;
    }
    
    .escort-info {
        padding: 15px;
    }
    
    .escort-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .escort-features {
        gap: 5px;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

/* Enhanced Contact Form */
.enhanced-contact-form {
    background: linear-gradient(135deg, rgba(26, 11, 11, 0.9) 0%, rgba(45, 20, 21, 0.9) 100%);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.enhanced-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #DC2626, #FCA311, #DC2626);
    background-size: 200% 100%;
    animation: gradientSlide 3s ease-in-out infinite;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    color: #FCA311;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-header p {
    color: rgba(250, 250, 250, 0.8);
    font-size: 1rem;
}

/* Modern Form Styling */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    position: relative;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-wrapper {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 2px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.input-wrapper:focus-within {
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.input-wrapper input,
.input-wrapper textarea,
.input-wrapper select {
    width: 100%;
    padding: 20px 20px 8px 20px;
    border: none;
    background: transparent;
    color: #FAFAFA;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.input-wrapper select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23DC2626' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 45px;
}

.input-wrapper label {
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgba(250, 250, 250, 0.6);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    transform-origin: left top;
}

.input-wrapper input:focus + label,
.input-wrapper textarea:focus + label,
.input-wrapper select:focus + label,
.input-wrapper input:not(:placeholder-shown) + label,
.input-wrapper textarea:not(:placeholder-shown) + label,
.input-wrapper select:not([value=""]) + label {
    transform: translateY(-10px) scale(0.8);
    color: #FCA311;
    font-weight: 500;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #DC2626, #FCA311);
    transition: width 0.3s ease;
}

.input-wrapper:focus-within .input-highlight {
    width: 100%;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 25px;
}

/* Form Footer */
.form-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(250, 250, 250, 0.7);
    font-size: 0.9rem;
    text-align: center;
    justify-content: center;
}

.privacy-note svg {
    width: 16px;
    height: 16px;
    color: #FCA311;
}

/* Enhanced Submit Button */
.enhanced-submit-btn {
    position: relative;
    background: linear-gradient(135deg, #DC2626, #FCA311);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.enhanced-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
}

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

.btn-text {
    transition: transform 0.3s ease;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

.enhanced-submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* Social Proof */
.contact-social-proof {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(252, 163, 17, 0.1) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.proof-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.proof-item:hover {
    transform: translateY(-5px);
}

.proof-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FCA311;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.proof-label {
    color: rgba(250, 250, 250, 0.8);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-item p {
    opacity: 0.9;
    font-size: 1rem;
}

/* .contact-form - old style removed for enhanced design */

/* Old form-group styles removed - using enhanced contact design */

/* Footer */
footer {
    background: linear-gradient(135deg, #1A0B0B 0%, #0F0606 100%);
    color: #FAFAFA;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #FCA311;
    font-size: 1.3rem;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #FCA311;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

.footer-bottom a {
    color: #FCA311;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #DC2626;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, rgba(26, 11, 11, 0.98) 0%, rgba(45, 20, 21, 0.98) 100%);
        border: 2px solid rgba(220, 38, 38, 0.3);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(20px);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 40px 0;
        background-attachment: scroll;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        width: 100%;
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0 1rem;
        line-height: 1.4;
    }
    
    /* Mobile Search Styles */
    .search-container {
        margin: 1rem auto;
        max-width: 95%;
        padding: 0 10px;
        flex-shrink: 0;
    }
    
    .search-input-wrapper {
        padding: 6px;
        border-radius: 50px;
        /* Maintain cool effects on mobile */
        background: linear-gradient(135deg, rgba(26, 11, 11, 0.9) 0%, rgba(45, 20, 21, 0.9) 100%);
        backdrop-filter: blur(15px);
        box-shadow: 
            0 0 0 2px #DC2626,
            0 6px 25px rgba(220, 38, 38, 0.4),
            inset 0 2px 8px rgba(255, 255, 255, 0.1);
    }
    
    .search-input-wrapper:focus-within {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 
            0 0 0 2px #DC2626,
            0 0 20px rgba(220, 38, 38, 0.6),
            0 10px 30px rgba(220, 38, 38, 0.3);
    }
    
    .search-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-left: 3px;
    }
    
    #heroSearch {
        padding: 14px 15px;
        font-size: 1rem;
        letter-spacing: 0.3px;
    }
    
    #heroSearch::placeholder {
        font-size: 0.95rem;
    }
    
    .search-options {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-right: 3px;
    }
    
    .search-dropdown {
        padding: 20px 15px;
        margin-top: 10px;
        border-radius: 18px;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .search-filter {
        margin-bottom: 18px;
    }
    
    .search-filter label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .search-filter select {
        padding: 12px 15px;
        font-size: 0.95rem;
        border-radius: 10px;
        background-size: 14px;
        background-position: right 12px center;
    }
    
    .search-suggestions {
        border-radius: 0 0 20px 20px;
        max-height: 200px;
    }
    
    .search-suggestion {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .contact-info {
        margin: 1.5rem 0;
        flex-shrink: 0;
    }
    
    .contact-info p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .contact-email {
        padding: 6px 12px;
        font-size: 0.95rem;
        border-radius: 20px;
    }
    
    .cta-button {
        margin-top: 1rem;
        flex-shrink: 0;
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    /* Enhanced Contact Mobile Styles */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .enhanced-contact-form {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-social-proof {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 50px;
        padding: 30px;
    }
    
    .proof-number {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 30px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        width: 100%;
        padding: 15px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .hero-content h1 {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 0.8rem;
        text-align: center;
        line-height: 1.1;
        padding: 0 1rem;
    }
    
    .hero-content p {
        font-size: clamp(0.85rem, 4vw, 1rem);
        margin-bottom: 1rem;
        text-align: center;
        padding: 0 1.5rem;
        line-height: 1.3;
    }
    
    /* Extra Mobile Search Styles for Small Screens */
    .search-container {
        margin: 0.8rem auto;
        max-width: 98%;
        padding: 0 5px;
        flex-shrink: 0;
    }
    
    .search-input-wrapper {
        padding: 4px;
        /* Slightly reduce effects for performance on slower devices */
        backdrop-filter: blur(10px);
        box-shadow: 
            0 0 0 2px #DC2626,
            0 4px 20px rgba(220, 38, 38, 0.3),
            inset 0 1px 6px rgba(255, 255, 255, 0.1);
    }
    
    .search-input-wrapper:focus-within {
        transform: translateY(-1px);
        box-shadow: 
            0 0 0 2px #DC2626,
            0 0 15px rgba(220, 38, 38, 0.5),
            0 8px 25px rgba(220, 38, 38, 0.25);
    }
    
    .search-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-left: 2px;
    }
    
    #heroSearch {
        padding: 12px 10px;
        font-size: 0.95rem;
        letter-spacing: 0.2px;
    }
    
    #heroSearch::placeholder {
        font-size: 0.9rem;
    }
    
    .search-options {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 2px;
    }
    
    .search-dropdown {
        padding: 15px 10px;
        margin-top: 8px;
        border-radius: 15px;
        max-height: 60vh;
    }
    
    .search-filter {
        margin-bottom: 15px;
    }
    
    .search-filter label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .search-filter select {
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 8px;
        background-size: 12px;
        background-position: right 10px center;
    }
    
    .search-suggestions {
        border-radius: 0 0 15px 15px;
        max-height: 150px;
    }
    
    .search-suggestion {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .contact-info {
        margin: 1rem 0;
        flex-shrink: 0;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        padding: 0 1.5rem;
    }
    
    .contact-email {
        padding: 5px 10px;
        font-size: 0.9rem;
        border-radius: 18px;
    }
    
    .cta-button {
        margin-top: 0.8rem;
        flex-shrink: 0;
        font-size: 0.95rem;
        padding: 10px 20px;
    }
    
    /* Reduce floating particles on small mobile for performance */
    .search-container::before {
        display: none;
    }
    
    /* Simplify animations on small screens */
    .search-input-wrapper::before {
        animation-duration: 4s;
    }
    
    /* Enhanced Contact Small Mobile */
    .contact {
        padding: 80px 0;
    }
    
    .contact-title-main {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .contact-cards {
        gap: 15px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .enhanced-contact-form {
        padding: 25px 20px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-social-proof {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 40px;
        padding: 25px 15px;
    }
    
    .proof-item {
        padding: 15px 10px;
    }
    
    .proof-number {
        font-size: 1.8rem;
    }
    
    .proof-label {
        font-size: 0.85rem;
    }
    
    .service-card,
    .contact-form {
        padding: 25px 20px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Lazy loading placeholder */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #DC2626;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/banner-1.avif');
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Touch-friendly search bar */
    .search-input-wrapper {
        min-height: 50px;
    }
    
    #heroSearch {
        min-height: 44px;
        padding: 15px 20px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .search-icon,
    .search-options {
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .search-filter select {
        min-height: 44px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .search-suggestion {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Reduce hover effects on touch devices */
    .search-input-wrapper:hover {
        transform: none;
    }
    
    .search-options:hover {
        transform: none;
    }
    
    /* Focus states for touch */
    .search-input-wrapper:focus-within {
        transform: none;
        box-shadow: 
            0 0 0 3px #DC2626,
            0 0 20px rgba(220, 38, 38, 0.6);
    }
}

/* Print styles */
@media print {
    .menu-toggle,
    nav,
    .cta-button,
    .contact-form {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        background: none;
        color: black;
        height: auto;
        padding: 40px 0;
    }
}
