* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #7A1B3D;
    --primary-dark: #5A0F2A;
    --primary-light: #9E2B52;
    --gold: #E8A830;
    --gold-light: #F0C060;
    --gold-dark: #C08820;
    --bg-dark: #1A0A1E;
    --bg-section: #FBF7F0;
    --bg-white: #FFFFFF;
    --text-dark: #2D1B33;
    --text-medium: #6B5A72;
    --text-light: #9A8DA0;
    --border: #E8DFE0;
    --danger: #dc3545;
    --success: #28a745;
    --shadow: 0 4px 20px rgba(122, 27, 61, 0.08);
    --shadow-lg: 0 12px 40px rgba(122, 27, 61, 0.12);
    --shadow-gold: 0 4px 20px rgba(232, 168, 48, 0.3);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
}

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

/* ==================== NAVBAR ==================== */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(122,27,61,0.08);
    transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(122,27,61,0.1); }

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

.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 80px; width: 70px; transition: transform 0.3s ease; }
.logo:hover .logo-img { transform: scale(1.05); }

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%; width: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.login-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(122,27,61,0.25);
    transition: all 0.3s ease;
}
.login-btn::after { display: none; }
.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122,27,61,0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}
.hamburger span {
    width: 26px; height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==================== HERO ==================== */
.hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 40%, var(--primary) 100%);
    color: white;
    padding: 100px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--gold);
}
.shape-1 { width: 400px; height: 400px; top: -100px; right: -80px; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 250px; height: 250px; bottom: -60px; left: -40px; animation: float 10s ease-in-out infinite reverse; }
.shape-3 { width: 150px; height: 150px; top: 40%; left: 30%; animation: float 6s ease-in-out infinite; }
.shape-4 { width: 80px; height: 80px; top: 20%; right: 30%; animation: float 7s ease-in-out infinite reverse; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(232,168,48,0.15);
    border: 1px solid rgba(232,168,48,0.3);
    color: var(--gold-light);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    animation: fadeInUp 0.8s ease 0.1s both;
}
.text-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.25s both;
}

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

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.3s both;
    justify-content: center;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.stat-item { text-align: center; flex: 1 1 100px; min-width: 0; }
.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}
.stat-label { font-size: 0.8rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 0.3s both;
    margin-top: 60px;
}
.hero-logo-wrapper {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 40px;
    transition: transform 0.4s ease;
}
.hero-logo-wrapper:hover { transform: scale(1.03); }
.hero-logo-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 30px rgba(0,0,0,0.3));
}

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

/* ==================== BUTTONS ==================== */
.btn {
    padding: 13px 32px;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.35s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    justify-content: center;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232,168,48,0.45);
}
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 24px;
    font-size: 0.9rem;
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122,27,61,0.25);
}
.btn-large { padding: 16px 44px; font-size: 1.05rem; }

/* ==================== SECTION HEADERS ==================== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block;
    background: rgba(122,27,61,0.08);
    color: var(--primary);
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}
.section-tag-light {
    background: rgba(232,168,48,0.15);
    color: var(--gold-light);
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.section-subtitle {
    color: var(--text-medium);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}
.section-subtitle-light { color: rgba(255,255,255,0.7); }

/* ==================== PLANS SECTION ==================== */
.plans-section { padding: 100px 0; background: var(--bg-section); }

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.plan-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.plan-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}
.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.plan-card:hover::before { transform: scaleX(1); }

.plan-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}
.plan-card:hover .plan-icon { transform: scale(1.1) rotate(5deg); }

