/* ===========================
   CSS RESET & BASE STYLES
=========================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4782f;
    --secondary-color: #c9302c;
    --golden-color: #d4af37;
    --dark-color: #2c2c2c;
    --light-color: #f8f9fa;
    --off-white: #fafafa;
    --text-color: #333;
    --text-light: #666;
    --border-radius: 10px;
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 10px 30px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    min-height: 100vh;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1.5;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(212, 120, 47, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 120, 47, 0.4);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--off-white);
    color: var(--secondary-color);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn i {
    font-size: 0.9em;
}

/* ===========================
   TOP BAR
=========================== */
.top-bar {
    background: var(--dark-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
}

.top-bar a:hover {
    color: var(--golden-color);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 20px;
}

.contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ===========================
   NAVIGATION
=========================== */
.navbar {
    background: white;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    height: 50px;
    width: auto;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-menu a {
    padding: 10px 18px;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    border-radius: 5px;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--primary-color);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 60%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-toggle {
    display: none;
    background: none;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.navbar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}
/* =========================================
   BRAND NAME STYLING (Balaji Digital)
   ========================================= */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0; /* Brand dabega nahi */
    text-decoration: none;
    margin-right: 20px;
}

.navbar-brand .logo {
    height: 45px;
    width: auto;
}

/* Text Wrapper */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* Main Title: "Balaji Digital Graphics" */
.brand-main {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50; /* Dark color */
    letter-spacing: -0.5px;
}

/* Sub Title: "& Advertising Pvt. Ltd." */
.brand-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #7f8c8d; /* Lighter grey */
    margin-top: 2px;
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */

/* Tablet View */
@media (max-width: 992px) {
    .brand-main {
        font-size: 16px;
    }
    .brand-sub {
        font-size: 10px;
    }
    .navbar-brand .logo {
        height: 40px;
    }
}

/* Mobile View (Important) */
@media (max-width: 768px) {
    .navbar-brand {
        gap: 8px;
        max-width: 60%; /* Mobile mein zyada space na le */
    }
    
    .brand-main {
        font-size: 14px;
        white-space: nowrap; /* Line tootne se roke */
    }
    
    /* Mobile par Pvt Ltd hide karne ke liye (Optional) */
    .brand-sub {
        display: none;
    }
    
    .navbar-brand .logo {
        height: 35px;
    }
}
/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
    color: white;
}

