/* Global Styles - Color Scheme based on hotSaumya Kapoor.in */
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

:root {
 /* Primary Color Scheme - Red tones */
 --primary-color: #FF0000;
 --primary-dark: #CC0000;
 --primary-light: #FF3333;
 
 /* Secondary Colors */
 --secondary-color: #FF4444;
 --accent-color: #ba55d3;
 
 /* Neutral Colors */
 --dark-bg: #1a1a1a;
 --light-bg: #f5f5f5;
 --white: #ffffff;
 --black: #000000;
 --gray: #666666;
 --light-gray: #e0e0e0;
 
 /* Text Colors */
 --text-dark: #212121;
 --text-light: #757575;
 
 /* Fonts */
 --font-primary: 'Poppins', sans-serif;
}

body {
 font-family: var(--font-primary);
 line-height: 1.6;
 color: var(--text-dark);
 overflow-x: hidden;
}

.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}

/* Header Styles */
.header {
 background: linear-gradient(135deg, #fff 0%, #ffe6f0 100%);
 padding: 1rem 0;
 position: sticky;
 top: 0;
 z-index: 1000;
 box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.logo img {
 height: 60px;
 width: auto;
}

.logo h1 {
 color: var(--white);
 font-size: 2rem;
 font-weight: 700;
 letter-spacing: 2px;
}

.nav-menu {
 display: flex;
 list-style: none;
 gap: 2rem;
}

.nav-menu a {
 color: var(--text-dark);
 text-decoration: none;
 font-weight: 500;
 transition: all 0.3s ease;
 padding: 0.5rem 1rem;
 border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
 background: var(--primary-color);
 color: var(--white);
 transform: translateY(-2px);
}

.hamburger {
 display: none;
 flex-direction: column;
 cursor: pointer;
}

.hamburger span {
 width: 25px;
 height: 3px;
 background: var(--white);
 margin: 3px 0;
 transition: 0.3s;
}

/* Hero Section */
.hero {
 background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
 padding: 100px 0;
 text-align: center;
 color: var(--white);
}

.hero-content h1 {
 font-size: 3rem;
 margin-bottom: 1rem;
 animation: fadeInUp 1s ease;
}

.hero-content p {
 font-size: 1.2rem;
 margin-bottom: 2rem;
 animation: fadeInUp 1.2s ease;
}

.hero-buttons {
 display: flex;
 gap: 1rem;
 justify-content: center;
 flex-wrap: wrap;
 animation: fadeInUp 1.4s ease;
}

/* Buttons */
.btn {
 display: inline-block;
 padding: 1rem 2rem;
 text-decoration: none;
 border-radius: 50px;
 font-weight: 600;
 transition: all 0.3s ease;
 border: 2px solid transparent;
}

.btn-primary {
 background: var(--white);
 color: var(--primary-color);
}

.btn-primary:hover {
 background: transparent;
 border-color: var(--white);
 color: var(--white);
 transform: translateY(-3px);
 box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
 background: transparent;
 color: var(--white);
 border-color: var(--white);
}

.btn-secondary:hover {
 background: var(--white);
 color: var(--primary-color);
 transform: translateY(-3px);
 box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-call {
 background: var(--primary-color);
 color: var(--white);
}

.btn-call:hover {
 background: var(--primary-dark);
 transform: scale(1.05);
}

.btn-whatsapp {
 background: #25D366;
 color: var(--white);
}

.btn-whatsapp:hover {
 background: #128C7E;
 transform: scale(1.05);
}

/* Contact Instant Section */
.contact-instant {
 background: var(--light-bg);
 padding: 60px 0;
 text-align: center;
}

.contact-instant h2 {
 color: var(--primary-color);
 font-size: 2.5rem;
 margin-bottom: 1rem;
}

.contact-instant p {
 color: var(--text-light);
 font-size: 1.1rem;
 margin-bottom: 2rem;
}

.contact-buttons {
 display: flex;
 gap: 1rem;
 justify-content: center;
 flex-wrap: wrap;
}

/* About Section */
.about-section {
 padding: 80px 0;
}

.about-section h2 {
 text-align: center;
 color: var(--primary-color);
 font-size: 2.5rem;
 margin-bottom: 3rem;
}

.about-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
 gap: 2rem;
}

.about-item {
 background: var(--white);
 padding: 2rem;
 border-radius: 10px;
 box-shadow: 0 5px 15px rgba(0,0,0,0.1);
 transition: all 0.3s ease;
}

.about-item:hover {
 transform: translateY(-10px);
 box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.about-item h3 {
 color: var(--primary-color);
 font-size: 1.5rem;
 margin-bottom: 1rem;
}

.about-item p {
 color: var(--text-light);
 line-height: 1.8;
 margin-bottom: 1rem;
}

/* Articles Section */
.articles-section {
 background: var(--light-bg);
 padding: 80px 0;
}

.articles-section h2 {
 text-align: center;
 color: var(--primary-color);
 font-size: 2.5rem;
 margin-bottom: 3rem;
}

.articles-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
}

.article-card {
 background: var(--white);
 padding: 2rem;
 border-radius: 10px;
 box-shadow: 0 5px 15px rgba(0,0,0,0.1);
 transition: all 0.3s ease;
}

.article-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.article-card h3 {
 color: var(--primary-color);
 font-size: 1.3rem;
 margin-bottom: 1rem;
}

.article-card p {
 color: var(--text-light);
 line-height: 1.8;
 margin-bottom: 1rem;
}

.read-more {
 color: var(--primary-color);
 text-decoration: none;
 font-weight: 600;
 transition: all 0.3s ease;
}

.read-more:hover {
 color: var(--primary-dark);
 margin-left: 5px;
}

/* Content Section */
.content-section {
 padding: 80px 0;
 background: var(--white);
}

.content-section h2 {
 text-align: center;
 color: var(--primary-color);
 font-size: 2.5rem;
 margin-bottom: 2rem;
}

.content-wrapper {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}

.content-wrapper p {
 color: var(--text-light);
 line-height: 1.9;
 margin-bottom: 1.5rem;
 text-align: justify;
 font-size: 1.05rem;
}

.content-wrapper h3 {
 color: var(--primary-dark);
 font-size: 1.8rem;
 margin-top: 2.5rem;
 margin-bottom: 1.2rem;
 font-weight: 700;
}

.content-wrapper strong {
 color: var(--primary-color);
 font-weight: 600;
}

/* FAQ Section */
.faq-section {
 padding: 80px 0;
 background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-section h2 {
 text-align: center;
 color: var(--primary-color);
 font-size: 2.5rem;
 margin-bottom: 3rem;
}

.faq-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 2rem;
 max-width: 1400px;
 margin: 0 auto;
}

.faq-column {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.faq-container {
 max-width: 800px;
 margin: 0 auto;
}

.faq-item {
 background: var(--white);
 margin-bottom: 1rem;
 border-radius: 10px;
 overflow: hidden;
 box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 1.5rem;
 cursor: pointer;
 background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
 color: var(--white);
}

.faq-question h3 {
 font-size: 1.2rem;
}

.faq-toggle {
 font-size: 1.5rem;
 font-weight: bold;
 transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
 transform: rotate(45deg);
}

.faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.3s ease;
 background: var(--white);
}

.faq-item.active .faq-answer {
 max-height: 500px;
}

.faq-answer p {
 padding: 1.5rem;
 color: var(--text-light);
 line-height: 1.8;
}

/* Footer */
.footer {
 background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d2d 100%);
 color: var(--white);
 padding: 60px 0 20px;
}

.footer-content {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
 margin-bottom: 2rem;
}

.footer-logo h2 {
 color: var(--primary-light);
 margin-bottom: 1rem;
}

.footer-logo p {
 color: var(--light-gray);
 line-height: 1.8;
}

.footer-contact {
 margin-top: 1.5rem;
}

.footer-contact h4 {
 color: var(--primary-light);
 margin-bottom: 0.5rem;
}

.footer-contact a {
 color: var(--white);
 text-decoration: none;
 font-size: 1.2rem;
 transition: color 0.3s ease;
}

.footer-contact a:hover {
 color: var(--primary-light);
}

.footer-column h4 {
 color: var(--primary-light);
 margin-bottom: 1rem;
 font-size: 1.2rem;
}

.footer-column ul {
 list-style: none;
}

.footer-column ul li {
 margin-bottom: 0.5rem;
}

.footer-column ul li a {
 color: var(--light-gray);
 text-decoration: none;
 transition: all 0.3s ease;
}

.footer-column ul li a:hover {
 color: var(--primary-light);
 padding-left: 5px;
}

.footer-bottom {
 text-align: center;
 padding-top: 2rem;
 border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
 color: var(--light-gray);
}

/* Back to Top Button */
.back-to-top {
 position: fixed;
 bottom: 80px;
 right: 30px;
 background: var(--primary-color);
 color: var(--white);
 width: 50px;
 height: 50px;
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 50%;
 text-decoration: none;
 font-size: 1.5rem;
 box-shadow: 0 5px 15px rgba(0,0,0,0.3);
 opacity: 0;
 pointer-events: none;
 transition: all 0.3s ease;
}

.back-to-top.visible {
 opacity: 1;
 pointer-events: all;
}

.back-to-top:hover {
 background: var(--primary-dark);
 transform: translateY(-5px);
}

/* WhatsApp Float Button */
.whatsapp-float {
 position: fixed;
 bottom: 20px;
 right: 30px;
 background: #25D366;
 color: var(--white);
 width: 60px;
 height: 60px;
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 50%;
 box-shadow: 0 5px 15px rgba(0,0,0,0.3);
 text-decoration: none;
 animation: pulse 2s infinite;
 z-index: 999;
 transition: all 0.3s ease;
}

.whatsapp-float svg {
 width: 32px;
 height: 32px;
}

.whatsapp-float:hover {
 background: #128C7E;
 transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(30px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
}

@keyframes pulse {
 0% {
 box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
 }
 70% {
 box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
 }
 100% {
 box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
 }
}

/* Responsive Design */
@media (max-width: 768px) {
 .hamburger {
 display: flex;
 }
 
 .nav-menu {
 position: fixed;
 left: -100%;
 top: 70px;
 flex-direction: column;
 background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
 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-menu a {
 padding: 1rem;
 }
 
 .hero-content h1 {
 font-size: 2rem;
 }
 
 .hero-content p {
 font-size: 1rem;
 }
 
 .about-grid,
 .articles-grid {
 grid-template-columns: 1fr;
 }
 
 .faq-grid {
 grid-template-columns: 1fr;
 }
 
 .footer-content {
 grid-template-columns: 1fr;
 }
}

@media (max-width: 480px) {
 .hero {
 padding: 60px 0;
 }
 
 .hero-content h1 {
 font-size: 1.5rem;
 }
 
 .btn {
 padding: 0.8rem 1.5rem;
 font-size: 0.9rem;
 }
 
 .about-section,
 .articles-section,
 .faq-section {
 padding: 40px 0;
 }
}

/* Page Header Styles */
.page-header {
 background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
 padding: 80px 0;
 text-align: center;
 color: var(--white);
}

.page-header h1 {
 font-size: 3rem;
 margin-bottom: 1rem;
}

.page-header p {
 font-size: 1.2rem;
}

/* Services Page Styles */
.services-section {
 padding: 80px 0;
}

.services-intro {
 text-align: center;
 margin-bottom: 3rem;
}

.services-intro h2 {
 color: var(--primary-color);
 font-size: 2.5rem;
 margin-bottom: 1rem;
}

.services-intro p {
 color: var(--text-light);
 font-size: 1.1rem;
}

.services-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
}

.service-card {
 background: var(--white);
 padding: 2rem;
 border-radius: 15px;
 box-shadow: 0 5px 20px rgba(0,0,0,0.1);
 transition: all 0.3s ease;
 text-align: center;
}

.service-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.service-icon {
 font-size: 3rem;
 margin-bottom: 1rem;
}

.service-card h3 {
 color: var(--primary-color);
 font-size: 1.5rem;
 margin-bottom: 1rem;
}

.service-card p {
 color: var(--text-light);
 margin-bottom: 1.5rem;
 line-height: 1.8;
}

.service-features {
 list-style: none;
 text-align: left;
 margin-bottom: 1rem;
}

.service-features li {
 color: var(--text-light);
 padding: 0.5rem 0;
 border-bottom: 1px solid var(--light-gray);
}

.service-features li:last-child {
 border-bottom: none;
}

/* Service Types Section */
.service-types {
 background: var(--light-bg);
 padding: 80px 0;
}

.service-types h2 {
 text-align: center;
 color: var(--primary-color);
 font-size: 2.5rem;
 margin-bottom: 3rem;
}

.types-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2rem;
}

.type-item {
 background: var(--white);
 padding: 2rem;
 border-radius: 10px;
 box-shadow: 0 3px 15px rgba(0,0,0,0.1);
 transition: all 0.3s ease;
}

.type-item:hover {
 transform: translateY(-5px);
 box-shadow: 0 8px 25px rgba(233, 30, 99, 0.2);
}

.type-item h3 {
 color: var(--primary-color);
 margin-bottom: 0.5rem;
}

.type-item p {
 color: var(--text-light);
 line-height: 1.7;
}

/* Booking Process Section */
.booking-process {
 padding: 80px 0;
}

.booking-process h2 {
 text-align: center;
 color: var(--primary-color);
 font-size: 2.5rem;
 margin-bottom: 3rem;
}

.process-steps {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
 margin-bottom: 3rem;
}

.step {
 text-align: center;
 padding: 2rem;
}

.step-number {
 width: 60px;
 height: 60px;
 background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
 color: var(--white);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.5rem;
 font-weight: bold;
 margin: 0 auto 1rem;
}

.step h3 {
 color: var(--primary-color);
 margin-bottom: 0.5rem;
}

.step p {
 color: var(--text-light);
 line-height: 1.7;
}

.cta-section {
 text-align: center;
 padding: 2rem;
 background: var(--light-bg);
 border-radius: 10px;
}

.cta-section h3 {
 color: var(--primary-color);
 margin-bottom: 1.5rem;
 font-size: 2rem;
}

/* Locations Page Styles */
.locations-section {
 padding: 80px 0;
}

.locations-intro {
 text-align: center;
 margin-bottom: 3rem;
}

.locations-intro h2 {
 color: var(--primary-color);
 font-size: 2.5rem;
 margin-bottom: 1rem;
}

.locations-intro p {
 color: var(--text-light);
 font-size: 1.1rem;
}

.locations-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2rem;
}

