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

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100%;
    width: 100%;
    max-width: 100vw;
    background-image: url('../uploads/websiteBG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Global Typography Styles */
h1, h2, h3, h4, h5, h6,
.section-title,
.nav-logo h2,
.hero-title,
.page-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-subtitle,
.page-hero-subtitle,
.section-subtitle,
.subtitle {
    font-family: 'Great Vibes', cursive;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

p, li, span, a, input, textarea, select, button {
    font-family: 'Montserrat', sans-serif;
    text-transform: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Color Variables */
:root {
    --maroon: #800000;
    --cream: #fff7e6;
    --gold: #c7a008;
    --dark-maroon: #660000;
    --light-gold: #e6d700;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-link.active {
    color: var(--maroon);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 20%;
}

.nav-logo h2 {
    color: var(--maroon);
    font-weight: 700;
    font-size: 1.5rem;
}

/* Company Name Animation */
.company-name {
    font-weight: 800 !important;
    animation: companyNamePulse 3s ease-in-out infinite;
}

@keyframes companyNamePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.95;
    }
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--maroon);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--maroon);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-background-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Dark overlay for better text readability */
.hero-background-slideshow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    border-radius: 20%;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    /* make padding effective */
    background: var(--gold, #c7a008);
    /* fallback if var not defined */
    color: var(--white, #fff);
    text-decoration: none;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 160, 8, 0.3);
    position: relative;
    z-index: 10;
    /* ensure it’s above other elements */
}

.cta-button:hover {
    background: var(--light-gold, #d1af22);
    /* fallback color */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 160, 8, 0.4);
}
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--white);
    border-bottom: 3px solid var(--white);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

/* Highlights Section */
.highlights {
    background: var(--cream);
}

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

.highlight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(199, 160, 8, 0.1);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 1rem;
}

.highlight-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Features Banner */
.features-banner {
    padding: 3rem 0;
    background: #fff;
    width: 100%;
    overflow: hidden;
}

.features-banner-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.features-banner svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments for SVG */
@media (max-width: 1200px) {
    .features-banner {
        padding: 2.5rem 0;
    }
}

@media (max-width: 768px) {
    .features-banner {
        padding: 2rem 0;
    }
    
    .features-banner svg {
        width: 100%;
        height: auto;
        min-width: 800px; /* Allows horizontal scroll on very small screens */
    }
    
    .features-banner-container {
        overflow-x: auto;
    }
}

/* Experience & Achievements Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(199, 160, 8, 0.05) 0%, rgba(128, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(4, minmax(250px, 1fr));
    }
}

.stat-card {
    background: white;
    padding: 3rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--maroon));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--maroon);
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.stat-number::after {
    content: '+';
    display: inline;
    margin-left: 0.1rem;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* Responsive Stats Section */
@media (max-width: 1199px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        margin-top: 2rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 50px 0;
    }
    
    .stats-grid {
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* Happy Celebrations Section */
.happy-celebrations {
    padding: 80px 0;
    background: #F5F5DC;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: -1rem auto 3rem;
    font-style: italic;
    padding: 0 20px;
}

.celebrations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.celebration-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(199, 160, 8, 0.1);
}

.celebration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.celebration-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.celebration-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.celebration-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Responsive design for celebrations section */
@media (max-width: 768px) {
    .celebrations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin: -0.5rem auto 2rem;
    }
    
    .celebration-card {
        padding: 2rem 1.5rem;
    }
    
    .celebration-icon {
        font-size: 3rem;
    }
    
    .expertise-list li {
        padding: 1rem 1.5rem;
        padding-left: 3rem;
        font-size: 1rem;
    }
    
    .expertise-list li:before {
        left: 1rem;
        font-size: 1.5rem;
    }
    
    .expertise-icon {
        font-size: 1.5rem;
        margin-right: 0.8rem;
    }
}