/* ===========================
   HERO SECTION
=========================== */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #fff5e6 100%);
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,120,47,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image-wrapper {
    flex: 1;
    text-align: center;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===========================
   SECTION STYLES
=========================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(212, 120, 47, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   STATS SECTION
=========================== */
.stats-section {
    padding: 60px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* ===========================
   SERVICES SECTION
=========================== */
.services-section {
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Detailed Service Card */
.service-card-detailed {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-image-wrapper {
    height: 220px;
    overflow: hidden;
}

.service-image-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-detailed:hover .service-image-full {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-small {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-features {
    margin: 15px 0;
}

.service-features ul li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.service-features ul li i {
    color: var(--primary-color);
}

.service-price-tag {
    background: var(--light-color);
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
    margin: auto 0 15px;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

/* ===========================
   WHY CHOOSE US
=========================== */
.why-choose-section {
    background: white;
}

.why-choose-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.why-choose-image {
    flex: 1;
}

.why-choose-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    width: 100%;
}

.why-choose-content {
    flex: 1;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ===========================
   GALLERY SECTION
=========================== */
.gallery-section {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-price {
    color: var(--golden-color);
    font-weight: 600;
}

/* ===========================
   FLIPBOOK GALLERY
=========================== */
.flipbook-section {
    background: var(--off-white);
}

.flipbook-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

#page-info {
    font-weight: 500;
    font-size: 1rem;
}

.flipbook-container {
    max-width: 900px;
    margin: 0 auto;
}

.flipbook {
    width: 100%;
    height: 550px;
    background: white;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
    border-radius: var(--border-radius);
    margin: 0 auto;
}

.flipbook-page {
    background: white;
    padding: 20px;
}

.flipbook-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.flipbook-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 15px;
}

.flipbook-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flipbook-info {
    text-align: center;
    padding: 10px 0;
}

.category-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.flipbook-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.flipbook-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flipbook-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Category Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 220px;
    cursor: pointer;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
}

.category-overlay h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.category-overlay p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact-section {
    background: var(--off-white);
}

.contact-row {
    display: flex;
    gap: 40px;
}

.contact-info-wrapper {
    flex: 0 0 350px;
}

.contact-form-wrapper {
    flex: 1;
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-info-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.contact-info-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 500;
    word-break: break-word;
}

.contact-info-card a:hover {
    color: var(--secondary-color);
}

.contact-info-card .text-muted {
    font-size: 0.85rem;
    color: var(--text-light) !important;
    margin-top: 5px;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212, 120, 47, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    padding: 0;
    margin-top: 50px;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content {
    flex: 1;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.15rem;
    opacity: 0.9;
    margin: 0;
}

/* ===========================
   PROCESS SECTION
=========================== */
.process-section {
    background: var(--off-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    background: white;
    border-radius: var(--border-radius);
    padding: 35px 25px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    margin-top: 20px;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 15px 0 20px;
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ===========================
   PAGE HEADER
=========================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0 70px;
    text-align: center;
    color: white;
}

.page-header h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item a {
    color: white;
}

.breadcrumb-item a:hover {
    color: var(--golden-color);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin-right: 10px;
    color: rgba(255,255,255,0.5);
}

/* ===========================
   ABOUT PAGE
=========================== */
.about-section {
    background: white;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
}

.about-image-wrapper img {
    border-radius: 15px;
    width: 100%;
    box-shadow: var(--shadow-hover);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 120, 47, 0.4);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    margin-top: 5px;
}

.about-content {
    flex: 1;
}

.about-content .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.about-feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===========================
   MISSION VISION SECTION
=========================== */
.mission-vision-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff5e6 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-card {
    background: white;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mv-card.mission {
    border-top: 5px solid var(--primary-color);
}

.mv-card.vision {
    border-top: 5px solid var(--secondary-color);
}

.mv-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.mv-card.mission .mv-icon {
    background: linear-gradient(135deg, var(--primary-color), #e69a5a);
    color: white;
}

.mv-card.vision .mv-icon {
    background: linear-gradient(135deg, var(--secondary-color), #e05a5a);
    color: white;
}

.mv-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.mv-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.mv-list li {
    padding: 10px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px dashed #eee;
}

.mv-list li:last-child {
    border-bottom: none;
}

.mv-list li i {
    font-size: 0.75rem;
}

.mv-card.mission .mv-list li i {
    color: var(--primary-color);
}

.mv-card.vision .mv-list li i {
    color: var(--secondary-color);
}

.mv-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.08;
}

.mv-card.mission .mv-decoration {
    background: var(--primary-color);
}

.mv-card.vision .mv-decoration {
    background: var(--secondary-color);
}

/* ===========================
   VALUES SECTION
=========================== */
.values-section {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(212, 120, 47, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 120, 47, 0.1), rgba(201, 48, 44, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: rotateY(360deg);
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.value-number {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: rgba(212, 120, 47, 0.08);
    line-height: 1;
}

.value-card:hover .value-number {
    color: rgba(212, 120, 47, 0.15);
}

/* ===========================
   TEAM SECTION
=========================== */
.team-section {
    background: var(--off-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
}

.team-info {
    padding: 25px 20px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

/* ===========================
   FOOTER
=========================== */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer .social-links {
    justify-content: flex-start;
}

.footer .social-links a {
    width: 38px;
    height: 38px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--golden-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
}

.footer-contact li i {
    color: var(--primary-color);
    margin-top: 4px;
    min-width: 18px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--golden-color);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
}

.footer-bottom-links a:hover {
    color: var(--golden-color);
}

/* ===========================
   MODAL
=========================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h5 {
    color: white;
    font-size: 1.3rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.modal-body {
    padding: 30px 25px;
}

/* ===========================
   RESPONSIVE - LARGE DESKTOP (1400px+)
=========================== */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

/* ===========================
   RESPONSIVE - DESKTOP (1200px - 1399px)
=========================== */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

/* ===========================
   RESPONSIVE - LAPTOP (992px - 1199px)
=========================== */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .navbar-menu a {
        padding: 10px 14px;
    }
    
    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
        gap: 30px;
    }
}

/* ===========================
   RESPONSIVE - TABLET (768px - 991px)
=========================== */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    /* Navigation */
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-radius: 0 0 15px 15px;
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .navbar-menu a {
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .navbar-menu a::after {
        display: none;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-actions .btn {
        display: none;
    }
    
    /* Hero */
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-row {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        margin-top: 30px;
    }
    
    .hero-image {
        max-width: 70%;
        margin: 0 auto;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Why Choose */
    .why-choose-row {
        flex-direction: column;
    }
    
    .why-choose-image {
        order: -1;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Categories */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact */
    .contact-row {
        flex-direction: column;
    }
    
    .contact-info-wrapper {
        flex: none;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .contact-info-card {
        margin-bottom: 0;
    }
    
    /* CTA */
    .cta-row {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    /* Process */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About */
    .about-row {
        flex-direction: column;
    }
    
    .about-image-wrapper {
        max-width: 80%;
        margin: 0 auto 30px;
    }
    
    /* Mission Vision */
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    /* Values */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Team */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Page Header */
    .page-header h1 {
        font-size: 2.3rem;
    }
    
    /* Section */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ===========================
   RESPONSIVE - MOBILE LARGE (576px - 767px)
=========================== */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    /* Top Bar */
    .top-bar {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .top-bar-content {
        justify-content: center;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .social-links {
        display: none;
    }
    
    /* Navigation */
    .navbar {
        padding: 12px 0;
    }
    
    .navbar-brand .logo {
        height: 42px;
    }
    
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .navbar-menu a {
        padding: 12px 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-actions .btn {
        display: none;
    }
    
    /* Hero */
    .hero-section {
        padding: 50px 0;
        text-align: center;
    }
    
    .hero-row {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-image-wrapper {
        margin-top: 30px;
    }
    
    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }
    
    /* Section */
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Why Choose */
    .why-choose-row {
        flex-direction: column;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.2rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    /* Flipbook */
    .flipbook {
        height: 450px;
    }
    
    /* Categories */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-card {
        height: 180px;
    }
    
    /* Contact */
    .contact-row {
        flex-direction: column;
    }
    
    .contact-info-wrapper {
        width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .map-section iframe {
        height: 300px;
    }
    
    /* CTA */
    .cta-section {
        padding: 50px 0;
        text-align: center;
    }
    
    .cta-row {
        flex-direction: column;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    /* Process */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Page Header */
    .page-header {
        padding: 60px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* About */
    .about-row {
        flex-direction: column;
    }
    
    .experience-badge {
        padding: 18px 22px;
        right: 10px;
        bottom: -15px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mission Vision */
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    /* Values */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Team */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-image {
        height: 220px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer .social-links {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* WhatsApp */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===========================
   RESPONSIVE - MOBILE SMALL (below 576px)
=========================== */
/* Mobile View Menu Alignment */
@media (max-width: 991px) {
    
    /* Menu container ko left align karein */
    .navbar-menu {
        text-align: left !important;
        padding-left: 20px; /* Thoda space left side se */
    }

    /* Links ko flex aur left aligned karein */
    .navbar-menu a {
        display: flex;
        align-items: center;
        justify-content: flex-start; /* Icon aur text left side se start hoga */
        width: 100%;
        padding: 12px 15px;
        border-bottom: 1px solid #f0f0f0; /* Optional: Links ke neeche line */
    }

    /* Icons aur text ke beech gap */
    .navbar-menu a i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }
        .navbar-menu a.active::after {
        bottom: 0;                 /* Line bottom mein set karein */
        left: 0 !important;
        transform: translateX(0) !important; 
    }
}
@media (max-width: 575px) {
    /* Top Bar */
    .top-bar {
        padding: 6px 0;
        font-size: 11px;
    }
    
    .top-bar-content {
        justify-content: center;
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-info {
        justify-content: center;
        gap: 10px;
    }
    
    .social-links {
        display: none;
    }
    
    /* Navigation */
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand .logo {
        height: 38px;
    }
    
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
         text-align: left !important;
         padding-left: 20px;
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .navbar-menu a {
        padding: 12px 15px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 14px;
    }
    
    .navbar-menu a i {
        margin-right: 10px;
        width: 20px;
         text-align: center;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-actions .btn {
        display: none;
    }
    
    /* Hero */
    .hero-section {
        padding: 40px 0;
        text-align: center;
    }
    
    .hero-row {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .hero-image-wrapper {
        margin-top: 25px;
    }
    
    .hero-image {
        max-width: 85%;
        margin: 0 auto;
    }
    
    /* Section */
    section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-tag {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Stats */
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 10px;
    }
    
    .stat-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-card-detailed .service-content {
        padding: 20px;
    }
    
    .service-image-wrapper {
        height: 180px;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    /* Why Choose */
    .why-choose-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .feature-item {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-item img {
        height: 150px;
    }
    
    .gallery-overlay {
        padding: 12px;
    }
    
    .gallery-overlay h4 {
        font-size: 0.9rem;
    }
    
    /* Flipbook */
    .flipbook-controls {
        gap: 10px;
    }
    
    .flipbook-controls .btn {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    #page-info {
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
        order: -1;
        margin-bottom: 10px;
    }
    
    .flipbook {
        height: 380px;
    }
    
    .flipbook-page {
        padding: 15px;
    }
    
    .flipbook-image {
        margin-bottom: 10px;
    }
    
    .flipbook-info h3 {
        font-size: 1.1rem;
    }
    
    .flipbook-price {
        font-size: 1.1rem;
    }
    
    /* Categories */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .category-card {
        height: 150px;
    }
    
    .category-overlay {
        padding: 15px;
    }
    
    .category-overlay h4 {
        font-size: 1rem;
    }
    
    /* Contact */
    .contact-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .contact-info-wrapper {
        width: 100%;
    }
    
    .contact-info-card {
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .contact-info-card h4 {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 20px 15px;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .map-section {
        margin-top: 30px;
    }
    
    .map-section iframe {
        height: 250px;
    }
    
    /* CTA */
    .cta-section {
        padding: 40px 0;
        text-align: center;
    }
    
    .cta-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 0.95rem;
    }
    
    /* Process */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-step {
        padding: 30px 20px 25px;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .process-step h4 {
        font-size: 1.1rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 50px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .breadcrumb-item {
        font-size: 0.85rem;
    }
    
    /* About */
    .about-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-image-wrapper {
        margin-bottom: 20px;
    }
    
    .experience-badge {
        padding: 15px 18px;
        right: 5px;
        bottom: -12px;
    }
    
    .experience-badge .years {
        font-size: 1.6rem;
    }
    
    .experience-badge .text {
        font-size: 0.7rem;
    }
    
    .about-content .lead {
        font-size: 1rem;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }
    
    .about-feature-item span {
        font-size: 0.9rem;
    }
    
    /* Mission Vision */
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mv-card {
        padding: 25px 20px;
    }
    
    .mv-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .mv-card h3 {
        font-size: 1.3rem;
    }
    
    .mv-card > p {
        font-size: 0.9rem;
    }
    
    .mv-list li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    /* Values */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .value-card {
        padding: 25px 15px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .value-card h4 {
        font-size: 1rem;
    }
    
    .value-card p {
        font-size: 0.8rem;
    }
    
    .value-number {
        font-size: 2.5rem;
    }
    
    /* Team */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .team-image {
        height: 180px;
    }
    
    .team-info {
        padding: 15px;
    }
    
    .team-info h4 {
        font-size: 1rem;
    }
    
    .team-info p {
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 15px;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-title {
        font-size: 1.15rem;
        margin-bottom: 15px;
    }
    
    .footer-about p {
        font-size: 0.9rem;
    }
    
    .footer .social-links {
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-contact li {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .footer-bottom-links {
        gap: 15px;
        font-size: 0.8rem;
    }
    
    /* WhatsApp */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 15px;
        right: 15px;
    }
    
    /* Modal */
    .modal-overlay {
        padding: 15px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h5 {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* ===========================
   EXTRA SMALL DEVICES (below 400px)
=========================== */
@media (max-width: 399px) {
    .hero-title {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-image {
        height: 220px;
    }
}

/* ===========================
   LANDSCAPE MOBILE
=========================== */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 30px 0;
    }
    
    .hero-image {
        max-width: 50%;
    }
    
    .page-header {
        padding: 40px 0;
    }
}

/* ===========================
   PRINT STYLES
=========================== */
@media print {
    .top-bar,
    .navbar,
    .whatsapp-float,
    .cta-section,
    .footer {
        display: none !important;
    }
    
    section {
        page-break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
    }
}

/* ===========================
   ACCESSIBILITY
=========================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}