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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #DC2626 0%, #111827 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #DC2626;
    border: 2px solid #DC2626;
}

.btn-secondary:hover {
    background: #DC2626;
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo h1 {
    color: #DC2626;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.nav-logo span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #DC2626;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px; /* Increased top padding to prevent header overlap */
    background: linear-gradient(135deg, #DC2626 0%, #111827 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: white;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-feature i {
    color: #FBBF24;
    font-size: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-escort-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-escort-image:hover {
    transform: translateY(-10px);
}

.hero-escort-image img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.hero-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.hero-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #DC2626 0%, #111827 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC2626 0%, #111827 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.service-card:hover .service-icon {
    box-shadow: 0 12px 25px rgba(220, 38, 38, 0.4);
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(220, 38, 38, 0.2);
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding: 0 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    padding: 0 1.5rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0 1.5rem 1.5rem;
}

.service-card li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.8rem;
    color: #555;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li:before {
    content: "✓";
    color: #DC2626;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    background: rgba(220, 38, 38, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.service-card:hover li {
    color: #333;
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

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

.about-image:hover img {
    transform: scale(1.1);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: #DC2626;
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.1);
}

.feature i {
    font-size: 2.5rem;
    color: #DC2626;
    margin-bottom: 1rem;
}

.feature h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Service Types Section */
.service-types {
    padding: 80px 0;
    background: white;
}

.service-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-type-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #DC2626 0%, #111827 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-type-card:hover::before {
    transform: scaleX(1);
}

.service-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
    border-color: #DC2626;
}

.service-type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #DC2626, #111827);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.service-type-card:hover .service-type-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(220, 38, 38, 0.4);
}

.service-type-icon i {
    color: white;
    font-size: 2rem;
}

.service-type-card h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-type-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.service-type-card .btn {
    padding: 12px 30px;
    font-size: 1rem;
}

/* Escort Gallery Section */
.escort-gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.escort-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.escort-profile {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.escort-profile:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

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

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

.escort-details {
    padding: 25px;
    text-align: center;
}

.escort-details h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.escort-details p {
    color: #666;
    margin-bottom: 15px;
    font-size: 1rem;
}

.escort-category {
    background: linear-gradient(135deg, #DC2626, #111827);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Service Coverage Section */
.service-coverage {
    padding: 80px 0;
    background: white;
}

.coverage-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 50px;
    align-items: start;
}

.coverage-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.coverage-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    grid-column: 1 / -1; /* Span full width below content and areas */
}

.coverage-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.coverage-image:hover {
    transform: translateY(-5px);
}

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

.coverage-image:hover img {
    transform: scale(1.1);
}

.coverage-areas {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid #DC2626;
}

.coverage-areas h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

.coverage-areas ul {
    list-style: none;
    padding: 0;
}

.coverage-areas li {
    color: #666;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1rem;
}

.coverage-areas li:last-child {
    border-bottom: none;
}

.coverage-areas li:before {
    content: "✓";
    color: #DC2626;
    font-weight: bold;
    margin-right: 10px;
}

/* Safety & Privacy Section */
.safety-privacy {
    padding: 80px 0;
    background: #f8f9fa;
}

.safety-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 50px;
}

.safety-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.safety-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.safety-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.safety-image:hover {
    transform: translateY(-5px);
}

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

.safety-image:hover img {
    transform: scale(1.1);
}

.safety-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.safety-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.safety-item:hover {
    transform: translateY(-5px);
    border-color: #DC2626;
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.1);
}

.safety-item i {
    color: #DC2626;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.safety-item h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.safety-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.why-choose-us .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-us .section-header h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-choose-us .section-header p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

.reason-card {
    background: white;
    padding: 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #DC2626 0%, #111827 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.15);
    border-color: #DC2626;
}

.reason-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    margin-bottom: 0;
}

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

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

.reason-icon {
    width: 60px;
    height: 60px;
    margin: 1.5rem auto 1rem;
    background: linear-gradient(135deg, #DC2626, #111827);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    transition: transform 0.3s ease;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1);
}

.reason-icon i {
    color: white;
    font-size: 1.5rem;
}

.reason-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 0 1.5rem;
}

.reason-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    padding: 0 1.5rem 1.5rem;
    margin-bottom: 0;
}