@media (max-width: 480px) {
    .happy-celebrations {
        padding: 60px 0;
    }
    
    .celebration-card {
        padding: 1.5rem;
    }
    
    .celebration-card h3 {
        font-size: 1.2rem;
    }
    
    .celebration-card p {
        font-size: 0.95rem;
    }
    
    .expertise-list li {
        padding: 0.8rem 1rem;
        padding-left: 2.8rem;
        font-size: 0.95rem;
        border-radius: 30px;
    }
    
    .expertise-list li:before {
        left: 0.8rem;
        font-size: 1.3rem;
    }
    
    .expertise-icon {
        font-size: 1.3rem;
        margin-right: 0.6rem;
    }
}

/* Expertise Section */
.expertise {
    background: var(--cream);
    padding: 80px 0;
}

.expertise .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expertise .section-title {
    text-align: center;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 3rem auto 0;
    max-width: 800px;
    width: 100%;
}

.expertise-list li {
    display: flex;
    align-items: center;
    padding: 1.2rem 2rem;
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 3px 15px var(--shadow);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
    position: relative;
    padding-left: 3.5rem;
}

.expertise-list li:before {
    content: '•';
    position: absolute;
    left: 1.5rem;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: bold;
}

.expertise-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px var(--shadow-hover);
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
}

.expertise-icon {
    font-size: 1.8rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
    background: var(--cream);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 2rem;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--maroon);
}

.testimonial-dots {
    text-align: center;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: var(--maroon);
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    gap: 2rem;
}

.about-image {
    width: 100%;
    max-width: 500px;
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.about-text {
    width: 100%;
    max-width: 700px;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: left;
}

/* Desktop layout - side by side when image is present */
@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        text-align: left;
        max-width: 1000px;
        gap: 3rem;
    }
    
    .about-image {
        flex: 1;
        max-width: 400px;
        margin-bottom: 0;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .about-text {
        flex: 1;
        max-width: none;
    }
}

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

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

.feature-item {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.feature-icon {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--gold);
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--maroon);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Video Play Icon */
.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    background: rgba(128, 0, 0, 0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: all 0.3s ease;
}

.gallery-item:hover .video-play-icon {
    background: rgba(128, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-empty {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.2rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--gold);
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    font-family: 'Montserrat', sans-serif;
    background: var(--maroon);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    background: var(--dark-maroon);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.3);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

/* Footer */
.footer {
    background: var(--maroon);
    color: var(--white);
    padding: 2rem 0;
}

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

.footer-text p {
    text-align: center;
}

.brandstack-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brandstack-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

.social-link {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--gold);
}

.social-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-in-out;
}