.location-card {
 background: var(--white);
 padding: 2rem;
 border-radius: 10px;
 box-shadow: 0 5px 15px rgba(0,0,0,0.1);
 text-align: center;
 transition: all 0.3s ease;
}

.location-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.location-card.featured {
 border: 2px solid var(--primary-color);
 background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(255, 64, 129, 0.05));
}

.location-icon {
 font-size: 2.5rem;
 margin-bottom: 1rem;
}

.location-card h3 {
 color: var(--primary-color);
 font-size: 1.5rem;
 margin-bottom: 0.5rem;
}

.location-card p {
 color: var(--text-light);
 line-height: 1.7;
 margin-bottom: 1rem;
}

.area-list {
 list-style: none;
 margin: 1rem 0;
 padding: 0;
}

.area-list li {
 color: var(--text-light);
 padding: 0.3rem 0;
 font-size: 0.9rem;
}

.location-btn {
 display: inline-block;
 margin-top: 1rem;
 padding: 0.8rem 2rem;
 background: var(--primary-color);
 color: var(--white);
 text-decoration: none;
 border-radius: 25px;
 transition: all 0.3s ease;
}

.location-btn:hover {
 background: var(--primary-dark);
 transform: scale(1.05);
}

/* Coverage Section */
.coverage-section {
 background: var(--light-bg);
 padding: 60px 0;
 text-align: center;
}