/* Comprehensive Services Section */
.comprehensive-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-content {
    margin-top: 50px;
}

.service-details h3 {
    color: #DC2626;
    margin: 30px 0 20px;
    font-size: 1.8rem;
}

.service-details p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Escort Profiles Section */
.escort-profiles {
    padding: 80px 0;
    background: white;
}

.escort-profiles-content {
    margin-top: 50px;
}

.escort-intro h3 {
    color: #DC2626;
    margin: 30px 0 20px;
    font-size: 1.8rem;
}

.escort-intro p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Safety Content */
.safety-content {
    margin-top: 50px;
}

.safety-text {
    margin-bottom: 50px;
}

.safety-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Keyword Highlighting and Interlinking */
.keyword-highlight {
    color: #DC2626;
    font-weight: 600;
    background: linear-gradient(120deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
    padding: 2px 6px;
    border-radius: 4px;
    border-left: 3px solid #DC2626;
}

.keyword-link {
    color: #FBBF24;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 3px;
    background: rgba(251, 191, 36, 0.1);
    text-shadow: none;
}

.keyword-link:hover {
    color: #F59E0B;
    border-bottom-color: #F59E0B;
    background: rgba(251, 191, 36, 0.2);
    transform: translateY(-1px);
}

.keyword-link:focus {
    outline: 2px solid #FBBF24;
    outline-offset: 2px;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item-link:hover {
    transform: translateY(-10px);
}

.gallery-item-link:hover .gallery-item {
    transform: none;
}

.gallery-image {
    height: 250px;
    background: linear-gradient(135deg, #DC2626 0%, #111827 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image i {
    font-size: 2rem;
    color: white;
}

.gallery-info {
    padding: 1.5rem;
    text-align: center;
}

.gallery-info h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: #DC2626;
    font-weight: 500;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #DC2626, #B91C1C);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.15);
    border-color: #DC2626;
}

.contact-item i {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: inline-block;
    color: #DC2626;
    font-size: 2.5rem;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    border: none;
    overflow: visible;
    text-align: center;
    line-height: 1;
}

.contact-item i::before {
    display: inline-block;
    width: auto;
    text-align: center;
    line-height: 1;
}

.contact-item i::after {
    display: none;
}

.contact-item:hover i {
    transform: scale(1.1);
    color: #B91C1C;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item p {
    margin-bottom: 0;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DC2626;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #DC2626;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    border: 2px solid transparent;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    border-color: #FBBF24;
}

.social-links a i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover i {
    transform: rotate(360deg);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 1rem;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-policies {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #34495e;
}

.footer-policies a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: #DC2626;
    text-decoration: underline;
}

.footer-policies a:first-child {
    margin-left: 0;
}

.footer-policies a:last-child {
    margin-right: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
    }
    
    .hero-escort-image img {
        width: 250px;
        height: 350px;
    }

    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
    }

    .hero-features {
        justify-content: center;
        gap: 1rem;
    }

    .hero-feature {
        font-size: 0.8rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .service-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .service-type-card {
        padding: 30px 20px;
    }

    .service-type-card h3 {
        font-size: 1.3rem;
    }

    .service-type-card p {
        font-size: 0.95rem;
    }

    .escort-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .coverage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .safety-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comprehensive-services,
    .escort-profiles {
        padding: 60px 0;
    }

    .service-details h3,
    .escort-intro h3 {
        font-size: 1.5rem;
    }

    .service-details p,
    .escort-intro p {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 40px; /* Increased top padding for mobile to prevent header overlap */
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-escort-image img {
        width: 200px;
        height: 280px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .service-card,
    .gallery-item {
        margin: 0 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

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

.service-card,
.gallery-item,
.feature {
    animation: fadeInUp 0.6s ease forwards;
}

/* Performance Optimizations */
.service-card,
.gallery-item,
.feature {
    will-change: transform;
}

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

/* Focus styles for accessibility */
.btn:focus,
.nav-menu a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #DC2626;
    outline-offset: 2px;
}

/* Page Header Styles */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #DC2626 0%, #111827 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

/* Page Content Styles */
.page-content {
    padding: 80px 0;
    background: white;
}

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

.main-content h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.main-content h3 {
    color: #333;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.main-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    color: #DC2626;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h4 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-info-sidebar p {
    margin-bottom: 1rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-sidebar i {
    color: #DC2626;
    width: 20px;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.sidebar-list li:before {
    content: "•";
    color: #DC2626;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #DC2626 0%, #111827 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsiveness for New Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-content h2 {
        font-size: 1.8rem;
    }
    
    .main-content h3 {
        font-size: 1.3rem;
    }
    
    .sidebar {
        position: static;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .main-content h2 {
        font-size: 1.5rem;
    }
    
    .feature-list li {
        padding-left: 1.5rem;
        font-size: 1rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
}

/* Gallery Styles for Individual Pages */
.vip-gallery,
.female-gallery,
.independent-gallery,
.male-gallery,
.agency-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.vip-escort-item,
.female-escort-item,
.independent-escort-item,
.male-escort-item,
.agency-escort-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip-escort-item:hover,
.female-escort-item:hover,
.independent-escort-item:hover,
.male-escort-item:hover,
.agency-escort-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vip-escort-item img,
.female-escort-item img,
.independent-escort-item img,
.male-escort-item img,
.agency-escort-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.escort-info {
    padding: 1.5rem;
    text-align: center;
}

.escort-info h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.escort-info p {
    color: #DC2626;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Update existing gallery styles to work with real images */
.gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 0 0;
}

/* Mobile responsiveness for galleries */
@media (max-width: 768px) {
    .vip-gallery,
    .female-gallery,
    .independent-gallery,
    .male-gallery,
    .agency-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .vip-escort-item img,
    .female-escort-item img,
    .independent-escort-item img,
    .male-escort-item img,
    .agency-escort-item img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .vip-gallery,
    .female-gallery,
    .independent-gallery,
    .male-gallery,
    .agency-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vip-escort-item img,
    .female-escort-item img,
    .independent-escort-item img,
    .male-escort-item img,
    .agency-escort-item img {
        height: 200px;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #DC2626 0%, #111827 100%);
    color: white;
    text-align: center;
    padding: 120px 0 80px;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #DC2626 0%, #111827 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC2626 0%, #111827 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.service-card:hover .service-icon {
    box-shadow: 0 12px 25px rgba(220, 38, 38, 0.4);
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(220, 38, 38, 0.2);
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding: 0 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    padding: 0 1.5rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0 1.5rem 1.5rem;
}

.service-card li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.8rem;
    color: #555;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li:before {
    content: "✓";
    color: #DC2626;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    background: rgba(220, 38, 38, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.service-card:hover li {
    color: #333;
    transform: translateX(5px);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
}

.service-features i {
    color: #DC2626;
    margin-right: 0.5rem;
}

.service-features-section {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #DC2626 0%, #111827 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.service-areas {
    padding: 80px 0;
    background: #f8f9fa;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.area-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.area-item h4 {
    color: #DC2626;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.area-item p {
    color: #666;
    margin: 0;
}

.service-process {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC2626 0%, #111827 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid #DC2626;
    transform: scale(1.05);
}

.pricing-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #DC2626;
    margin-bottom: 0.5rem;
}

.pricing-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-note p {
    color: #666;
    margin: 0;
}

/* Mobile Responsiveness for Services Page */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .features-grid,
    .areas-grid,
    .process-steps,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card,
    .pricing-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .services-hero {
        padding: 100px 0 60px;
    }
    
    .service-card,
    .pricing-card {
        padding: 1rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #DC2626 0%, #111827 100%);
    color: white;
    text-align: center;
    padding: 140px 0 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    padding: 80px 0;
    background: white;
}

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

.main-content {
    padding-right: 2rem;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 600;
}

.about-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.features-list {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: #DC2626;
    min-width: 60px;
}

.feature-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    color: #DC2626;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.area-group h4 {
    color: #DC2626;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.area-group ul {
    list-style: none;
    padding: 0;
}

.area-group li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.area-group li:last-child {
    border-bottom: none;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #DC2626;
    margin-right: 0.5rem;
    width: 20px;
}

.service-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-links a {
    color: #DC2626;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.service-links a:hover {
    color: #111827;
}

.btn-block {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #DC2626 0%, #111827 100%);
    color: white;
    text-align: center;
    padding: 140px 0 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    padding: 40px 0;
    background: white;
}

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

.main-content {
    padding-right: 2rem;
}

.contact-section {
    margin-bottom: 3rem;
}

.contact-section h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Message Form Card */
.message-form-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.contact-form h2 {
    display: none;
}

.contact-form p {
    display: none;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f9fafb;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-group textarea:focus {
    outline: none;
    border-color: #DC2626;
    background: white;
}

/* Service Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.area-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.area-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.area-item h4 {
    color: #DC2626;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.area-item p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.sidebar-section h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-bottom: 2px solid #DC2626;
    padding-bottom: 0.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.contact-info i {
    color: #DC2626;
    width: 20px;
    font-size: 1rem;
}

.service-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-links a {
    color: #333;
    text-decoration: none;
    padding: 0.8rem 0;
    transition: color 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
    font-weight: 400;
    font-size: 0.95rem;
}

.service-links a:hover {
    color: #DC2626;
}

.service-links a:last-child {
    border-bottom: none;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: #DC2626;
    color: white;
}

.btn-primary:hover {
    background: #B91C1C;
    transform: translateY(-1px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-content {
        padding-right: 0;
    }
    
    .sidebar {
        position: static;
        order: 2;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .message-form-card {
        padding: 1.5rem;
    }
    
    .sidebar-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 20px 0;
    }
    
    .message-form-card {
        padding: 1rem;
    }
    
    .sidebar-section {
        padding: 1rem;
    }
    
    .contact-section h2 {
        font-size: 1.5rem;
    }
}

/* New Contact Page Styles - Modern Design */
.contact-hero {
    background: linear-gradient(135deg, #DC2626 0%, #111827 100%);
    color: white;
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(https://pbescorts.in/%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-hero p {
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Contact Methods Section */
.contact-methods-section {
    padding: 4rem 0 2rem;
    background: #f8fafc;
}

.contact-methods-section h2 {
    text-align: center;
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-method-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #DC2626, #B91C1C);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method-card:hover::before {
    transform: scaleX(1);
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #DC2626;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
    transition: all 0.3s ease;
    position: relative;
}

.method-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-method-card:hover .method-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.35);
}

.contact-method-card:hover .method-icon::after {
    opacity: 1;
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.contact-method-card:hover .method-icon i {
    transform: scale(1.1);
}

.method-content {
    text-align: left;
    flex: 1;
}

.method-content h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.method-content p {
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1rem;
}

/* Contact Main Section */
.contact-main-section {
    padding: 4rem 0;
    background: white;
}

.contact-grid {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    color: #1f2937;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-header p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DC2626;
    background: white;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Service Areas Section */
.service-areas-section {
    padding: 4rem 0;
    background: #f8fafc;
    text-align: center;
}

.service-areas-section h2 {
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-areas-section p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: left;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #DC2626;
}

.area-card h4 {
    color: #DC2626;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.area-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Enhanced Button Styles */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn::before {
    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.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #4B5563 0%, #374151 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.4);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact-method-card {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .contact-grid {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-methods-section,
    .contact-main-section,
    .service-areas-section {
        padding: 2rem 0;
    }
    
    .contact-methods-section h2,
    .service-areas-section h2 {
        font-size: 2rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .contact-method-card {
        padding: 1.5rem;
    }
    
    .contact-methods-grid,
    .contact-grid,
    .areas-grid {
        padding: 0 1rem;
    }
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    margin-bottom: 1.5rem;
}

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

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

/* Website Rental Section */
.website-rental {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 3rem 0;
    text-align: center;
    border-top: 3px solid #DC2626;
}

.rental-content h3 {
    color: #FBBF24;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rental-content p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.rental-content a {
    color: #FBBF24;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.rental-content a:hover {
    color: #F59E0B;
    text-decoration: underline;
}

/* Policy Pages Styling */
.privacy-hero,
.terms-hero {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.privacy-hero h1,
.terms-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.privacy-hero p,
.terms-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.policy-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.policy-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border-left: 4px solid #DC2626;
}

.policy-section h2 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.policy-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.policy-section ul {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.policy-section .contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.policy-section .contact-info p {
    margin-bottom: 0.5rem;
}

.policy-section .contact-info a {
    color: #DC2626;
    text-decoration: none;
    font-weight: 500;
}

.policy-section .contact-info a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness for Policy Pages */
@media (max-width: 768px) {
    .privacy-hero h1,
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .policy-section {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-content {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1,
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
}