.lightbox img {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin-top: 5%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-logo-img {
        height: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    /* Mobile slideshow optimizations */
    .slideshow-image {
        transform: scale(1); /* Start at normal scale on mobile */
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* About section responsive styles moved to main about section */
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
    }
    
    .about-content-centered {
        gap: 2rem;
        padding: 0 20px;
    }
    
    .about-page-image {
        height: 300px;
    }
    
    .about-text-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    .about-page {
        min-height: auto;
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    /* Mobile Contact Page - Single Column Layout */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-page {
        padding: 50px 0;
    }
    
    .contact-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 5px;
    }
    
    .contact-item {
        padding: 1rem 5px;
        margin-bottom: 1.3rem;
    }
    
    .contact-icon {
        font-size: 1.5rem;
        margin-right: 1rem;
    }
    
    .contact-details h3 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .business-hours {
        padding: 1rem 5px;
    }
    
    .business-hours h3 {
        font-size: 0.95rem;
    }
    
    .hours-item {
        padding: 0.5rem 0;
    }
    
    .day,
    .time {
        font-size: 0.85rem;
    }
    
    .contact-form-section {
        padding: 1.8rem;
        margin: 0 5px;
    }
    
    .contact-form-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form .form-group {
        margin-bottom: 1.2rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 11px 13px;
    }
    
    .contact-form label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .submit-button {
        width: 100%;
        padding: 13px;
        font-size: 0.95rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    /* Navigation fixes for mobile */
    .nav-container {
        padding: 0 15px;
        position: relative;
    }
    
    .hamburger {
        position: relative;
        z-index: 1001;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-logo-img {
        height: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo-img {
        height: 25px;
    }
    
    .nav-logo h2 {
        font-size: 1rem;
    }
    
    .highlight-card,
    .expertise-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Small Mobile Screens - Contact Page */
    .contact-page {
        padding: 40px 0;
    }
    
    .contact-intro {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        padding: 0.8rem 0;
        margin-bottom: 1.1rem;
    }
    
    .contact-icon {
        font-size: 1.3rem;
        margin-right: 0.8rem;
    }
    
    .contact-details h3 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .business-hours {
        padding: 0.8rem 0;
    }
    
    .business-hours h3 {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .hours-item {
        padding: 0.5rem 0;
    }
    
    .day,
    .time {
        font-size: 0.8rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
        margin: 0;
    }
    
    .contact-form-section h3 {
        font-size: 1rem;
        margin-bottom: 1.3rem;
    }
    
    .contact-form .form-group {
        margin-bottom: 1rem;
    }
    
    .contact-form label {
        font-size: 0.85rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .submit-button {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    /* Fix navbar overflow */
    .nav-logo h2 {
        font-size: 0.9rem;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
}

/* Page Hero Sections */
.page-hero {
    height: 60vh;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-maroon) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

/* Services Page Hero with Background Image */
.page-hero.services-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../uploads/servicesBG.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* About Page Hero with Background Image */
.page-hero.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../uploads/aboutUsBG.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Gallery Page Hero with Background Image */
.page-hero.gallery-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../uploads/galleryBG.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Contact Page Hero with Background Image */
.page-hero.contact-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../uploads/contactUsBG.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Responsive background for mobile */
@media (max-width: 768px) {
    .page-hero.services-hero,
    .page-hero.about-hero,
    .page-hero.gallery-hero,
    .page-hero.contact-hero {
        background-attachment: scroll;
        background-size: cover;
    }
}

.page-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

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

.page-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.8;
    letter-spacing: 0.3px;
    text-transform: none;
}

/* Responsive font sizing for page-hero-subtitle */
@media (max-width: 768px) {
    .page-hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .page-hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* About Page Styles */
.about-page {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    gap: 3rem;
}

.about-image-section {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
}

.about-page-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.about-text-section {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-text-content {
    width: 100%;
}

.about-text-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
}

/* Page Transitions */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100%;
}

.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--maroon);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.page-transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.page-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.page-content.fade-out {
    opacity: 0;
}

/* Services Page Styles */
.services-overview {
    padding: 80px 0 40px;
    background: var(--cream);
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 1rem;
}

.main-services {
    padding: 40px 0 80px;
    background: var(--cream);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(199, 160, 8, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Service Process */
.service-process {
    padding: 80px 0;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--maroon);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Gallery Page Styles */
.gallery-page {
    padding: 80px 0;
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.gallery-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 1rem;
}

.gallery-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-gallery-content {
    max-width: 500px;
    margin: 0 auto;
}

.empty-gallery-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-gallery-content h3 {
    font-size: 1.5rem;
    color: var(--maroon);
    margin-bottom: 1rem;
}

.empty-gallery-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.gallery-loading {
    text-align: center;
    padding: 3rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--maroon);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Gallery Categories */
.gallery-categories {
    padding: 80px 0;
    background: var(--cream);
}

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

.category-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.category-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact Page Styles - Centered Form Only */
.contact-page {
    padding: 80px 0;
    overflow-x: hidden;
    width: 100%;
    background: #ffffff;
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
}

.contact-form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.contact-form-wrapper .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-form-wrapper .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.contact-form {
    background: #ffffff;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    max-width: 100%;
    padding: 12px 15px;
    box-sizing: border-box;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Montserrat', sans-serif;
}

.submit-button {
    font-family: 'Montserrat', sans-serif;
    background: var(--maroon);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    background: var(--dark-maroon);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.3);
}

/* Professional Contact Details Section */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.contact-page {
    padding: 80px 0;
    overflow-x: hidden;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(13, 71, 161, 0.05) 0%, 
        rgba(0, 150, 136, 0.05) 50%, 
        rgba(156, 39, 176, 0.05) 100%);
    min-height: calc(100vh - 160px);
    position: relative;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(13, 71, 161, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 150, 136, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Contact Details Section */
.contact-details-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 20px;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 1rem;
    position: relative;
}

.contact-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0d47a1, #009688);
    border-radius: 2px;
}

.contact-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Individual Contact Cards */
.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d47a1, #009688);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(13, 71, 161, 0.1);
}

/* Card-specific styling */
.phone-card:hover {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.02) 0%, rgba(0, 150, 136, 0.02) 100%);
}

.email-card:hover {
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.02) 0%, rgba(13, 71, 161, 0.02) 100%);
}

.instagram-card:hover {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.02) 0%, rgba(233, 30, 99, 0.02) 100%);
}

