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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem; /* 20px */
    width: 100%;
}

/* Header Styles */
.header {
    background-color: #000;
    padding: 0.9375rem 0; /* 15px */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 3.75rem; /* 60px */
    width: auto;
    max-width: 100%;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.875rem; /* 30px */
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem; /* 16px */
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

.main-nav a:hover,
.main-nav a.active {
    color: #0170B9;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    width: 1.5625rem; /* 25px */
    height: 0.1875rem; /* 3px */
    background-color: #fff;
    margin: 0.1875rem 0; /* 3px */
    transition: 0.3s;
    display: block;
}

/* Hero Section - Styles moved to hero-modern.css */

/* Hero content styles moved to hero-modern.css */

.cta-button {
    display: inline-block;
    background-color: #0170B9;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #3a3a3a;
}

/* Main Content */
.main-content {
    padding: 5rem 0; /* 80px */
    width: 100%;
}

.section {
    margin-bottom: 5rem; /* 80px */
    width: 100%;
}

.section h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3.125rem; /* 50px */
    color: #0170B9;
    line-height: 1.2;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr)); /* 352px */
    gap: 2rem; /* 32px */
    margin-bottom: 3.125rem; /* 50px */
    width: 100%;
    align-items: stretch;
}

.content-item {
    text-align: center;
    padding: 1.875rem; /* 30px */
    background: #f8f9fa;
    border-radius: 0.625rem; /* 10px */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.content-item:hover {
    transform: translateY(-0.3125rem); /* -5px */
}

.content-item img {
    max-width: 100%;
    height: auto;
    border-radius: 0.625rem; /* 10px */
    margin-bottom: 1.25rem; /* 20px */
    display: block;
}

.content-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.9375rem; /* 15px */
    color: #0170B9;
    line-height: 1.3;
}

.content-item p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Single Column Contact Layout */
.contact-info-single-column {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* 24px */
}

