@import url('https://fonts.googleapis.com/css2?family=Laila:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Sacramento&family=Cookie&display=swap');

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

body {
    font-family: 'Laila', 'Helvetica', Arial, sans-serif;
    font-size: 13px;
    line-height: 21px;
    font-weight: 400;
    color: #333;
    background-color: #f4f4f4;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.3rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
}

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

/* Navigation */
.navbar {
    background-color: #2c3e50;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.1rem;
    line-height: 1.15;
}

.logo a {
    text-decoration: none;
}

.logo-text-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.logo-text-brand:hover .logo-text-line {
    color: #f1c40f;
}

.logo-text-line {
    display: block;
    color: inherit;
    transition: color 0.3s;
}

.logo-text-phone {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: #f1c40f;
    letter-spacing: 0.04em;
}

.logo-text-phone:hover {
    color: #fff;
}

.logo-img {
    height: 52px;
    width: auto;
    max-width: 360px;
    object-fit: contain;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #e74c3c;
}

/* Dropdown Menu Styles */
.nav-menu li {
    position: relative;
}

.nav-menu li.has-dropdown > a::after {
    content: ' ▼';
    font-size: 0.7em;
    margin-left: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2c3e50;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    margin-top: 5px;
    border-radius: 5px;
}

.nav-menu li:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #34495e;
    color: #e74c3c;
}

/* Nested Dropdown */
.dropdown-menu li.has-dropdown {
    position: relative;
}

.dropdown-menu li.has-dropdown > a::after {
    content: ' ▶';
    float: right;
    font-size: 0.7em;
}

.nested-dropdown {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #34495e;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1001;
    list-style: none;
    padding: 10px 0;
    border-radius: 5px;
}

.dropdown-menu li.has-dropdown:hover .nested-dropdown {
    display: block;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Sections */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-section.alt {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-family: 'Calibri', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-content p {
    font-family: 'Laila', sans-serif;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: bold;
}

.btn:hover {
    background-color: #c0392b;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background-color: #fff;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Banner Gallery Section */
.banner-gallery-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.banner-gallery-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.banner-gallery-section .section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
}

.banner-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.banner-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    background-color: #fff;
}

.banner-gallery-image {
    width: 100%;
    height: 100%;
    max-height: 260px;
    object-fit: cover;
    display: block;
}

.welcome-label {
    font-family: 'Sacramento', cursive;
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 10px;
}

.welcome-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.welcome-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #34495e;
    margin-bottom: 30px;
}

.welcome-text {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.intro-text {
    font-family: 'Laila', sans-serif;
    font-size: 15px;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
    font-style: italic;
    line-height: 24px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-content p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    margin-bottom: 15px;
    text-align: justify;
}

/* Services Preview */
.services-preview {
    padding: 60px 0;
    background-color: #ecf0f1;
    text-align: center;
}

.services-preview {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.services-preview h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.services-preview h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #666;
    font-style: italic;
}

.services-preview p {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-preview a {
    color: #e74c3c;
    text-decoration: none;
}

.services-preview a:hover {
    text-decoration: underline;
}

/* Services Grid Section */
.services-grid-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.service-card-main {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-card-main h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card-main p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    margin-bottom: 15px;
    color: #555;
}

.service-quotes {
    text-align: center;
    padding: 40px 0;
}

.service-quotes h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 20px;
}

.service-quotes h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 0;
}

.service-quotes h6 {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: #888;
    margin-top: 20px;
}

.service-quotes hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px auto;
    max-width: 200px;
}

/* About Company Section */
.about-company-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-company-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-company-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.about-company-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #34495e;
}

.about-company-content p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    margin-bottom: 20px;
    text-align: justify;
    color: #555;
}

.about-company-content a {
    color: #e74c3c;
    text-decoration: none;
}

.about-company-content a:hover {
    text-decoration: underline;
}

.quote-text {
    font-family: 'Laila', sans-serif;
    font-size: 15px;
    font-style: italic;
    color: #666;
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #e74c3c;
    margin-top: 30px;
}