.coverage-section h2 {
 color: var(--primary-color);
 font-size: 2.5rem;
 margin-bottom: 1rem;
}

.coverage-section p {
 color: var(--text-light);
 font-size: 1.1rem;
 margin-bottom: 2rem;
}

.coverage-stats {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 2rem;
 margin-top: 3rem;
}

.stat-item {
 padding: 2rem;
}

.stat-item h3 {
 color: var(--primary-color);
 font-size: 3rem;
 margin-bottom: 0.5rem;
}

.stat-item p {
 color: var(--text-light);
 font-size: 1.1rem;
}

/* Gallery Page Styles */
.gallery-section {
 padding: 80px 0;
}

.gallery-intro {
 text-align: center;
 margin-bottom: 3rem;
}

.gallery-intro h2 {
 color: var(--primary-color);
 font-size: 2.5rem;
 margin-bottom: 1rem;
}

.gallery-intro p {
 color: var(--text-light);
 font-size: 1.1rem;
}

.gallery-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2rem;
 margin-bottom: 3rem;
}

.gallery-item {
 background: var(--white);
 border-radius: 10px;
 overflow: hidden;
 box-shadow: 0 5px 15px rgba(0,0,0,0.1);
 transition: all 0.3s ease;
}

.gallery-item:hover {
 transform: translateY(-10px);
 box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.gallery-image {
 width: 100%;
 height: 300px;
 overflow: hidden;
}

.placeholder-image {
 width: 100%;
 height: 100%;
 background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 color: var(--white);
}

.placeholder-image span {
 font-size: 4rem;
 margin-bottom: 1rem;
}

.placeholder-image p {
 font-size: 1.2rem;
}

.gallery-info {
 padding: 1.5rem;
 text-align: center;
}

.gallery-info h3 {
 color: var(--primary-color);
 margin-bottom: 0.5rem;
}

.gallery-info p {
 color: var(--text-light);
 margin-bottom: 1rem;
}

.gallery-btn {
 display: inline-block;
 padding: 0.5rem 1.5rem;
 background: var(--primary-color);
 color: var(--white);
 text-decoration: none;
 border-radius: 20px;
 transition: all 0.3s ease;
}

.gallery-btn:hover {
 background: var(--primary-dark);
 transform: scale(1.05);
}

.gallery-note {
 text-align: center;
 padding: 3rem;
 background: var(--light-bg);
 border-radius: 10px;
}

.gallery-note h3 {
 color: var(--primary-color);
 font-size: 2rem;
 margin-bottom: 1rem;
}

.gallery-note p {
 color: var(--text-light);
 font-size: 1.1rem;
 line-height: 1.8;
 margin-bottom: 2rem;
}

/* Contact Page Styles */
.contact-section {
 padding: 80px 0;
}

.contact-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
}