.plan-icon-education { background: #FFF3E0; color: #E65100; }
.plan-icon-family { background: #F3E5F5; color: #7B1FA2; }
.plan-icon-pension { background: #E8F5E9; color: #2E7D32; }
.plan-icon-term { background: #FCE4EC; color: #C62828; }
.plan-icon-ulip { background: #E3F2FD; color: #1565C0; }
.plan-icon-general { background: #EDE7F6; color: #4527A0; }

.plan-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.plan-card p { color: var(--text-medium); margin-bottom: 20px; font-size: 0.9rem; flex-grow: 1; }

.benefits { list-style: none; text-align: left; margin: 0 0 24px; padding: 0; }
.benefits li {
    padding: 6px 0;
    color: var(--text-dark);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.check { color: var(--gold-dark); font-weight: 700; font-size: 1rem; }

.plan-card .btn { align-self: center; margin-top: auto; }

/* ==================== ABOUT SECTION ==================== */
.about-section { padding: 100px 0; background: var(--bg-white); }

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.about-item {
    text-align: center;
    padding: 36px 24px;
    border-radius: 20px;
    background: var(--bg-section);
    border: 1px solid transparent;
    transition: all 0.4s ease;
}
.about-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(232,168,48,0.2);
    background: white;
}
.about-icon-wrapper { margin-bottom: 18px; }
.about-icon { font-size: 2.8rem; }
.about-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.about-item p { color: var(--text-medium); font-size: 0.9rem; }

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark), var(--primary-dark));
    color: white;
}
.contact-section .section-header h2 { color: white; }

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

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

.info-card {
    display: flex;
    gap: 18px;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.info-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(6px);
}

.info-icon-wrapper { flex-shrink: 0; }
.info-icon { font-size: 1.8rem; }
.info-card h4 { font-size: 0.95rem; margin-bottom: 2px; color: var(--gold-light); }
.info-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

/* Social Media Links */
.social-links {
    margin-top: 8px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}
.social-heading {
    font-size: 0.95rem;
    color: var(--gold-light);
    margin-bottom: 14px;
    font-weight: 500;
}
.social-icons {
    display: flex;
    gap: 14px;
}
.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    color: white;
}
.social-youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.25);
}
.social-linkedin:hover {
    background: rgba(0, 119, 181, 0.2);
    border-color: rgba(0, 119, 181, 0.4);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.25);
}
.social-facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.4);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.25);
}
.social-instagram:hover {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.2), rgba(253, 29, 29, 0.2), rgba(252, 176, 69, 0.2));
    border-color: rgba(225, 48, 108, 0.4);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.25);
}

.cta-card {
    background: rgba(232,168,48,0.1);
    border: 1px solid rgba(232,168,48,0.25);
    border-radius: 20px;
    padding: 40px 36px;
    text-align: center;
    backdrop-filter: blur(10px);
}
.cta-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: white;
}
.cta-card p { color: rgba(255,255,255,0.7); margin-bottom: 24px; font-size: 0.95rem; }

/* ==================== FOOTER ==================== */
.footer {
    background: #0D0610;
    color: rgba(255,255,255,0.7);
    padding: 50px 0 30px;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 24px;
}
.footer-logo { height: 70px; width: auto; margin-bottom: 8px; filter: brightness(1.2); }
.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 0.9rem;
}
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 0.88rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom { text-align: center; font-size: 0.82rem; opacity: 0.5; }

/* ==================== FORM HERO BANNER ==================== */
.form-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 40%, var(--primary) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.form-hero-content { position: relative; z-index: 2; }
.form-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}
.form-hero-content p {
    font-size: 1.05rem;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto;
}