.address-card:hover {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.02) 0%, rgba(0, 150, 136, 0.02) 100%);
}

/* Contact Icon */
.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    opacity: 0.1;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon::before {
    transform: scale(1.5);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card:hover .contact-icon svg {
    transform: scale(1.1);
}

/* Icon-specific colors */
.phone-card .contact-icon {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: white;
}

.email-card .contact-icon {
    background: linear-gradient(135deg, #009688, #00bcd4);
    color: white;
}

.instagram-card .contact-icon {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
}

.address-card .contact-icon {
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: white;
}

/* Contact Card Title */
.contact-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

/* Contact Info */
.contact-info {
    font-family: 'Poppins', sans-serif;
    color: #666;
    line-height: 1.6;
    width: 100%;
}

.contact-link {
    display: block;
    color: #0d47a1;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    margin: 0.5rem 0;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0d47a1, #009688);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: #009688;
    text-decoration: none;
    background: rgba(13, 71, 161, 0.05);
    padding: 0.5rem 1rem;
}

.contact-link:hover::after {
    width: 100%;
}

/* Address link special styling */
.address-link {
    text-align: left;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Instagram link special styling */
.instagram-card .contact-link:hover {
    background: rgba(233, 30, 99, 0.05);
    color: #e91e63;
}

/* Phone links special styling */
.phone-card .contact-link:hover {
    background: rgba(13, 71, 161, 0.05);
    color: #0d47a1;
}

/* Email link special styling */
.email-card .contact-link:hover {
    background: rgba(0, 150, 136, 0.05);
    color: #009688;
}

/* Contact Links */
.contact-link {
    color: var(--maroon);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.contact-link:hover {
    color: var(--gold);
    text-decoration: none;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

/* Event Form Card */
.event-form-card {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(128, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.event-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon));
}

.event-form-card .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--maroon);
    position: relative;
}

.event-form-card .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--maroon), var(--gold));
    border-radius: 1px;
}

/* Form Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--maroon);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(199, 160, 8, 0.15);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(199, 160, 8, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    grid-column: 1 / -1;
}

/* Enhanced Submit Button */
.submit-button {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--maroon), var(--gold));
    color: var(--white);
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(128, 0, 0, 0.25);
}

.button-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(3px);
}


/* Floating Phone Button */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Definition of the design system. All colors, gradients, fonts, etc should be defined here. 
All colors MUST be HSL.
*/