.contact-info h2 {
 color: var(--primary-color);
 font-size: 2.5rem;
 margin-bottom: 1rem;
}

.contact-info > p {
 color: var(--text-light);
 margin-bottom: 2rem;
 line-height: 1.8;
}

.contact-method {
 display: flex;
 gap: 1.5rem;
 margin-bottom: 2rem;
 padding: 1.5rem;
 background: var(--white);
 border-radius: 10px;
 box-shadow: 0 3px 10px rgba(0,0,0,0.1);
 transition: all 0.3s ease;
}

.contact-method:hover {
 transform: translateX(5px);
 box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

.method-icon {
 font-size: 2.5rem;
}

.method-details h3 {
 color: var(--primary-color);
 margin-bottom: 0.5rem;
}

.method-details a {
 color: var(--text-dark);
 text-decoration: none;
 font-weight: 600;
 display: block;
 margin-bottom: 0.5rem;
 transition: color 0.3s ease;
}

.method-details a:hover {
 color: var(--primary-color);
}

.method-details p {
 color: var(--text-light);
 font-size: 0.9rem;
}

.social-links {
 margin-top: 2rem;
}

.social-links h3 {
 color: var(--primary-color);
 margin-bottom: 1rem;
}

.social-icons {
 display: flex;
 gap: 1rem;
}

.social-icon {
 width: 50px;
 height: 50px;
 background: var(--primary-color);
 color: var(--white);
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 50%;
 text-decoration: none;
 font-size: 1.5rem;
 transition: all 0.3s ease;
}

.social-icon:hover {
 background: var(--primary-dark);
 transform: translateY(-5px);
}

/* Contact Form Styles */
.contact-form-container {
 background: var(--white);
 padding: 2.5rem;
 border-radius: 15px;
 box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
 color: var(--primary-color);
 font-size: 2rem;
 margin-bottom: 2rem;
}

.form-group {
 margin-bottom: 1.5rem;
}

.form-group label {
 display: block;
 color: var(--text-dark);
 margin-bottom: 0.5rem;
 font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
 width: 100%;
 padding: 0.8rem;
 border: 2px solid var(--light-gray);
 border-radius: 8px;
 font-family: var(--font-primary);
 font-size: 1rem;
 transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
 outline: none;
 border-color: var(--primary-color);
}

.checkbox-label {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
 width: auto;
}

.btn-submit {
 width: 100%;
 padding: 1rem;
 font-size: 1.1rem;
 cursor: pointer;
 border: none;
}

/* Quick Contact Section */
.quick-contact {
 background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
 padding: 60px 0;
 text-align: center;
 color: var(--white);
}

.quick-contact h2 {
 font-size: 2.5rem;
 margin-bottom: 1rem;
}

.quick-contact p {
 font-size: 1.2rem;
 margin-bottom: 2rem;
}

/* Responsive Updates */
@media (max-width: 768px) {
 .page-header h1 {
 font-size: 2rem;
 }
 
 .page-header p {
 font-size: 1rem;
 }
 
 .contact-grid {
 grid-template-columns: 1fr;
 }
 
 .services-grid,
 .types-grid,
 .locations-grid,
 .gallery-grid {
 grid-template-columns: 1fr;
 }
 
 .coverage-stats {
 grid-template-columns: repeat(2, 1fr);
 }
}

/* Escorts Section on Homepage */
.escorts-section {
 padding: 80px 0;
 background: var(--light-bg);
}

.escorts-section h2 {
 text-align: center;
 color: var(--primary-color);
 font-size: 2.5rem;
 margin-bottom: 0.5rem;
}

.section-subtitle {
 text-align: center;
 color: var(--text-light);
 font-size: 1.1rem;
 margin-bottom: 3rem;
}

.escorts-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
 margin-bottom: 2rem;
}

