/* arpitamalik.com - Simplified Modern Styles */
:root {
    --primary-red: #e53e3e;
    --red-gradient: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    --green-shade: #276641;
    --red-shade: #612525;
    --beige-bg: #f7fafc;
    --light-gray: #edf2f7;
    --purple-shade: #5D3FD3;
    --purple-shade-video: #FFFDD0;
    --content-section-color: #FFFFF0;
    --section-gray: #f8f9fa;
    --section-blue: #ebf8ff;
    --section-green: #f0fff4;
    --text-primary: #2d3748;
    --text-secondary: #000000;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: #2F2F2F;
}

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

/* Header Styles */
.header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: hidden;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Responsive Header */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Hero Section - Simplified */
.hero-section {
    height: 400px;
    background: var(--purple-shade);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: white;
    width: 100%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.search-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 1rem;
    display: inline-block;
    box-shadow: var(--shadow);
}

.city-search {
    background: white;
    border: none;
    border-radius: 40px;
    padding: 1rem 2rem;
    font-size: 1rem;
    color: var(--text-primary);
    min-width: 300px;
    outline: none;
}

@media (max-width: 768px) {
    .hero-section {
        height: 400px;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .city-search {
        min-width: 250px;
    }
}

/* Breadcrumb */
.breadcrumb {
    background: var(--beige-bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-red);
}

/* Video Section */
.video-section {
   background: #FFFDD0;
  padding: 1rem;
  margin: 10px;
  border-radius: 15px;
  border: 2px solid #00BFFF; /* deep sky blue */
  box-shadow: 
    0 0 5px #00BFFF,
    0 0 10px #00BFFF,
    0 0 5px #00BFFF,
    0 0 5px #00BFFF inset;
    
}

.video-content {
    text-align: center;
}

.video-content h2 {
 text-align: center;
    font-size: 1.8rem;
    font-family: 'Georgia', serif;
    margin-bottom: 1rem;
    color: black;   
    font-display: bold;
}

.video-before-text, .video-after-text {
    font-size: 1rem;
    font-family: 'Georgia', serif;
    color: var(--text-secondary);
    margin: 1rem 0;
    line-height: 1.6;
}

.video-wrapper {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
}

/* Models Section */
.models-section {
    background: transparent;
    padding: 3rem 0;
}

.models-section h2 {
    text-align: center;
    font-size: 1.8rem;
    font-family: 'Georgia', serif;
    margin-bottom: 1rem;
    color: white;
}

.models-before-text {
    text-align: center;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    color: white;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.model-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.model-card:hover {
    transform: translateY(-5px);
}

.model-image {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.model-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.model-image::after {
    content: "✓ VERIFIED";
    position: absolute;
    top: 10px;
    left: 10px;
    background: #10b981;
    color: white;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
}

.model-image::before {
    content: "★ FEATURED";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f59e0b;
    color: white;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
}

.model-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1rem 1.5rem 0.5rem 1.5rem;
    color: var(--text-primary);
}

.model-details {
    color: var(--text-secondary);
    margin: 0 1.5rem 1rem 1.5rem;
    line-height: 1.5;
}

.model-location {
    margin: 0 1.5rem 1.5rem 1.5rem;
}

.model-location a {
    color: var(--red-shade);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
}

.model-location a:hover {
    text-decoration: underline;
}

.model-buttons {
    display: flex;
    gap: 0;
    margin: 0 1.5rem 1.5rem 1.5rem;
}

.model-buttons .btn-call {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.model-buttons .btn-whatsapp {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-call, .btn-whatsapp {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}

.btn-call {
    background: var(--green-shade);
    color: white;
}

.btn-whatsapp {
    background: var(--red-shade);
    color: white;
}

.btn-call:hover, .btn-whatsapp:hover {
    opacity: 0.8;
}

/* Content Section */
.content-section {
    background: var(--content-section-color);
    padding: 3rem 0;
     padding: 1rem;
  margin: 10px;
  border-radius: 15px;
  border: 2px solid #00BFFF; /* deep sky blue */
  box-shadow: 
    0 0 5px #00BFFF,
    0 0 10px #00BFFF,
    0 0 5px #00BFFF,
    0 0 5px #00BFFF inset;
}

.content-section h2 {
    font-size: 1.8rem;
    font-family: 'Georgia', serif;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.content-section h3 {
    font-size: 1.5rem;
    font-family: 'Georgia', serif;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.content-section p {
    font-size: 1rem;
    font-family: 'Georgia', serif;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.content-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.content-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* FAQ Section */
.faq-section {
    background: var(--purple-shade);
    padding: 3rem 0;
    color: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 1.8rem;
    font-family: 'Georgia', serif;
    margin-bottom: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: transparent;
    color: white;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer.show {
    padding: 1rem 1.5rem;
    max-height: 200px;
}

/* Tags Section */
.tags-section {
    background: var(--content-section-color);
    padding: 3rem 0;
    margin: 10px;
    border-radius: 15px;
    border: 2px solid #00BFFF; /* deep sky blue */
    box-shadow: 
    0 0 5px #00BFFF,
    0 0 10px #00BFFF,
    0 0 5px #00BFFF,
    0 0 5px #00BFFF inset;
}

.tags-section h2 {
    text-align: center;
    font-size: 1.8rem;
    font-family: 'Georgia', serif;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tag-item {
    background: var(--purple-shade);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.tag-item:hover {
    opacity: 0.8;
}

/* Service Areas Section */
.service-areas-section {
    background: var(--section-green);
    padding: 3rem 0;
}

.service-areas-section h2 {
    text-align: center;
    font-size: 1.8rem;
    font-family: 'Georgia', serif;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

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

.service-area-button {
    background: var(--purple-shade);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: opacity 0.3s ease;
    display: block;
}

.service-area-button:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--red-gradient);
    color: white;
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin-bottom: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    opacity: 0.7;
}

/* Floating Buttons - Full Width Inline Layout */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.floating-btn {
    flex: 1;
    height: 60px;
    text-align: center;
    line-height: 60px;
    color: white;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
    text-decoration: none;
    border-radius: 0;
}

.floating-call {
    background: var(--green-shade);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.floating-whatsapp {
    background: var(--red-shade);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.floating-btn:hover {
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .content-table {
        font-size: 0.9rem;
    }
    
    .content-table td {
        padding: 0.5rem;
    }
    
    .tags-container {
        gap: 0.5rem;
    }
    
    .service-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}