.contact-item {
    text-align: center;
    padding: 1.875rem; /* 30px */
    background: #f8f9fa;
    border-radius: 0.625rem; /* 10px */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.contact-item:hover {
    transform: translateY(-0.3125rem); /* -5px */
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.9375rem; /* 15px */
    color: #0170B9;
    line-height: 1.3;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Franchise Section Styles */
.franchise-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.franchise-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.franchise-intro p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.franchise-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.franchise-benefits h3,
.franchise-requirements h3 {
    color: #0170B9;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

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

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    color: #0170B9;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.franchise-requirements {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    height: fit-content;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.requirement-item:hover {
    background: #e9ecef;
}

.requirement-check {
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.requirement-item span:last-child {
    color: #555;
    font-size: 0.95rem;
}

.franchise-cta {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.franchise-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-button.primary {
    background: #0170B9;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #0170B9;
}

.cta-button.primary:hover {
    background: #015a9a;
    border-color: #015a9a;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #0170B9;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #0170B9;
}

.cta-button.secondary:hover {
    background: #0170B9;
    color: white;
    transform: translateY(-2px);
}

/* Franchise Support Section Styles */
.franchise-support-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.franchise-support-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.franchise-support-intro p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.support-item {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.support-item h3 {
    color: #0170B9;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

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

.franchise-support-cta {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.franchise-support-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Section Styles */
.pricing-section {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-intro p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.pricing-philosophy {
    margin-bottom: 3rem;
}

.pricing-philosophy h3 {
    color: #0170B9;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

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

.philosophy-item {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.philosophy-item h4 {
    color: #0170B9;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.philosophy-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.pricing-cta {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pricing-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Values Section Styles */
.values-section {
    background: linear-gradient(135deg, #f0fff4 0%, #e6ffed 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

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

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

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

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

/* Join Family Section Styles */
.join-family-section {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.join-family-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.join-family-intro p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.franchise-offers {
    margin-bottom: 3rem;
}

.franchise-offers h3 {
    color: #0170B9;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

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

.offer-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.offer-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.offer-item h4 {
    color: #0170B9;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.offer-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.join-family-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Story Section Styles */
.story-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.story-intro,
.story-journey,
.story-present {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.story-intro:hover,
.story-journey:hover,
.story-present:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.story-intro h3,
.story-journey h3,
.story-present h3 {
    color: #0170B9;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.story-intro p,
.story-journey p,
.story-present p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Mission Section Styles */
.mission-section {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe6f0 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

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

.mission-item {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.mission-item h3 {
    color: #0170B9;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

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

/* Home Page Styles */
.home-story-section {
    background: #000000;
    border-radius: 1rem;
    padding: 4rem 2rem;
    margin: 2rem 0;
    text-align: center;
}

.story-hero h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-poetry {
    margin-bottom: 3rem;
}

.poetry-line {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.8;
}

/* Marathi Content Styles */
.marathi-content {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.marathi-text {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: center;
}

/* Contact Numbers Styles */
.contact-numbers {
    margin: 3rem 0;
    text-align: center;
}

.contact-numbers h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.phone-numbers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.phone-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.phone-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    text-decoration: none;
    color: #ffffff;
}

.marathi-poem {
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Poetry section specific styles */
.poetry-section .marathi-poem {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.poetry-section .poetry-line {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    line-height: 1.6;
}

.poem-author {
    font-style: italic;
    margin-top: 1rem;
    color: #666;
    font-size: 1rem;
}

.story-logo {
    margin-top: 2rem;
}

.main-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* Home Features Section */
.home-features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: #0170B9;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Home About Section */
.home-about-section {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

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

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

.mission-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.highlight-text h3 {
    color: #0170B9;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.highlight-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.about-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.about-cta .cta-button {
    width: 100%;
    max-width: 250px;
    text-align: center;
}

/* Poetry Section */
.poetry-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 5rem 0; /* 80px */
    text-align: center;
    width: 100%;
}

.poetry-section h2 {
    color: #0170B9;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.poetry-content {
    max-width: 50rem; /* 800px */
    margin: 0 auto;
    width: 100%;
    padding: 0 1.25rem; /* 20px */
    box-sizing: border-box;
}

.poetry-content h2 {
    color: #000;
    margin-bottom: 2.5rem; /* 40px */
    line-height: 1.2;
}

.poetry-text {
    font-size: 1.2rem;
    line-height: 2;
    color: #000;
    font-weight: 500;
    margin-bottom: 1.875rem; /* 30px */
}

.poetry-text strong {
    display: block;
    margin-bottom: 0.625rem; /* 10px */
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 3rem 0 1rem;
    width: 100%;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
}

.footer-address p {
    color: #aaaaaa;
    font-size: 0.9rem;
    line-height: 1.5;
}


.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-info strong {
    color: #ffffff;
    font-weight: 600;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cccccc;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.social-link:hover {
    color: #0170B9;
    transform: translateX(5px);
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-right: 12px;
}

.social-icon i {
    font-size: 16px;
}

/* Facebook Icon */
.social-link:nth-child(1) .social-icon {
    background-color: #1877f2;
}

/* Instagram Icon */
.social-link:nth-child(2) .social-icon {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

/* Twitter Icon */
.social-link:nth-child(3) .social-icon {
    background-color: #1da1f2;
}

/* YouTube Icon */
.social-link:nth-child(4) .social-icon {
    background-color: #ff0000;
}

/* LinkedIn Icon */
.social-link:nth-child(5) .social-icon {
    background-color: #0077b5;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.social-name {
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333333;
    color: #aaaaaa;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    max-width: 37.5rem; /* 600px */
    margin: 0 auto;
    background: #f8f9fa;
    padding: 2.5rem; /* 40px */
    border-radius: 0.625rem; /* 10px */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 1.5625rem; /* 25px */
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem; /* 8px */
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem; /* 12px */
    border: 2px solid #ddd;
    border-radius: 0.3125rem; /* 5px */
    font-size: 1rem; /* 16px */
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

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

.form-group textarea {
    height: 7.5rem; /* 120px */
    resize: vertical;
    min-height: 7.5rem;
}

.submit-btn {
    background-color: #0170B9;
    color: white;
    padding: 0.9375rem 1.875rem; /* 15px 30px */
    border: none;
    border-radius: 0.3125rem; /* 5px */
    font-size: 1rem; /* 16px */
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.submit-btn:hover {
    background-color: #3a3a3a;
}

/* Mobile Menu Styles */
.main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.main-nav.active ul {
    flex-direction: column;
    gap: 15px;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Form Styles - moved to form-group above */

/* Branch Photos and Videos */
.branch-photos, .branch-videos {
    margin-top: 0.9375rem; /* 15px */
    padding-top: 0.9375rem; /* 15px */
    border-top: 1px solid #eee;
    width: 100%;
}

.branch-photos h4, .branch-videos h4 {
    font-size: 0.875rem; /* 14px */
    color: #666;
    margin-bottom: 0.625rem; /* 10px */
    line-height: 1.4;
}

.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3125rem; /* 5px */
    width: 100%;
}

.branch-photo {
    cursor: pointer;
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.branch-photo:hover {
    transform: scale(1.1);
}

.branch-videos video {
    border: 2px solid #ddd;
    transition: border-color 0.3s ease;
    max-width: 100%;
    height: auto;
}

.branch-videos video:hover {
    border-color: #0170B9;
}

/* Branch Listing Styles - Matching Branch Detail Page */
.branch-listing {
    background: #f8f9fa;
    border: none;
    border-radius: 0.625rem; /* 10px */
    padding: 1.875rem; /* 30px */
    margin-bottom: 1.875rem; /* 30px */
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    text-align: left !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.branch-listing:hover {
    transform: translateY(-0.3125rem); /* -5px */
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.branch-listing h3 {
    margin: 0 0 1.25rem 0; /* 0 0 20px 0 */
    padding-bottom: 0.75rem; /* 12px */
    border-bottom: 1px solid #eee;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.branch-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.3;
}

.branch-link:hover {
    color: #00a8ff;
    text-decoration: none;
}

/* Info sections like branch detail page */
.branch-listing .info-section {
    margin-bottom: 1.5625rem; /* 25px */
    padding-bottom: 1.25rem; /* 20px */
    border-bottom: 1px solid #eee;
    flex-grow: 0;
}

.branch-listing .info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.branch-listing .info-section h4 {
    color: var(--primary-color);
    margin-bottom: 0.625rem; /* 10px */
    font-size: 1.1rem;
    font-weight: 600;
}

.branch-listing p {
    margin: 0.5rem 0; /* 8px 0 */
    line-height: 1.6;
    color: #666;
    text-align: left;
}

.branch-listing p strong {
    color: #333;
    font-weight: 600;
    display: inline-block;
    min-width: 4rem; /* 64px */
    margin-right: 0.5rem; /* 8px */
}

.branch-listing .cta-button {
    margin-top: auto; /* Push to bottom */
    display: inline-block;
    padding: 0.9375rem 1.875rem; /* 15px 30px */
    font-size: 1rem;
    border-radius: 0.3125rem; /* 5px */
    text-decoration: none;
    transition: background-color 0.3s ease;
    background-color: #0170B9;
    color: white;
    font-weight: 600;
    text-align: center;
    align-self: flex-start;
}

.branch-listing .cta-button:hover {
    background-color: #3a3a3a;
    text-decoration: none;
}

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

.branch-listing .features-list li {
    padding: 0.3125rem 0; /* 5px 0 */
    padding-left: 1.25rem; /* 20px */
    position: relative;
    color: #666;
}

.branch-listing .features-list li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Franchise Section Styles */
.franchise-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem; /* 16px */
    padding: 3rem 2rem; /* 48px 32px */
    margin: 2rem 0; /* 32px 0 */
}

.franchise-hero {
    text-align: center;
    margin-bottom: 3rem; /* 48px */
}

.franchise-hero h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem; /* 16px */
    font-weight: 700;
}

.franchise-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1rem; /* 16px */
    font-weight: 600;
}

.franchise-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.franchise-benefits {
    margin-bottom: 3rem; /* 48px */
}

.franchise-benefits h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem; /* 32px */
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); /* 288px */
    gap: 1.5rem; /* 24px */
}

.benefit-card {
    background: white;
    padding: 2rem; /* 32px */
    border-radius: 0.75rem; /* 12px */
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-0.5rem); /* -8px */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem; /* 16px */
    display: block;
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem; /* 16px */
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.locations-section {
    margin-bottom: 3rem; /* 48px */
}

.locations-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem; /* 32px */
    font-weight: 600;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr)); /* 320px */
    gap: 1.5rem; /* 24px */
}

.location-card {
    background: white;
    padding: 2rem; /* 32px */
    border-radius: 0.75rem; /* 12px */
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.location-card:hover {
    transform: translateY(-0.25rem); /* -4px */
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.location-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem; /* 16px */
    display: block;
}

.location-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem; /* 16px */
    font-weight: 600;
}

.location-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.investment-section {
    background: white;
    padding: 2.5rem; /* 40px */
    border-radius: 0.75rem; /* 12px */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem; /* 48px */
    align-items: center;
}

.investment-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem; /* 16px */
    font-weight: 600;
}

.investment-content p {
    color: #666;
    margin-bottom: 1.5rem; /* 24px */
    line-height: 1.6;
}

.investment-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* 12px */
}

.investment-item {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* 12px */
    padding: 0.5rem 0; /* 8px 0 */
}

.investment-icon {
    font-size: 1.2rem;
    width: 1.5rem; /* 24px */
    text-align: center;
}

.investment-item span:last-child {
    color: #555;
    font-weight: 500;
}

.cta-section {
    text-align: center;
}

.franchise-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #0170B9, #00a8ff);
    color: white;
    padding: 1rem 2rem; /* 16px 32px */
    text-decoration: none;
    border-radius: 0.5rem; /* 8px */
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 112, 185, 0.3);
    margin-bottom: 1rem; /* 16px */
}

.franchise-cta-button:hover {
    background: linear-gradient(135deg, #00a8ff, #0170B9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 112, 185, 0.4);
    text-decoration: none;
}

.cta-note {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Page Title Section */
.page-title-section {
    text-align: center;
    padding: 3.75rem 0 2.5rem; /* 60px 0 40px */
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-bottom: 2.5rem; /* 40px */
    border-radius: 0.625rem; /* 10px */
    width: 100%;
}

.page-title-section h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 0.9375rem; /* 15px */
    font-weight: 700;
    line-height: 1.2;
}

.page-title-section p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem; /* 16px */
    }
    
    .content-grid {
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr)); /* 320px */
        gap: 1.5rem; /* 24px */
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .container {
        padding: 0 0.9375rem; /* 15px */
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* 24px */
        align-items: stretch;
    }
    
    .branch-listing {
        padding: 1.5rem; /* 24px */
        margin-bottom: 1rem; /* 16px */
    }
    
    .branch-listing h3 {
        margin: 0 0 1rem 0; /* 0 0 16px 0 */
        padding-bottom: 0.5rem; /* 8px */
    }
    
    .branch-listing p {
        margin: 0.5rem 0; /* 8px 0 */
    }
    
    .branch-listing .cta-button {
        margin-top: 1rem; /* 16px */
        padding: 0.625rem 1.25rem; /* 10px 20px */
        font-size: 0.9rem;
    }
    
    /* Franchise Section Responsive */
    .franchise-section {
        padding: 2rem 1rem; /* 32px 16px */
    }
    
    .franchise-hero h2 {
        font-size: 2rem;
    }
    
    .franchise-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem; /* 16px */
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1rem; /* 16px */
    }
    
    .investment-section {
        grid-template-columns: 1fr;
        gap: 2rem; /* 32px */
        padding: 2rem 1.5rem; /* 32px 24px */
    }
    
    .franchise-cta-button {
        padding: 0.875rem 1.5rem; /* 14px 24px */
        font-size: 1rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .social-link {
        flex: 0 0 auto;
        min-width: 120px;
    }
    
    .main-content {
        padding: 3rem 0; /* 48px */
    }
    
    .section {
        margin-bottom: 3rem; /* 48px */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.9375rem; /* 15px */
    }
    
    .main-content {
        padding: 2.5rem 0; /* 40px */
    }
    
    .section {
        margin-bottom: 2.5rem; /* 40px */
    }
    
    .contact-form {
        padding: 1.25rem; /* 20px */
    }
    
    .page-title-section {
        padding: 2.5rem 0 1.875rem; /* 40px 0 30px */
        margin-bottom: 1.875rem; /* 30px */
    }
    
    .content-item {
        padding: 1.25rem; /* 20px */
    }
    
    .contact-item {
        padding: 1.25rem; /* 20px */
    }
    
    .contact-info-single-column {
        gap: 1rem; /* 16px */
    }
    
    .franchise-section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .franchise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1.25rem;
    }
    
    .franchise-requirements {
        padding: 1.5rem;
    }
    
    .franchise-cta {
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .franchise-support-section,
    .pricing-section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .support-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-item,
    .philosophy-item {
        padding: 1.5rem;
    }
    
    .franchise-support-cta,
    .pricing-cta {
        padding: 1.5rem;
    }
    
    .values-section,
    .join-family-section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .values-grid,
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item,
    .offer-item {
        padding: 1.5rem;
    }
    
    .join-family-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .join-family-cta .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .story-section,
    .mission-section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .story-content {
        gap: 2rem;
    }
    
    .story-intro,
    .story-journey,
    .story-present {
        padding: 1.5rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-item {
        padding: 1.5rem;
    }
    
    .home-story-section,
    .home-features-section,
    .home-about-section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .story-hero h2 {
        font-size: 2rem;
    }
    
    .poetry-line {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-highlights {
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1.25rem;
    }
    
    .about-cta {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-cta .cta-button {
        max-width: 200px;
    }
    
    .poetry-section {
        padding: 3rem 0; /* 48px */
    }
    
    /* Contact Numbers Mobile */
    .phone-numbers {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .phone-link {
        padding: 0.875rem 1.25rem;
        font-size: 1.1rem;
    }
}