@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;

    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;

    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;

    --primary: 222.2 47.4% 11.2%;
    --primary-foreground: 210 40% 98%;

    --secondary: 210 40% 96.1%;
    --secondary-foreground: 222.2 47.4% 11.2%;

    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;

    --accent: 210 40% 96.1%;
    --accent-foreground: 222.2 47.4% 11.2%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;

    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 222.2 84% 4.9%;

    --radius: 0.5rem;

    --sidebar-background: 0 0% 98%;

    --sidebar-foreground: 240 5.3% 26.1%;

    --sidebar-primary: 240 5.9% 10%;

    --sidebar-primary-foreground: 0 0% 98%;

    --sidebar-accent: 240 4.8% 95.9%;

    --sidebar-accent-foreground: 240 5.9% 10%;

    --sidebar-border: 220 13% 91%;

    --sidebar-ring: 217.2 91.2% 59.8%;
  }

  .dark {
    --background: 222.2 84% 4.9%;
    --foreground: 210 40% 98%;

    --card: 222.2 84% 4.9%;
    --card-foreground: 210 40% 98%;

    --popover: 222.2 84% 4.9%;
    --popover-foreground: 210 40% 98%;

    --primary: 210 40% 98%;
    --primary-foreground: 222.2 47.4% 11.2%;

    --secondary: 217.2 32.6% 17.5%;
    --secondary-foreground: 210 40% 98%;

    --muted: 217.2 32.6% 17.5%;
    --muted-foreground: 215 20.2% 65.1%;

    --accent: 217.2 32.6% 17.5%;
    --accent-foreground: 210 40% 98%;

    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;

    --border: 217.2 32.6% 17.5%;
    --input: 217.2 32.6% 17.5%;
    --ring: 212.7 26.8% 83.9%;
    --sidebar-background: 240 5.9% 10%;
    --sidebar-foreground: 240 4.8% 95.9%;
    --sidebar-primary: 224.3 76.3% 48%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 240 3.7% 15.9%;
    --sidebar-accent-foreground: 240 4.8% 95.9%;
    --sidebar-border: 240 3.7% 15.9%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }
}

@layer base {
  * {
    @apply border-border;
  }

  body {
    @apply bg-background text-foreground;
  }
}

/* Floating Phone Button */
.phone-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  animation: phonePulse 3s ease-in-out infinite;
}

.phone-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #007AFF;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 122, 255, 0.3);
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.phone-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
  text-decoration: none;
  color: white;
}

.phone-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: phoneBounce 2s ease-in-out infinite;
}

.phone-icon svg {
  width: 100%;
  height: 100%;
}

.phone-text {
  white-space: nowrap;
  font-size: 0.8rem;
}

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

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

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  color: white;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: whatsappBounce 2s ease-in-out infinite;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
}

.whatsapp-text {
  white-space: nowrap;
  font-size: 0.8rem;
}

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

@keyframes whatsappBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: white;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: whatsappBounce 2s ease-in-out infinite;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
}

.whatsapp-text {
    white-space: nowrap;
    font-size: 0.8rem;
}

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

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

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-card,
    .event-form-card {
        max-width: 900px;
        margin: 0 20px 3rem;
        padding: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 50px 0;
        min-height: auto;
    }
    
    .contact-card,
    .event-form-card {
        margin: 0 15px 2.5rem;
        padding: 1.8rem;
        border-radius: 15px;
    }
    
    .contact-card .section-title,
    .event-form-card .section-title {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .contact-info-item {
        padding: 1.2rem;
        gap: 1rem;
        border-radius: 10px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-content h3 {
        font-size: 0.9rem;
    }
    
    .contact-content p {
        font-size: 0.85rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 10px 14px;
        border-radius: 8px;
    }
    
    .form-group textarea {
        min-height: 90px;
    }
    
    .submit-button {
        padding: 12px 25px;
        font-size: 0.9rem;
        border-radius: 10px;
        margin-top: 1.2rem;
    }
    
    /* WhatsApp Button Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        padding: 10px 14px;
        font-size: 0.8rem;
        gap: 8px;
    }
    
    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }
    
    .whatsapp-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 40px 0;
    }
    
    .contact-card,
    .event-form-card {
        margin: 0 10px 2rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .contact-card .section-title,
    .event-form-card .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-grid {
        gap: 1rem;
    }
    
    .contact-info-item {
        padding: 1rem;
        gap: 0.8rem;
        border-radius: 8px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .contact-content h3 {
        font-size: 0.85rem;
    }
    
    .contact-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .form-row {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 9px 12px;
        border-radius: 6px;
        font-size: 15px;
    }
    
    .form-group textarea {
        min-height: 80px;
    }
    
    .submit-button {
        padding: 10px 20px;
        font-size: 0.85rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
    
    /* WhatsApp Button Small Mobile */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        padding: 8px 12px;
        font-size: 0.75rem;
        gap: 6px;
        border-radius: 25px;
    }
    
    .whatsapp-icon {
        width: 16px;
        height: 16px;
    }
    
    .whatsapp-text {
        font-size: 0.7rem;
    }
}

