/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header and Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo-img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover {
    color: #dc2626;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    border-color: #dc2626;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    border-color: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: #dc2626;
    border-color: #dc2626;
    position: relative;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
}

.about h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: #1f2937;
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #4b5563;
    line-height: 1.8;
}

.training-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.quote {
    text-align: center;
    font-style: italic;
    font-size: 1.4rem;
    color: #6b7280;
    border-left: 5px solid #dc2626;
    padding: 30px 40px;
    margin: 0 auto;
    max-width: 700px;
    background: white;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: #dc2626;
    opacity: 0.3;
}

.quote cite {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #374151;
    font-style: normal;
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: white;
}

.programs h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: #1f2937;
    position: relative;
}

.programs h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.program-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

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

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

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

.program-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1f2937;
    font-weight: 700;
}

.program-card p {
    color: #6b7280;
    margin-bottom: 35px;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Location Section */
.location {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.location h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: #1f2937;
    position: relative;
}

.location h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

.location-info {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.location-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1f2937;
    font-weight: 700;
}

.location-info address {
    font-style: normal;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #4b5563;
    line-height: 1.8;
}

.location-info p {
    color: #6b7280;
    margin-bottom: 35px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
}

.made-with {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Instructors Section */
.instructors {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.instructors h2 {
    font-size: 3rem;
    color: #1f2937;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.instructors h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

.instruction-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    margin-top: 40px;
}

.instruction-text {
    flex: 1;
}

.instruction-image {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.lineage-portrait {
    width: 280px;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lineage-portrait:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.instructor-content {
    margin-bottom: 80px;
}

.instructor-gallery {
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.instructor-text h3 {
    color: #dc2626;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 700;
}

.association-badge {
    text-align: center;
    margin-bottom: 30px;
}

.badge-image {
    width: 140px;
    height: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.badge-image:hover {
    transform: scale(1.1);
}

.seminar-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seminar-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 500;
}

/* Program Images */
.program-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

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

/* Schedule Section */
.schedule {
    padding: 100px 0;
    background-color: white;
}

.schedule h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: #1f2937;
    position: relative;
}

.schedule h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

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

.schedule-day {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border-left: 5px solid #dc2626;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.schedule-day:hover::before {
    transform: scaleX(1);
}

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

.schedule-day h4 {
    color: #dc2626;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.schedule-day p {
    margin: 12px 0;
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Contact Details */
.contact-details {
    margin: 40px 0;
}

.contact-details p {
    margin: 15px 0;
    font-size: 1.1rem;
}

.contact-details a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #b91c1c;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 40px;
}

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

.footer-badge {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-badge:hover {
    transform: scale(1.1);
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin: 8px 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .instruction-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    
    .lineage-portrait {
        width: 250px;
        height: 320px;
    }
    
    .instructor-gallery {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    
    .seminar-image {
        height: 300px;
    }
    
    .program-image {
        height: 200px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .association-badge {
        margin-top: 30px;
    }
    
    .badge-image {
        width: 120px;
        height: 120px;
    }
    
    .about h2,
    .programs h2,
    .cta h2,
    .location h2,
    .instructors h2,
    .schedule h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about h2,
    .programs h2,
    .cta h2,
    .location h2,
    .instructors h2,
    .schedule h2 {
        font-size: 2rem;
    }
    
    .program-card {
        padding: 40px 25px;
    }
    
    .location-info {
        padding: 40px 25px;
    }
    
    .schedule-day {
        padding: 30px 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-menu a:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

/* Section spacing */
section {
    scroll-margin-top: 100px;
}

/* Additional hover effects */
.program-card:hover .program-image {
    transform: scale(1.05);
}

.schedule-day:hover h4 {
    color: #b91c1c;
}

/* Loading animations for images */
.program-image,
.training-image,
.lineage-portrait,
.seminar-image {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.program-image:nth-child(1) { animation-delay: 0.1s; }
.program-image:nth-child(2) { animation-delay: 0.2s; }
.program-image:nth-child(3) { animation-delay: 0.3s; }

/* Hamburger Menu (Mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    margin-left: 10px;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background: #dc2626;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        display: block;
        position: absolute;
        top: 80px;
        right: 0;
        width: 80vw;
        max-width: 320px;
        background: rgba(255,255,255,0.98);
        box-shadow: -4px 0 24px rgba(0,0,0,0.08);
        border-radius: 0 0 0 20px;
        padding: 40px 30px 30px 30px;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(.4,2,.6,1);
        z-index: 1050;
        text-align: right;
        gap: 30px;
        flex-direction: column;
    }
    .nav-menu.active {
        transform: translateX(0);
        display: block;
    }
    .nav-menu li {
        margin: 20px 0;
    }
    .nav-menu a {
        font-size: 1.3rem;
        color: #1f2937;
        padding: 10px 0;
        display: inline-block;
    }
}

/* Hamburger animation (optional: X icon on open) */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.contact h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: #1f2937;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form-section {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-form-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 700;
}

.contact-form-section p {
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #1f2937;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form .btn {
    margin-top: 10px;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-info-section {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-info-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1f2937;
    font-weight: 700;
}

.contact-info-section h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #dc2626;
    font-weight: 600;
}

.contact-info-section address {
    font-style: normal;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #4b5563;
    line-height: 1.8;
}

.contact-info-section p {
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.7;
}

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

.contact-details p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-details a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #b91c1c;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 40px 30px;
    }
    
    .contact h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form-section,
    .contact-info-section {
        padding: 30px 20px;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
}

/* Contact Page Hero */
.contact-hero {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* Active Navigation State */
.nav-menu a.active {
    color: #dc2626;
    font-weight: 600;
}

/* Prominent Instagram link styles */
.prominent-instagram {
  display: inline-flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #E1306C; /* Instagram pink */
  text-decoration: none;
  margin-top: 0.5em;
  transition: color 0.2s;
}
.prominent-instagram svg {
  margin-right: 0.5em;
  stroke: #E1306C;
  transition: stroke 0.2s;
}
.prominent-instagram:hover,
.prominent-instagram:focus {
  color: #C13584; /* Instagram purple */
}
.prominent-instagram:hover svg,
.prominent-instagram:focus svg {
  stroke: #C13584;
}