/* Vision Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-mission-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.vision-mission-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #34495e;
}

.vision-mission-item p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    margin-bottom: 15px;
    color: #555;
}

.vision-mission-item a {
    color: #e74c3c;
    text-decoration: none;
}

.vision-mission-item a:hover {
    text-decoration: underline;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.why-choose-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.why-choose-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #2c3e50;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-item {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.why-choose-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-choose-item h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.why-choose-item p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    color: #555;
}

#mumbai-areas-we-serve {
    background-color: #f4f8fb;
}

/* Mumbai local SEO strip (repeated site-wide for neighbourhood relevance) */
.mumbai-local-seo {
    padding: 28px 0 18px;
    background: #f4f8fb;
    border-top: 1px solid #dce7ef;
}

.mumbai-local-seo .container p {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #444;
    margin: 0 0 10px;
}

.mumbai-local-seo-cta {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    text-align: center;
    margin: 0;
}

.mumbai-local-seo a {
    color: #2980b9;
    font-weight: 600;
}

.carnival-stall-section {
    padding: 40px 0 20px;
}

.carnival-stall-section:nth-of-type(even) {
    background-color: #f9fbfc;
}

body.carnival-theme .carnival-stall-section:nth-of-type(even) {
    background-color: transparent;
}

.carnival-section-intro {
    font-family: 'Laila', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    max-width: 900px;
    margin: 0 auto 24px;
    text-align: center;
}

.carnival-detail-page-cta {
    text-align: center;
    margin: 0 0 16px;
}

.carnival-stall-crosslinks a {
    font-weight: 600;
}

/* ——— Carnival theme: hub, category & item pages ——— */
body.carnival-theme {
    background: linear-gradient(180deg, #eef4f8 0%, #f9fbfc 22%, #ffffff 55%);
    background-attachment: fixed;
}

body.carnival-theme .page-header.carnival-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 42%, #1a6fa0 100%);
    color: #fff;
    padding: 3.25rem 0 3rem;
    position: relative;
    overflow: hidden;
}

body.carnival-theme .page-header.carnival-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 55% at 70% 0%, rgba(255, 255, 255, 0.12), transparent 55%),
                radial-gradient(ellipse 50% 40% at 10% 100%, rgba(52, 152, 219, 0.2), transparent 50%);
    pointer-events: none;
}

body.carnival-theme .page-header.carnival-hero .container {
    position: relative;
    z-index: 1;
}

.carnival-hero-kicker {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 0.75rem;
}

body.carnival-theme .page-header.carnival-hero h1 {
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
    margin-bottom: 1rem;
}

body.carnival-theme .page-header.carnival-hero p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

body.carnival-theme .page-header.carnival-hero a {
    color: #a5d8ff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.carnival-theme .page-header.carnival-hero a:hover {
    color: #fff;
}

.carnival-breadcrumb {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid #dce7ef;
    padding: 0.65rem 0;
}

.carnival-breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    color: #555;
}

.carnival-breadcrumb-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.carnival-breadcrumb-list li:not([aria-current])::after {
    content: "/";
    color: #bdc3c7;
    font-weight: 400;
    margin-left: 0.5rem;
}

.carnival-breadcrumb-list li:last-child::after {
    content: none;
}

.carnival-breadcrumb-list a {
    color: #2980b9;
    font-weight: 600;
    text-decoration: none;
}

.carnival-breadcrumb-list a:hover {
    text-decoration: underline;
}

.carnival-breadcrumb-list [aria-current="page"] {
    color: #2c3e50;
    font-weight: 700;
}

.carnival-stall-section.carnival-stall-card {
    padding: 2.75rem 0 2.5rem;
}

.carnival-stall-section.carnival-stall-card .container {
    max-width: 1040px;
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem 2.25rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    border: 1px solid rgba(220, 231, 239, 0.95);
    position: relative;
}

.carnival-stall-section.carnival-stall-card .container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 4px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #9b59b6);
    opacity: 0.9;
}

.carnival-stall-section.carnival-stall-card h2 {
    margin-top: 0.35rem;
}