.escort-card {
 background: var(--white);
 border-radius: 15px;
 overflow: hidden;
 box-shadow: 0 5px 20px rgba(0,0,0,0.1);
 transition: all 0.3s ease;
 position: relative;
}

.escort-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
 transform: scaleX(0);
 transition: transform 0.3s ease;
}

.escort-card:hover::before {
 transform: scaleX(1);
}

.escort-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 15px 40px rgba(128, 0, 128, 0.3);
}

.escort-card img {
 width: 100%;
 height: 350px;
 object-fit: cover;
 transition: transform 0.5s ease;
}

.escort-card:hover img {
 transform: scale(1.1);
}

.escort-info {
 padding: 1.5rem;
 text-align: center;
 background: linear-gradient(to bottom, rgba(255,255,255,0.95), var(--white));
}

.escort-info h3 {
 color: var(--primary-color);
 font-size: 1.5rem;
 margin-bottom: 1rem;
 font-weight: 600;
}

.escort-details {
 display: flex;
 justify-content: center;
 gap: 1.5rem;
 margin-bottom: 1rem;
 flex-wrap: wrap;
}

.detail-item {
 display: flex;
 align-items: center;
 gap: 0.3rem;
 color: var(--text-light);
 font-size: 0.9rem;
}

.detail-item i {
 font-style: normal;
}

.escort-stats {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 0.8rem;
 margin: 1.2rem 0;
 padding: 1rem;
 background: linear-gradient(135deg, rgba(128, 0, 128, 0.05), rgba(153, 50, 204, 0.05));
 border-radius: 10px;
}

.stat {
 text-align: center;
 padding: 0.5rem;
}

.stat strong {
 display: block;
 color: var(--primary-color);
 font-size: 0.75rem;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 margin-bottom: 0.3rem;
}

.stat span {
 display: block;
 color: var(--text-dark);
 font-weight: 600;
 font-size: 0.95rem;
}

.escort-buttons {
 display: flex;
 gap: 10px;
 margin-top: 1rem;
}

.btn-contact {
 display: inline-block;
 padding: 0.8rem 1.5rem;
 background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
 color: var(--white);
 text-decoration: none;
 border-radius: 30px;
 transition: all 0.3s ease;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 font-size: 0.85rem;
 box-shadow: 0 4px 15px rgba(128, 0, 128, 0.3);
 flex: 1;
 text-align: center;
}

