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

:root {
    --primary-color: #8B4513;
    --secondary-color: #D4AF37;
    --accent-color: #C41E3A;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

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

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

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    /* display: none; - Logo ready to display once logo.png is added */
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    width: 32px;
    height: 26px;
    justify-content: space-between;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 5px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 5px;
    transition: var(--transition);
    display: inline-block;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(196, 30, 58, 0.8)),
                url('images/hero-bg.jpg') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 40px 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-announcement {
    background: var(--accent-color);
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-keywords span {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 20px;
}

.nav-highlight {
    background: var(--accent-color) !important;
    color: white !important;
    font-weight: 700 !important;
}

.nav-highlight:hover {
    background: #b01a32 !important;
}

.primary-cta {
    font-size: 1.2rem !important;
    padding: 18px 45px !important;
    animation: pulse-button 2s infinite;
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary-color) !important;
}

.secondary-cta:hover {
    background: white !important;
}

@keyframes pulse-button {
    0%, 100% { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6); }
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    background: #c9a226;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    gap: 40px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 15px;
}

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

.feature-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: #666;
}

/* Training Promotion Banner */
.training-banner {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    padding: 40px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 4rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.banner-text {
    flex: 1;
    min-width: 300px;
}

.banner-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.banner-text p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.banner-ctas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-button {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
}

.banner-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.banner-button.outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.banner-button.outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Awards Section */
.awards {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.award-highlight {
    text-align: center;
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    margin-bottom: 40px;
    border: 3px solid var(--secondary-color);
}

.award-badge {
    margin-bottom: 20px;
}

.trophy-icon {
    font-size: 4rem;
}

.award-highlight h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.award-title {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.award-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

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

.achievement-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.achievement-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.achievement-card p {
    color: #666;
    line-height: 1.6;
}

/* Media Coverage Section */
.media-coverage {
    margin-top: 50px;
    text-align: center;
}

.media-coverage h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 40px;
}

/* Video Feature */
.video-feature {
    margin-bottom: 40px;
}

.video-showcase {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    margin-bottom: 20px;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.video-thumbnail:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-showcase h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.video-caption {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.youtube-link {
    display: inline-block;
    padding: 15px 40px;
    background: #FF0000;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.youtube-link:hover {
    background: #CC0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

.media-items {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.media-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    max-width: 600px;
    text-align: left;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
    text-decoration: none;
    color: inherit;
    display: block;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.media-logo {
    margin-bottom: 15px;
}

.media-logo strong {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
}

.media-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.media-excerpt {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.read-more {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    padding: 8px 20px;
    background: var(--bg-light);
    border-radius: 25px;
    transition: var(--transition);
}

.media-card:hover .read-more {
    background: var(--accent-color);
    color: white;
}

.media-note {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Saree Types Section */
.saree-types {
    background: var(--bg-white);
}

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

.saree-type-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
}

.saree-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--accent-color);
}

.saree-type-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.saree-type-card p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.saree-type-card ul {
    list-style: none;
    margin-top: 15px;
}

.saree-type-card li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

.saree-type-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Collections Section */
.collections {
    background: var(--bg-light);
}

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

.collection-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.collection-image {
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.collection-info {
    padding: 25px;
}

.collection-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.collection-info p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    background: var(--bg-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--text-light);
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    height: 400px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-item.hidden {
    display: none;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Custom Services Section */
.custom-services {
    background: var(--bg-white);
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

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

.service-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--secondary-color);
}

.service-card.featured {
    background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
    border-top: 4px solid var(--accent-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.service-card ul {
    list-style: none;
    margin: 20px 0;
}

.service-card li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-note {
    font-style: italic;
    color: #777;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px dashed #ddd;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: white;
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background: #f5f5f5;
}

/* Training Section */
.training-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.training-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.training-intro strong {
    color: var(--primary-color);
}

.training-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.training-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    border-top: 5px solid var(--secondary-color);
    position: relative;
}

.training-card.featured {
    border-top-color: var(--accent-color);
    background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
}

.training-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.training-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.training-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.training-duration {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.training-price {
    text-align: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 25px;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.price-period {
    display: block;
    color: #666;
    font-size: 1rem;
}

.training-content h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 25px 0 15px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 8px;
}

.training-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.training-content li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.7;
    color: #555;
}

.training-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.training-content strong {
    color: var(--primary-color);
}

.training-cta {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    margin-top: 25px;
}

.training-cta:hover {
    background: #723a0f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.training-cta.secondary {
    background: var(--bg-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.training-cta.secondary:hover {
    background: var(--primary-color);
    color: white;
}

.training-highlights {
    text-align: center;
    margin-bottom: 50px;
}

.training-highlights h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
}

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

.highlight-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.highlight-item h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.highlight-item p {
    color: #666;
    line-height: 1.6;
}

.training-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.training-cta-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

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

/* FAQ Section */
.faq-section {
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
    border-left-color: var(--accent-color);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.faq-item p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Why Choose Us Section */
.why-choose {
    background: var(--bg-light);
}

.why-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.why-section {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.why-section h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 18px;
    line-height: 1.4;
}

.why-section p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.why-section strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Care Section */
.care-section {
    background: var(--bg-white);
}

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

.care-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.care-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.care-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.care-card p {
    color: #666;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--accent-color);
}

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

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.submit-btn:hover {
    background: #723a0f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.footer-section p {
    line-height: 1.7;
    color: #bbb;
}

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

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

.footer-section a {
    color: #bbb;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .nav-wrapper {
        position: relative;
    }

    .menu-toggle {
        display: flex !important;
    }

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

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

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

    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease-in-out;
        gap: 0;
        border-radius: 0 0 10px 10px;
        z-index: 999;
    }

    .nav-menu.active {
        max-height: 600px;
        padding: 15px;
        border-top: 2px solid var(--bg-light);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0;
        display: block;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 18px 20px;
        border-radius: 8px;
        margin: 5px 0;
        font-size: 1.1rem;
        text-align: center;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        background: var(--primary-color);
        color: white;
    }

    .nav-highlight {
        background: var(--accent-color) !important;
        color: white !important;
    }

    .logo {
        gap: 10px;
    }

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

    .logo-image {
        height: 35px;
    }

    .hero-announcement {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

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

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

    .hero-keywords {
        gap: 10px;
    }

    .hero-keywords span {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .cta-button {
        width: 100%;
    }

    .banner-content {
        text-align: center;
        flex-direction: column;
    }

    .banner-text h3 {
        font-size: 1.4rem;
    }

    .banner-ctas {
        justify-content: center;
    }

    .video-thumbnail {
        margin-bottom: 15px;
    }

    .play-overlay svg {
        width: 60px;
        height: 60px;
    }

    .video-showcase h4 {
        font-size: 1.3rem;
    }

    .youtube-link {
        font-size: 1rem;
        padding: 12px 30px;
    }

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

    .saree-types-grid,
    .collections-grid {
        grid-template-columns: 1fr;
    }

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

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

    .lightbox-nav {
        padding: 10px 15px;
        font-size: 20px;
    }

    .lightbox-close {
        right: 20px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 50px 0;
    }

    .contact-form {
        padding: 25px;
    }

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-button,
    .gallery-filters,
    .contact-form {
        display: none;
    }
}