body.carnival-theme .mumbai-local-seo {
    background: linear-gradient(180deg, #f0f6fb 0%, #e8f0f7 100%);
    border-top-color: #c5d9e8;
}

.carnival-item-article {
    padding: 2.5rem 0 2rem;
    background: #fff;
}

.carnival-item-article h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
}

.carnival-item-lead {
    font-family: 'Laila', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    max-width: 720px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.carnival-item-highlights {
    max-width: 640px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    font-family: 'Laila', sans-serif;
    font-size: 15px;
    color: #34495e;
    line-height: 1.65;
}

.carnival-item-highlights li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.75rem;
    border-bottom: 1px solid #ecf0f1;
}

.carnival-item-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.carnival-item-next .games-intro-content {
    text-align: center;
}

ul.carnival-stall-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 960px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px 14px;
}

ul.carnival-stall-list li,
ul.carnival-stall-list .carnival-stall-list-item {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.carnival-stall-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 3.25rem;
    padding: 10px 14px;
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a2f45;
    text-decoration: none;
    background: linear-gradient(180deg, #ffffff 0%, #f3f6f9 100%);
    border-radius: 10px;
    border: 1px solid #dce4ec;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.carnival-stall-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(41, 128, 185, 0.18);
    border-color: #3498db;
    color: #2980b9;
}

.carnival-stall-link:focus-visible {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

.carnival-stall-link span {
    display: block;
    line-height: 1.35;
}

ul.carnival-stall-list.carnival-stall-crosslinks > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: 8px 12px;
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1a2f45;
    text-decoration: none;
    background: linear-gradient(180deg, #fff 0%, #eef3f8 100%);
    border-radius: 10px;
    border: 1px solid #dce4ec;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

ul.carnival-stall-list.carnival-stall-crosslinks > li > a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(41, 128, 185, 0.15);
    border-color: #3498db;
    color: #2980b9;
}

@media (max-width: 600px) {
    body.carnival-theme .page-header.carnival-hero {
        padding: 2.25rem 0 2rem;
    }

    body.carnival-theme .page-header.carnival-hero h1 {
        font-size: 1.65rem;
    }

    .carnival-stall-section.carnival-stall-card .container {
        padding: 1.5rem 1rem 1.75rem;
        border-radius: 12px;
    }

    ul.carnival-stall-list {
        grid-template-columns: 1fr;
    }
}

.states-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.subtitle {
    font-family: 'Laila', sans-serif;
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.states-section h3.mumbai-region-heading,
.states-section h3.gujarat-region-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 2.25rem 0 0.75rem;
    padding-bottom: 6px;
    border-bottom: 2px solid #3498db;
}

.states-section h3.mumbai-region-heading:first-of-type,
.states-section h3.gujarat-region-heading:first-of-type {
    margin-top: 0;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.states-section .mumbai-region-grid,
.states-section .gujarat-region-grid {
    margin-top: 12px;
}

.state-item {
    background-color: #3498db;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    transition: transform 0.3s, background-color 0.3s;
}

.state-item:hover {
    transform: translateY(-5px);
    background-color: #2980b9;
}

/* Related Websites */
.related-websites {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.related-websites h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.websites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.website-link {
    display: block;
    padding: 20px;
    background-color: #fff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #bdc3c7;
    font-weight: 500;
}

.website-link:hover {
    background-color: #3498db;
    color: #fff;
    border-color: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-header p {
    font-family: 'Laila', sans-serif;
    font-size: 15px;
    line-height: 24px;
}

/* About Page */
.about-page-content {
    padding: 60px 0;
    background-color: #fff;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    text-align: center;
    color: #555;
    font-style: italic;
}

.about-details {
    max-width: 900px;
    margin: 0 auto;
}

.about-details h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-details h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.about-details p {
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
}

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

.features-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

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

.coverage-section {
    margin-top: 50px;
    padding: 30px;
    background-color: #ecf0f1;
    border-radius: 5px;
}

.coverage-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.states-list p {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Services Page */
.services-section {
    padding: 60px 0;
    background-color: #fff;
}

.services-section.alt {
    background-color: #ecf0f1;
}

.services-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.service-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.read-more {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: #c0392b;
}

/* Our Work Page */
.work-section {
    padding: 60px 0;
    background-color: #fff;
}

.work-intro {
    text-align: center;
    margin-bottom: 50px;
}

.work-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.work-intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

.work-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.work-category {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.work-category h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.work-category p {
    line-height: 1.8;
    color: #555;
}

.coverage-highlights {
    margin-top: 50px;
    padding: 40px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.coverage-highlights h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

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

.coverage-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 5px;
}

.coverage-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #3498db;
}

.coverage-item p {
    line-height: 1.8;
    color: #555;
}

/* Testimonials Page */
.testimonials-section {
    padding: 60px 0;
    background-color: #fff;
}

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

.testimonial-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #e74c3c;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.testimonial-author h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
    background-color: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-details {
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #34495e;
}

.contact-item p {
    line-height: 1.8;
    color: #555;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
}

.contact-item a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.service-areas {
    background-color: #ecf0f1;
    padding: 25px;
    border-radius: 5px;
}

.service-areas h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.areas-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.areas-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: #e74c3c;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #e74c3c;
}

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

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

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

/* Booking Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover,
.close:focus {
    color: #000;
}

.booking-form {
    margin-top: 20px;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.booking-form select[multiple] {
    height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.btn-booking {
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-booking:hover {
    background-color: #c0392b;
}

/* Main Services Section */
.main-services {
    padding: 80px 0;
    background-color: #fff;
}

.main-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.main-services .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

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

.main-service-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.main-service-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.main-service-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.main-service-card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.main-service-card:nth-child(5) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.main-service-card:nth-child(6) {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.main-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.main-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.main-service-card p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.main-service-card .btn {
    background-color: rgba(255,255,255,0.2);
    border: 2px solid #fff;
}

.main-service-card .btn:hover {
    background-color: #fff;
    color: #667eea;
}

/* Statistics Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.stat-item p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* Corporate Section */
.corporate-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.corporate-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.corporate-section .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.corporate-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.corporate-service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.corporate-service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.corporate-service-item p {
    line-height: 1.8;
    color: #555;
}

/* Service Categories */
.service-categories {
    padding: 80px 0;
    background-color: #fff;
}

.service-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.category-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.category-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.category-item p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.btn-small {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.btn-small:hover {
    background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2c3e50;
        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;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .states-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

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

    .websites-grid {
        grid-template-columns: 1fr;
    }

    .main-services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .corporate-services {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }

    .services-grid-main {
        grid-template-columns: 1fr;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Venue Section */
.venue-section {
    padding: 60px 0;
    background-color: #fff;
}

.venue-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.venue-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.venue-category-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    transition: transform 0.3s, box-shadow 0.3s;
}

.venue-category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.venue-category-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.venue-category-item p {
    line-height: 1.8;
    color: #555;
}

/* Cities Section */
.cities-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.cities-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.city-item {
    background-color: #3498db;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
}

.city-item:hover {
    transform: translateY(-5px);
    background-color: #2980b9;
}

/* Venue Info Section */
.venue-info-section {
    padding: 60px 0;
    background-color: #fff;
}

.venue-info-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.info-item {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.info-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-item p {
    color: #555;
    line-height: 1.8;
}

/* Equipment Section */
.equipment-section {
    padding: 60px 0;
    background-color: #fff;
}

.equipment-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.equipment-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.equipment-category-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    transition: transform 0.3s, box-shadow 0.3s;
}

.equipment-category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.equipment-category-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.equipment-category-item p {
    line-height: 1.8;
    color: #555;
}

/* Equipment Details Section */
.equipment-details-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.equipment-details-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.equipment-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.equipment-detail-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.equipment-detail-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.equipment-detail-item p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.equipment-detail-item ul {
    list-style: none;
    padding-left: 0;
}

.equipment-detail-item ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.equipment-detail-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-section .btn {
    background-color: #fff;
    color: #667eea;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.cta-section .btn:hover {
    background-color: #f0f0f0;
}

/* Villa Booking Page Styles */
.villa-intro-section {
    padding: 60px 0;
    background-color: #fff;
}

.villa-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.villa-intro-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.villa-intro-content p {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
    text-align: justify;
    color: #555;
}

/* Villa Types Section */
.villa-types-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.villa-types-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.villa-card {
    background-color: #fff;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.villa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.villa-card-content {
    padding: 40px;
}

.villa-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e74c3c;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 10px;
}

.villa-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2c3e50;
}

.villa-info > p {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
    color: #555;
}

.villa-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.villa-features li {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 24px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.villa-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.villa-usage {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
}

.villa-usage h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.villa-usage ul {
    list-style: none;
    padding-left: 0;
}

.villa-usage ul li {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 24px;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.villa-usage ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
    font-weight: bold;
}

.villa-location {
    background-color: #ecf0f1;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.villa-location p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    color: #555;
    margin: 0;
}

.villa-location strong {
    color: #2c3e50;
}

/* Villa Amenities Section */
.villa-amenities-section {
    padding: 60px 0;
    background-color: #fff;
}

.villa-amenities-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.amenity-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #e74c3c;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.amenity-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.amenity-item p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    color: #555;
    margin: 0;
}

/* Booking Info Section */
.booking-info-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.booking-info-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #2c3e50;
}

.booking-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.booking-info-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.booking-info-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

.booking-info-item ul {
    list-style: none;
    padding-left: 0;
}

.booking-info-item ul li {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 24px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.booking-info-item ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* Responsive Styles for Villa Page */
@media (max-width: 768px) {
    .villa-card-content {
        padding: 25px;
    }

    .villa-card h3 {
        font-size: 1.5rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .booking-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Wooden Games Page Styles */
.games-intro-section {
    padding: 60px 0;
    background-color: #fff;
}

.games-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.games-intro-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.games-intro-content > p {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
    text-align: justify;
    color: #555;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.benefits-list li {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 24px;
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    border-bottom: 1px solid #ecf0f1;
}

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

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
}

.benefits-list li strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Games Section */
.games-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.games-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.game-card {
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.game-card-content {
    padding: 35px;
}

.game-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e74c3c;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 10px;
}

/* Game Media Section - Images and Videos */
.game-media-section {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.game-image-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f8f9fa;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.game-video-container {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: #000;
}

.game-video-container iframe.game-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.game-video-container iframe.game-video[style*="display:none"] {
    display: none !important;
}

/* Show video when it has a src */
.game-video-container iframe.game-video[src]:not([src=""]) {
    display: block !important;
}

.game-info p {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.game-features {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    border-left: 4px solid #3498db;
}

.game-features h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.game-features ul li {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 24px;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.game-features ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
    font-weight: bold;
}

.game-specs {
    background-color: #fff3cd;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    border-left: 4px solid #ffc107;
}

.game-specs h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.game-specs ul {
    list-style: none;
    padding-left: 0;
}

.game-specs ul li {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 24px;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.game-specs ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

.game-specs ul li strong {
    color: #2c3e50;
}

.game-note {
    background-color: #e7f3ff;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    border-left: 4px solid #3498db;
}

.game-note p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    color: #555;
    margin: 0;
}

.game-note p strong {
    color: #2c3e50;
}

/* Games Packages Section */
.games-packages-section {
    padding: 60px 0;
    background-color: #fff;
}

.games-packages-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.package-section {
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.package-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #e74c3c;
    text-align: center;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 15px;
}

.package-section > p {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.package-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.package-game-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #3498db;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.package-game-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.package-game-item p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 20px;
    color: #555;
    margin: 0;
}

/* Additional Games Section */
.additional-games-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.additional-games-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.additional-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.additional-game-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #e74c3c;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.additional-game-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.additional-game-item p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    color: #555;
    margin: 0;
}

/* Setup Tips Section */
.setup-tips-section {
    padding: 60px 0;
    background-color: #fff;
}

.setup-tips-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #2c3e50;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.tip-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.tip-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.tip-item p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    color: #555;
    margin: 0;
}

/* Rental Info Section */
.rental-info-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.rental-info-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #2c3e50;
}

.rental-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.rental-info-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.rental-info-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.rental-info-item p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    color: #555;
    margin: 0;
}

/* Hire or Buy Section */
.hire-buy-section {
    padding: 60px 0;
    background-color: #fff;
}

.hire-buy-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2c3e50;
}

.hire-buy-content {
    max-width: 900px;
    margin: 0 auto;
}

.hire-buy-content p {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
    text-align: justify;
    color: #555;
}

.hire-buy-content p strong {
    color: #e74c3c;
    font-weight: 600;
}

/* Venue Requirements Section */
.venue-requirements-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.venue-requirements-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2c3e50;
}

.venue-requirements-content {
    max-width: 1000px;
    margin: 0 auto;
}

.venue-requirements-content > p {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 30px;
    text-align: center;
    color: #555;
}

.venue-requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.venue-req-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.venue-req-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.venue-req-item p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    color: #555;
    margin: 0;
}

/* Responsive Styles for Games Page */
@media (max-width: 768px) {
    .game-card-content {
        padding: 25px;
    }

    .game-card h3 {
        font-size: 1.5rem;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .rental-info-grid {
        grid-template-columns: 1fr;
    }

    .package-games-grid {
        grid-template-columns: 1fr;
    }

    .additional-games-grid {
        grid-template-columns: 1fr;
    }

    .package-section {
        padding: 25px;
    }

    .venue-requirements-grid {
        grid-template-columns: 1fr;
    }
}

/* Wooden Games Sale Page Styles */
.sale-intro-section {
    padding: 60px 0;
    background-color: #fff;
}

.sale-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.sale-intro-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.sale-intro-content p {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
    text-align: justify;
    color: #555;
}

/* Why Buy Section */
.why-buy-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.why-buy-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #2c3e50;
}

.why-buy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-buy-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #e74c3c;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-buy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.why-buy-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.why-buy-item p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    color: #555;
    margin: 0;
}

/* Games Sale Section */
.games-sale-section {
    padding: 60px 0;
    background-color: #fff;
}

.games-sale-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.sale-game-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sale-game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.sale-game-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #e74c3c;
}