.btn-contact:hover {
 background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(128, 0, 128, 0.4);
}

.btn-whatsapp {
 background: linear-gradient(135deg, #25D366, #128C7E) !important;
 box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}

.btn-whatsapp:hover {
 background: linear-gradient(135deg, #128C7E, #25D366) !important;
 box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

/* Home Services Section */
.home-services-section {
 padding: 80px 0;
}

.home-services-section h2 {
 text-align: center;
 color: var(--primary-color);
 font-size: 2.5rem;
 margin-bottom: 0.5rem;
}

.service-card {
 background: var(--white);
 border-radius: 15px;
 overflow: hidden;
 box-shadow: 0 5px 20px rgba(0,0,0,0.1);
 transition: all 0.3s ease;
 position: relative;
}

.service-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
 transform: scaleX(0);
 transform-origin: left;
 transition: transform 0.4s ease;
}

.service-card:hover::before {
 transform: scaleX(1);
}

.service-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 15px 40px rgba(128, 0, 128, 0.3);
}

.service-card img {
 width: 100%;
 height: 350px;
 object-fit: cover;
 transition: transform 0.4s ease;
}

.service-card:hover img {
 transform: scale(1.1);
}

.service-info {
 padding: 1.5rem;
 text-align: center;
}

.service-info h3 {
 color: var(--primary-color);
 font-size: 1.3rem;
 margin-bottom: 0.5rem;
}

.service-details {
 display: flex;
 gap: 15px;
 margin-bottom: 15px;
 flex-wrap: wrap;
 justify-content: center;
}

.service-details .detail-item {
 display: flex;
 align-items: center;
 gap: 5px;
 color: #666;
 font-size: 0.9rem;
}

.service-details .detail-item i {
 font-style: normal;
}

.service-stats {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 10px;
 margin-bottom: 20px;
 background: linear-gradient(135deg, rgba(128,0,128,0.05), rgba(186,85,211,0.05));
 padding: 15px;
 border-radius: 10px;
}

.service-stats .stat {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
}

.service-stats .stat strong {
 color: var(--primary-color);
 font-size: 0.85rem;
 margin-bottom: 5px;
}

.service-stats .stat span {
 color: #333;
 font-weight: 600;
 font-size: 0.95rem;
}

.btn-service {
 display: inline-block;
 padding: 0.6rem 1.5rem;
 background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
 color: var(--white);
 text-decoration: none;
 border-radius: 25px;
 transition: all 0.3s ease;
 font-weight: 600;
 box-shadow: 0 4px 15px rgba(128, 0, 128, 0.3);
}

.btn-service:hover {
 transform: scale(1.05);
 box-shadow: 0 6px 20px rgba(128, 0, 128, 0.4);
}

/* Home Locations Section */
.home-locations-section {
 padding: 80px 0;
 background: var(--light-bg);
}

.home-locations-section h2 {
 text-align: center;
 color: var(--primary-color);
 font-size: 2.5rem;
 margin-bottom: 0.5rem;
}

.location-card {
 background: var(--white);
 border-radius: 15px;
 overflow: hidden;
 box-shadow: 0 5px 20px rgba(0,0,0,0.1);
 transition: all 0.3s ease;
}

.location-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 10px 30px rgba(128, 0, 128, 0.3);
}

.location-card img {
 width: 100%;
 height: auto;
 object-fit: contain;
 display: block;
}

.location-info {
 padding: 1.5rem;
 text-align: center;
}

.location-info h3 {
 color: var(--primary-color);
 font-size: 1.3rem;
 margin-bottom: 1rem;
}

.btn-location {
 display: inline-block;
 padding: 0.6rem 1.5rem;
 background: var(--primary-color);
 color: var(--white);
 text-decoration: none;
 border-radius: 25px;
 transition: all 0.3s ease;
 font-weight: 500;
}

.btn-location:hover {
 background: var(--primary-dark);
 transform: scale(1.05);
}

/* View All Button */
.view-all-btn {
 text-align: center;
 margin-top: 3rem;
}

/* Footer Logo Image */
.footer-logo-img {
 max-width: 150px;
 height: auto;
 margin-bottom: 1rem;
}

/* Responsive for new sections */
@media (max-width: 768px) {
 .escorts-grid,
 .services-grid,
 .locations-grid {
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 1.5rem;
 }
 
 .escort-card img,
 .service-card img,
 .location-card img {
 height: 250px;
 }
}

/* Modern Contact Form Styles */
.contact-wrapper {
 display: flex;
 gap: 3rem;
 align-items: flex-start;
}

.contact-form-side {
 flex: 1;
 background: var(--white);
 padding: 2.5rem;
 border-radius: 15px;
 box-shadow: 0 10px 30px rgba(128, 0, 128, 0.15);
}

.form-header {
 margin-bottom: 2rem;
}

.form-header h2 {
 color: var(--primary-color);
 font-size: 2rem;
 margin-bottom: 0.5rem;
}

.form-header p {
 color: var(--text-light);
 font-size: 0.95rem;
}