/* Responsive Professional Contact Details */
@media (max-width: 1024px) {
    .contact-details-section {
        max-width: 1000px;
        padding: 0 15px;
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 60px 0;
        min-height: auto;
    }
    
    .contact-details-section {
        margin: 0 15px 3rem;
        padding: 0;
    }
    
    .contact-header {
        margin-bottom: 2rem;
    }
    
    .contact-main-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
        min-height: 240px;
        border-radius: 12px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }
    
    .contact-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .contact-card-title {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-link {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }
    
    .address-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 50px 0;
    }
    
    .contact-details-section {
        margin: 0 10px 2rem;
    }
    
    .contact-header {
        margin-bottom: 1.5rem;
    }
    
    .contact-main-title {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-cards-grid {
        gap: 1.2rem;
        margin-top: 1.2rem;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
        min-height: 220px;
        border-radius: 10px;
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 1rem;
    }
    
    .contact-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-card-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-link {
        font-size: 0.9rem;
        padding: 0.3rem 0;
        margin: 0.3rem 0;
    }
    
    .address-link {
        font-size: 0.85rem;
    }
    
    /* Ensure touch targets are large enough */
    .contact-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Passion Behind the Plates Section */
.passion-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(199, 160, 8, 0.05) 0%, 
        rgba(255, 255, 255, 0.95) 30%, 
        rgba(255, 255, 255, 0.95) 70%, 
        rgba(199, 160, 8, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.passion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(199, 160, 8, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(128, 0, 0, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 0%, rgba(199, 160, 8, 0.03) 50%, transparent 100%);
    pointer-events: none;
}

.passion-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Passion Title */
.passion-title {
    margin-bottom: 2rem;
    position: relative;
}

.passion-word,
.behind-word,
.plates-word {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0.5rem;
    position: relative;
    background: linear-gradient(135deg, var(--maroon), var(--gold), var(--maroon));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.passion-word::after,
.behind-word::after,
.plates-word::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--maroon), var(--gold));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s ease;
}

.passion-word:hover::after,
.behind-word:hover::after,
.plates-word:hover::after {
    transform: scaleX(1);
}

/* Passion Description */
.passion-description {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.passion-description p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
    text-align: center;
    position: relative;
}

.passion-description p::before {
    content: '"';
    font-size: 4rem;
    color: var(--gold);
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: 'Great Vibes', cursive;
    opacity: 0.6;
}

.passion-description p::after {
    content: '"';
    font-size: 4rem;
    color: var(--gold);
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: 'Great Vibes', cursive;
    opacity: 0.6;
}

/* Passion Visual Elements */
.passion-visual-elements {
    position: relative;
    height: 120px;
    margin-top: 2rem;
}

.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20px;
    left: 15%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 10px;
    right: 20%;
    animation-delay: 0.5s;
}

.floating-icon:nth-child(3) {
    bottom: 20px;
    left: 25%;
    animation-delay: 1s;
}

.floating-icon:nth-child(4) {
    bottom: 10px;
    right: 15%;
    animation-delay: 1.5s;
}