.game-description {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
    color: #555;
}

.game-specs-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.game-specs-list li {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 24px;
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.game-specs-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.game-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #e74c3c;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #ddd;
}

/* Delivery Section */
.delivery-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.delivery-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.delivery-content {
    max-width: 900px;
    margin: 0 auto;
}

.delivery-content p {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
    text-align: justify;
    color: #555;
}

.delivery-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 20px;
    color: #2c3e50;
}

.delivery-options {
    list-style: none;
    padding-left: 0;
}

.delivery-options li {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 24px;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.delivery-options li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
}

.delivery-options li strong {
    color: #2c3e50;
}

/* States Coverage Section */
.states-coverage-section {
    padding: 60px 0;
    background-color: #fff;
}

.states-coverage-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.states-coverage-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #e74c3c;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

.states-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.state-coverage-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border-left: 3px solid #3498db;
}

.state-coverage-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.state-coverage-item p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 20px;
    color: #555;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.pricing-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2c3e50;
}

.pricing-content {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-content > p {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.pricing-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-package-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-top: 4px solid #e74c3c;
}

.pricing-package-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.pricing-package-item p {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
    color: #555;
}

.pricing-package-item ul {
    list-style: none;
    padding-left: 0;
}

.pricing-package-item ul li {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 24px;
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.pricing-package-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Customization Section */
.customization-section {
    padding: 60px 0;
    background-color: #fff;
}

.customization-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2c3e50;
}

.customization-content {
    max-width: 900px;
    margin: 0 auto;
}

.customization-content > p {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.customization-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.custom-option-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #3498db;
}

.custom-option-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.custom-option-item p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    color: #555;
    margin: 0;
}