.contact-form-modern {
 display: flex;
 flex-direction: column;
 gap: 1.5rem;
}

.form-row {
 margin-bottom: 0;
}

.contact-form-modern .form-group {
 margin-bottom: 0;
}

.contact-form-modern .form-group label {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 color: var(--text-dark);
 font-weight: 600;
 margin-bottom: 0.5rem;
 font-size: 0.95rem;
}

.contact-form-modern .form-group .icon {
 font-size: 1.2rem;
}

.contact-form-modern input,
.contact-form-modern select,
.contact-form-modern textarea {
 width: 100%;
 padding: 0.9rem 1rem;
 border: 2px solid #e0e0e0;
 border-radius: 8px;
 font-family: var(--font-primary);
 font-size: 0.95rem;
 transition: all 0.3s ease;
 background: #fafafa;
}

.contact-form-modern input:focus,
.contact-form-modern select:focus,
.contact-form-modern textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 background: var(--white);
 box-shadow: 0 0 0 4px rgba(128, 0, 128, 0.1);
}

.contact-form-modern textarea {
 resize: vertical;
 min-height: 120px;
}

.checkbox-group {
 display: flex;
 align-items: flex-start;
 gap: 0.8rem;
 margin-top: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
 width: 20px;
 height: 20px;
 margin-top: 2px;
 cursor: pointer;
 accent-color: var(--primary-color);
}

.checkbox-group label {
 font-size: 0.9rem;
 color: var(--text-light);
 font-weight: normal;
 line-height: 1.5;
}

.checkbox-group a {
 color: var(--primary-color);
 text-decoration: underline;
}

.checkbox-group a:hover {
 color: var(--primary-dark);
}

.btn-submit-modern {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 0.8rem;
 padding: 1rem 2rem;
 background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
 color: var(--white);
 border: none;
 border-radius: 10px;
 font-size: 1.1rem;
 font-weight: 600;
 cursor: pointer;
 transition: all 0.3s ease;
 box-shadow: 0 5px 15px rgba(128, 0, 128, 0.3);
}

.btn-submit-modern:hover {
 transform: translateY(-3px);
 box-shadow: 0 8px 25px rgba(128, 0, 128, 0.4);
}

.btn-submit-modern:active {
 transform: translateY(-1px);
}

.btn-text {
 font-size: 1.05rem;
}

.btn-icon {
 font-size: 1.3rem;
}

.form-footer {
 text-align: center;
 color: var(--text-light);
 font-size: 0.85rem;
 margin-top: 1rem;
 padding-top: 1rem;
 border-top: 1px solid #e0e0e0;
}

/* Contact Info Side */
.contact-info-side {
 flex: 1;
}

.contact-info-header {
 margin-bottom: 2rem;
}

.contact-info-header h2 {
 color: var(--primary-color);
 font-size: 2rem;
 margin-bottom: 0.5rem;
}

.contact-info-header p {
 color: var(--text-light);
 font-size: 0.95rem;
}

.contact-info-side .contact-method {
 background: #f9f9f9;
 padding: 1.5rem;
 border-radius: 12px;
 margin-bottom: 1.5rem;
 border-left: 4px solid var(--primary-color);
 transition: all 0.3s ease;
}

.contact-info-side .contact-method:hover {
 background: var(--white);
 box-shadow: 0 5px 20px rgba(128, 0, 128, 0.15);
 transform: translateX(5px);
}

.contact-info-side .method-icon {
 font-size: 2rem;
 margin-right: 1rem;
 display: inline-block;
}

.contact-info-side .method-details h3 {
 font-size: 1.1rem;
 margin-bottom: 0.5rem;
}

.contact-info-side .contact-link {
 color: var(--primary-color);
 font-weight: 700;
 font-size: 1.1rem;
}

.working-hours {
 background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
 color: var(--white);
 padding: 1.5rem;
 border-radius: 12px;
 margin-bottom: 1.5rem;
}

.working-hours h3 {
 font-size: 1.3rem;
 margin-bottom: 1rem;
}

.working-hours ul {
 list-style: none;
 padding: 0;
}

.working-hours li {
 padding: 0.5rem 0;
 border-bottom: 1px solid rgba(255, 255, 255, 0.2);
 display: flex;
 justify-content: space-between;
}

.working-hours li:last-child {
 border-bottom: none;
}

.working-hours li span:first-child {
 font-weight: 600;
}

.social-connect {
 margin-bottom: 1.5rem;
}

.social-connect h3 {
 color: var(--primary-color);
 font-size: 1.2rem;
 margin-bottom: 1rem;
}

.social-icons-modern {
 display: flex;
 gap: 1rem;
}

.social-icon-modern {
 width: 50px;
 height: 50px;
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 50%;
 font-size: 1.8rem;
 text-decoration: none;
 transition: all 0.3s ease;
}

.social-icon-modern.facebook {
 background: #3b5998;
}