/* ==================== FORM STYLES ==================== */
.form-section {
    background: linear-gradient(135deg, var(--bg-section), var(--bg-white));
    padding: 0 20px 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.form-container {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 95%;
    max-width: 720px;
    padding: 50px;
    border: 1px solid var(--border);
    margin-top: -40px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
    box-sizing: border-box;
}
.form-header { text-align: center; margin-bottom: 40px; }
.form-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.form-header p { color: var(--text-medium); font-size: 1rem; }

.enquiry-form { display: flex; flex-direction: column; gap: 30px; }

.form-section-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}
.form-section-group:last-of-type { border-bottom: none; }
.form-section-group h3 {
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-weight: 600; color: var(--text-dark); font-size: 0.9rem; }

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
    width: 100%;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(122,27,61,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.checkbox-group { flex-direction: row; align-items: center; gap: 12px; }
.checkbox-group input[type="checkbox"] {
    width: 20px; height: 20px; cursor: pointer;
    accent-color: var(--primary);
}
.checkbox-label { font-weight: normal; cursor: pointer; color: var(--text-dark); font-size: 0.9rem; }

.error-message { color: var(--danger); font-size: 0.82rem; display: none; }
.error-message.show { display: block; }
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: var(--danger); background-color: #fff5f5; }

.form-actions { display: flex; gap: 15px; justify-content: center; margin-top: 20px; }

/* ==================== SUCCESS MESSAGE ==================== */
.success-message {
    display: flex; align-items: center; justify-content: center;
    min-height: 100vh;
    background: rgba(26,10,30,0.5);
    backdrop-filter: blur(10px);
    position: fixed;
    inset: 0;
    z-index: 1000;
}
.success-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
}
.success-content h2 { color: var(--success); font-family: 'Playfair Display', serif; font-size: 2rem; margin: 20px 0; }
.success-content p { color: var(--text-medium); font-size: 1rem; margin-bottom: 15px; }
.success-details { color: var(--text-light); margin-bottom: 30px; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .hero .container { flex-direction: column; }
    .hero-content h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .container { width: 95%; padding: 0 15px; }

    .hamburger { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border);
    }
    .nav-menu.open { display: flex; }
    .nav-menu .nav-link {
        padding: 0.8rem 1rem;
        border-radius: 10px;
        width: 100%;
    }
    .nav-menu .nav-link:hover { background: var(--bg-section); }
    .nav-menu .nav-link::after { display: none; }
    .login-btn { text-align: center; margin-top: 0.5rem; }

    /* Logo shrink */
    .logo-img { height: 55px; width: auto; }
    .navbar { padding: 0.4rem 0; }

    /* Hero section */
    .hero { padding: 60px 0; min-height: auto; }
    .hero-content h1 { font-size: 2rem; line-height: 1.2; }
    .hero-tagline { font-size: 1.1rem; }

    /* Hero buttons full-width */
    .hero-buttons { flex-direction: column; gap: 15px; }
    .hero-buttons .btn { width: 100%; text-align: center; justify-content: center; }

    /* Stats wrapping */
    .hero-stats { flex-wrap: wrap; gap: 1rem; justify-content: center; }
    .stat-divider { display: none; }

    /* Poster / hero image */
    .hero-logo-wrapper { padding: 24px; }
    .hero-logo-img { max-width: 200px; }

    /* Slideshow / poster images */
    .slideshow-container { width: 100%; max-width: 320px; height: auto; aspect-ratio: 1; margin: 0 auto; }

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

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    .section-header h2 { font-size: 2rem; }
    section { padding: 50px 0; }
    .plans-section, .about-section, .contact-section { padding: 60px 0; }

    .form-row { grid-template-columns: 1fr; }
    .form-container { padding: 20px; width: 95%; }
    .form-actions { flex-direction: column; }
    .form-hero { padding: 60px 0 50px; }
    .form-hero-content h1 { font-size: 2rem; }

    .footer-content { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .footer-links { flex-direction: row; justify-content: center; gap: 20px; }
}

@media (max-width: 480px) {
    .container { width: 100%; padding: 0 12px; }
    .hero-content h1 { font-size: 1.6rem; }
    .section-header h2 { font-size: 1.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .form-container { padding: 16px; width: 100%; }
    .footer-links { flex-direction: column; }
    .stat-divider { display: none; }
    .hero-logo-img { max-width: 160px; }
    .slideshow-container { max-width: 280px; }
    .hero-buttons .btn { padding: 12px 20px; font-size: 0.9rem; }
}

.slideshow-container{
    position:relative;
    width:350px;
    height:350px;
    overflow:hidden;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:contain;
    opacity:0;
    transition:opacity 1s;
}

.slide.active{
    opacity:1;
}