/* Ordering Section */
.ordering-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.ordering-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #2c3e50;
}

.ordering-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.ordering-step {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.ordering-step h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.ordering-step p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    color: #555;
    margin: 0;
}

/* Payment Section */
.payment-section {
    padding: 60px 0;
    background-color: #fff;
}

.payment-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #2c3e50;
}

.payment-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.payment-option-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #27ae60;
}

.payment-option-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.payment-option-item p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    color: #555;
    margin: 0;
}

/* Warranty Section */
.warranty-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.warranty-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2c3e50;
}

.warranty-content {
    max-width: 900px;
    margin: 0 auto;
}

.warranty-content > p {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.warranty-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.warranty-feature-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #e74c3c;
}

.warranty-feature-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.warranty-feature-item p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    color: #555;
    margin: 0;
}

/* Responsive Styles for Sale Page */
@media (max-width: 768px) {
    .sale-games-grid {
        grid-template-columns: 1fr;
    }

    .states-list-grid {
        grid-template-columns: 1fr;
    }

    .pricing-packages {
        grid-template-columns: 1fr;
    }

    .ordering-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text-brand {
        font-size: 0.72rem;
    }

    .logo-text-phone {
        font-size: 0.68rem;
    }

    .logo-img {
        height: 40px;
        max-width: 200px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .states-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Wooden Games Menu Gallery Styles */
.games-gallery-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.games-gallery-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.game-gallery-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.game-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.game-gallery-item:hover .gallery-game-image {
    transform: scale(1.05);
}

.game-gallery-info {
    padding: 25px;
}

.game-gallery-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.game-gallery-info p {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 21px;
    color: #555;
    margin-bottom: 15px;
}

/* Games Categories Section */
.games-categories-section {
    padding: 60px 0;
    background-color: #fff;
}

.games-categories-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.category-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.category-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.category-card p {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
    color: #555;
}

.category-card ul {
    list-style: none;
    padding-left: 0;
}

.category-card ul li {
    font-family: 'Laila', sans-serif;
    font-size: 13px;
    line-height: 24px;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.category-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: bold;
}

/* SEO Content Section */
.seo-content-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.seo-content-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #2c3e50;
}

.seo-content-block {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.seo-content-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e74c3c;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

.seo-content-block p {
    font-family: 'Laila', sans-serif;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px;
    text-align: justify;
    color: #555;
}

.seo-content-block p strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Responsive Styles for Gallery */
@media (max-width: 768px) {
    .games-gallery-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .game-image-wrapper {
        height: 250px;
    }

    .seo-content-block {
        padding: 25px;
    }
}
.game-detail-media { text-align: center; margin-bottom: 1.5rem; }

.game-detail-image { width: 100%; max-width: 420px; border-radius: 10px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); display: block; margin: 0 auto; }


/* SEO Content Section Styles */
.seo-content-section {
    padding: 60px 0;
    background-color: #fff;
}

.seo-content-block {
    margin-bottom: 40px;
}

.seo-content-block h2 {
    font-family: 'Calibri', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.seo-content-block h3 {
    font-family: 'Calibri', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #e74c3c;
    margin-top: 30px;
    margin-bottom: 15px;
}

.seo-content-block p {
    font-family: 'Calibri', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

@media (max-width: 768px) {
    .seo-content-block h2 {
        font-size: 1.8rem;
    }
    
    .seo-content-block h3 {
        font-size: 1.4rem;
    }
    
    .seo-content-block p {
        font-size: 14px;
    }
}

/* YouTube Videos Section Styles */
.youtube-videos-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.youtube-videos-section h2 {
    font-family: 'Calibri', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.youtube-videos-section .subtitle {
    font-family: 'Calibri', sans-serif;
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

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

.video-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.video-item h3 {
    font-family: 'Calibri', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 20px 20px 10px;
    margin: 0;
    color: #2c3e50;
}

.video-category {
    font-family: 'Calibri', sans-serif;
    font-size: 0.9rem;
    color: #666;
    padding: 0 20px;
    margin: 0 0 15px;
    font-style: italic;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    font-family: 'Calibri', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    padding: 15px 20px 20px;
    margin: 0;
}

.youtube-channel-link {
    text-align: center;
    margin-top: 40px;
}

.youtube-channel-link .btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Calibri', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.youtube-channel-link .btn:hover {
    background-color: #c0392b;
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .youtube-videos-section h2 {
        font-size: 2rem;
    }
    
    .video-item h3 {
        font-size: 1.1rem;
    }
}