.social-icon-modern.instagram {
 background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-modern.twitter {
 background: #1da1f2;
}

.social-icon-modern.linkedin {
 background: #0077b5;
}

.social-icon-modern:hover {
 transform: translateY(-5px) scale(1.1);
 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.why-contact-us {
 background: #f9f9f9;
 padding: 1.5rem;
 border-radius: 12px;
}

.why-contact-us h3 {
 color: var(--primary-color);
 font-size: 1.2rem;
 margin-bottom: 1rem;
}

.benefits-list {
 list-style: none;
 padding: 0;
}

.benefits-list li {
 padding: 0.5rem 0;
 display: flex;
 align-items: center;
 gap: 0.8rem;
 color: var(--text-dark);
}

.check-icon {
 color: #4caf50;
 font-weight: bold;
 font-size: 1.2rem;
}

/* FAQ Section Styles */
.faq-section {
 background: linear-gradient(135deg, #f5f5f5 0%, #e8e0f0 100%);
 padding: 80px 0;
}

.faq-header {
 text-align: center;
 margin-bottom: 4rem;
}

.faq-header h2 {
 color: var(--white);
 font-size: 3rem;
 margin-bottom: 1rem;
 font-weight: 700;
 background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
 padding: 1rem 3rem;
 border-radius: 50px;
 display: inline-block;
 box-shadow: 0 10px 30px rgba(128, 0, 128, 0.3);
}

.faq-header p {
 color: var(--text-dark);
 font-size: 1.2rem;
 max-width: 700px;
 margin: 1rem auto 0;
 font-weight: 500;
}

.faq-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 2rem;
 margin-bottom: 4rem;
}

.faq-column {
 display: flex;
 flex-direction: column;
 gap: 1.5rem;
}

.faq-item {
 background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
 border-radius: 15px;
 padding: 0;
 box-shadow: 0 8px 25px rgba(128, 0, 128, 0.25);
 transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 position: relative;
 overflow: hidden;
}

.faq-item:hover {
 box-shadow: 0 12px 40px rgba(128, 0, 128, 0.35);
 transform: translateY(-5px);
}

.faq-item.active {
 box-shadow: 0 15px 50px rgba(128, 0, 128, 0.4);
}

.faq-question {
 display: flex;
 justify-content: space-between;
 align-items: center;
 cursor: pointer;
 user-select: none;
 gap: 1.5rem;
 padding: 1.8rem 2rem;
}

.faq-question h3 {
 color: var(--white);
 font-size: 1.15rem;
 font-weight: 600;
 margin: 0;
 line-height: 1.5;
 transition: all 0.3s ease;
 flex: 1;
}

.faq-item:hover .faq-question h3 {
 letter-spacing: 0.3px;
}

.faq-toggle {
 font-size: 2rem;
 color: var(--white);
 font-weight: 400;
 transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 background: rgba(255, 255, 255, 0.2);
 width: 40px;
 height: 40px;
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 50%;
 flex-shrink: 0;
 backdrop-filter: blur(10px);
}

.faq-item:hover .faq-toggle {
 background: rgba(255, 255, 255, 0.3);
 transform: scale(1.1);
}

.faq-item.active .faq-toggle {
 transform: rotate(45deg) scale(1.1);
 background: rgba(255, 255, 255, 0.4);
}

.faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
 opacity: 0;
 background: rgba(255, 255, 255, 0.95);
 margin: 0 2rem 0 2rem;
 border-radius: 10px;
}

.faq-item.active .faq-answer {
 max-height: 600px;
 padding: 1.5rem;
 margin-bottom: 1.5rem;
 opacity: 1;
}

.faq-answer p {
 color: var(--text-dark);
 line-height: 1.8;
 font-size: 1rem;
 margin: 0;
}

.faq-cta {
 text-align: center;
 padding: 3rem 2rem;
 background: linear-gradient(135deg, rgba(128, 0, 128, 0.05), rgba(186, 85, 211, 0.05));
 border-radius: 15px;
}

.faq-cta h3 {
 color: var(--primary-color);
 font-size: 2rem;
 margin-bottom: 0.5rem;
}

.faq-cta p {
 color: var(--text-light);
 font-size: 1.1rem;
 margin-bottom: 2rem;
}

.faq-cta-buttons {
 display: flex;
 gap: 1.5rem;
 justify-content: center;
 flex-wrap: wrap;
}

/* Responsive Styles for Contact and FAQ */
@media (max-width: 992px) {
 .contact-wrapper {
 flex-direction: column;
 gap: 2rem;
 }

 .contact-form-side,
 .contact-info-side {
 width: 100%;
 }

 .faq-grid {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 }
}

@media (max-width: 768px) {
 .contact-form-side,
 .contact-info-side {
 padding: 1.5rem;
 }

 .form-header h2,
 .contact-info-header h2 {
 font-size: 1.6rem;
 }

 .faq-header h2 {
 font-size: 2rem;
 }

 .faq-cta h3 {
 font-size: 1.5rem;
 }

 .faq-cta-buttons {
 flex-direction: column;
 align-items: center;
 }

 .faq-cta-buttons .btn {
 width: 100%;
 max-width: 300px;
 }
}