/* Shimmer Animation */
@keyframes shimmer {
    0%, 100% {
        background-position: -200% 0;
    }
    50% {
        background-position: 200% 0;
    }
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive Passion Section */
@media (max-width: 768px) {
    .passion-section {
        padding: 80px 0;
    }
    
    .passion-word,
    .behind-word,
    .plates-word {
        font-size: 2.5rem;
        margin: 0 0.3rem;
    }
    
    .passion-description p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .passion-description p::before,
    .passion-description p::after {
        font-size: 3rem;
    }
    
    .floating-icon {
        font-size: 2rem;
    }
    
    .passion-visual-elements {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .passion-section {
        padding: 60px 0;
    }
    
    .passion-word,
    .behind-word,
    .plates-word {
        font-size: 2rem;
        margin: 0 0.2rem;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .passion-description p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .passion-description p::before,
    .passion-description p::after {
        font-size: 2.5rem;
    }
    
    .floating-icon {
        font-size: 1.8rem;
    }
    
    .passion-visual-elements {
        height: 80px;
    }
}

/* Enhanced Our History Section */
.history-section {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(199, 160, 8, 0.08) 0%, 
        rgba(255, 255, 255, 0.95) 30%, 
        rgba(255, 255, 255, 0.95) 70%, 
        rgba(199, 160, 8, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.history-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(199, 160, 8, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(128, 0, 0, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, transparent 0%, rgba(199, 160, 8, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.history-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(199, 160, 8, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(199, 160, 8, 0.1);
    position: relative;
    overflow: hidden;
}

.history-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--maroon), var(--gold));
    border-radius: 24px 24px 0 0;
}

/* History Header */
.history-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.history-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--maroon);
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.history-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--maroon));
    border-radius: 2px;
}

/* History Milestone */
.history-milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    position: relative;
}

.years-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 20px rgba(199, 160, 8, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    background: linear-gradient(135deg, var(--gold), #ffd700, var(--gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

.years-number::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        rgba(199, 160, 8, 0.1), 
        rgba(255, 215, 0, 0.1), 
        rgba(199, 160, 8, 0.1));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    animation: glow 3s ease-in-out infinite;
}

.years-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--maroon);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    position: relative;
}

.years-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--maroon));
    border-radius: 1px;
}

/* History Text */
.history-text {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.history-paragraph {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    position: relative;
    padding-left: 2rem;
}

.history-paragraph::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: bold;
}

.history-paragraph:last-child {
    margin-bottom: 0;
}

.history-paragraph strong {
    color: var(--maroon);
    font-weight: 700;
}

.history-paragraph em {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
}

/* Shimmer Animation */
@keyframes shimmer {
    0%, 100% {
        background-position: -200% 0;
    }
    50% {
        background-position: 200% 0;
    }
}

/* Glow Animation */
@keyframes glow {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Responsive History Section */
@media (max-width: 768px) {
    .history-section {
        padding: 60px 0;
    }
    
    .history-content {
        margin: 0 15px;
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .history-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .years-number {
        font-size: 3rem;
    }
    
    .years-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .history-paragraph {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
    
    .history-paragraph::before {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .history-section {
        padding: 50px 0;
    }
    
    .history-content {
        margin: 0 10px;
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .history-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .years-number {
        font-size: 2.5rem;
    }
    
    .years-text {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .history-paragraph {
        font-size: 0.95rem;
        padding-left: 1.2rem;
    }
    
    .history-paragraph::before {
        font-size: 0.9rem;
    }
}

/* Legacy Contact Page Styles (kept for backwards compatibility) */
.contact-page-legacy {
    padding: 80px 0;
    overflow-x: hidden;
    width: 100%;
    background: #f9f9f9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

.contact-info {
    width: 100%;
    max-width: 100%;
}

.contact-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-items {
    margin-bottom: 3rem;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    padding: 1.2rem 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.contact-icon {
    font-size: 1.8rem;
    margin-right: 1.2rem;
    color: var(--maroon);
    margin-top: 0;
    flex-shrink: 0;
}

.contact-details h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0.3rem 0;
    font-size: 1rem;
}

.contact-details a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--maroon);
}

.business-hours {
    background: transparent;
    padding: 1.2rem 0;
    border-radius: 0;
    box-shadow: none;
    margin-top: 1rem;
}

.business-hours h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.time {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-form-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form {
    width: 100%;
    max-width: 100%;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.contact-form label {
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    max-width: 100%;
    padding: 12px 15px;
    box-sizing: border-box;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--maroon);
}

.contact-form select {
    cursor: pointer;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--cream);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--maroon);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 160, 8, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 160, 8, 0.4);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--cream);
}

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

.commitment-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.commitment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.commitment-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 1rem;
}

.commitment-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}
