:root {
    --primary: #E87C3E;
    --primary-dark: #C55A20;
    --primary-light: #FF9F60;
    --secondary: #C9B896;
    --secondary-light: #E0C9A0;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --light: #faf8f5;
    --cream: #f5f0eb;
    --gray: #6c757d;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; }

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

/* Top Bar */
.top-bar {
    background: var(--darker);
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-item {
    margin-right: 24px;
    color: rgba(255,255,255,0.8);
}

.top-bar-item i {
    color: var(--secondary);
    margin-right: 6px;
    font-size: 0.8rem;
}

.top-bar-item a {
    color: rgba(255,255,255,0.8);
    margin-left: 10px;
}

.top-bar-item a:hover { color: var(--secondary); }

/* Navigation */
.main-nav {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    padding: 6px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo {
    height: 55px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.main-nav.scrolled .navbar-logo {
    height: 45px;
}

.brand-icon {
    font-size: 1.8rem;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    font-weight: 500;
}

.nav-link {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--dark) !important;
    padding: 8px 16px !important;
    position: relative;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 32px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px !important;
}

.dropdown-item {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--primary);
    color: #fff;
}

.btn-enroll {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    color: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(232, 124, 62, 0.3);
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 124, 62, 0.4);
    color: #fff;
}

.btn-event-booking {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-event-booking:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 124, 62, 0.3);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 75px;
}

@media (max-width: 767.98px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-tooltip { display: none; }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/234567kjhg.jpeg') center center / cover no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.75) 50%, rgba(26,26,46,0.4) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 160px 0 120px;
}

.hero-badge {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.hero-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 2px;
    background: var(--primary);
}

.hero-title {
    font-size: 4.2rem;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-buttons .btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-right: 16px;
    margin-bottom: 12px;
    transition: all 0.35s ease;
    letter-spacing: 0.5px;
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    color: #fff;
    box-shadow: 0 10px 35px rgba(232, 124, 62, 0.35);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(232, 124, 62, 0.45);
    color: #fff;
}

.btn-outline-hero {
    border: 2px solid rgba(255,255,255,0.25);
    color: #fff;
    background: transparent;
}

.btn-outline-hero:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    transform: translateY(-3px);
}

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

.hero-image {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    border: 4px solid rgba(255,255,255,0.08);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-floating-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-floating-card.card-1 {
    bottom: 30px;
    left: -25px;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-2 {
    top: 50px;
    right: -15px;
    animation: float 3s ease-in-out infinite 1.5s;
}

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

.floating-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.floating-text h5 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--dark);
    font-weight: 600;
}

.floating-text p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
}

/* Section Styles */
.section-padding { padding: 100px 0; }

.section-title {
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
}

/* Offer / What We Offer Section */
.offer-section {
    background: var(--light);
}

.offer-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: transparent;
}

.offer-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
    font-size: 1.6rem;
    transition: all 0.4s ease;
}

.offer-card:hover .offer-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 10px 30px rgba(232, 124, 62, 0.25);
}

.offer-title {
    font-size: 1.25rem;
    margin-bottom: 14px;
    color: var(--dark);
}

.offer-desc {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.offer-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.offer-link:hover {
    color: var(--primary-dark);
    gap: 14px;
}

.offer-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

/* Course Cards */
.course-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.course-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.course-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--secondary);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.course-content {
    padding: 24px;
}

.course-category {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.course-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.course-title a:hover {
    color: var(--primary);
}

.course-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--gray);
}

.course-meta i {
    color: var(--primary);
    margin-right: 4px;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.course-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
}

.course-price .original {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 8px;
}

.btn-course {
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-course:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* About Section */
.about-section {
    background: var(--cream);
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-main-image {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(232, 124, 62, 0.3);
}

.about-experience .years {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1;
}

.about-experience .text {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 4px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.about-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.about-list li i {
    color: var(--secondary);
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Event Section */
.event-section {
    background: linear-gradient(135deg, var(--darker), #1a0f1a);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.event-section .section-title h2,
.event-section .section-title p {
    color: #fff;
}

.event-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.event-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.event-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.event-content {
    padding: 24px;
}

.event-type {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.event-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
}

.event-meta {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.event-meta i {
    color: var(--secondary);
    margin-right: 6px;
    width: 16px;
}

.btn-event {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-event:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* Testimonial Section */
.testimonial-section {
    background: #fff;
}

.testimonial-card {
    background: var(--light);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.testimonial-name {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--gray);
}

.testimonial-rating {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-cta {
    background: #fff;
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    color: var(--primary-dark);
}

/* Features / What You Learn */
.learn-section {
    background: var(--cream);
}

.learn-item {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.learn-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.learn-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.learn-item:hover .learn-icon {
    transform: rotateY(360deg);
}

.learn-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.learn-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Footer */
.footer-section {
    background: var(--darker);
    color: #fff;
}

.footer-top {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--secondary);
    margin-right: 12px;
    margin-top: 4px;
    width: 16px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    color: #fff;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--darker), var(--primary-dark));
    padding: 140px 0 80px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-title {
    font-size: 3rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.page-breadcrumb {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.page-breadcrumb a {
    color: rgba(255,255,255,0.9);
}

.page-breadcrumb a:hover {
    color: var(--secondary);
}

/* Forms */
.form-control, .form-select {
    padding: 14px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(232, 124, 62, 0.1);
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.btn-form-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 124, 62, 0.3);
    color: #fff;
}

/* Contact Info Cards */
.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
    font-size: 1.5rem;
}

.info-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.info-text {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* FAQ */
.accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.accordion-button {
    padding: 24px 30px;
    font-weight: 600;
    color: var(--dark);
    background: #fff;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: #fff;
}

.accordion-button::after {
    filter: invert(0);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 24px 30px;
    background: #fff;
    color: var(--gray);
    line-height: 1.8;
}

/* Alerts */
.alert {
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 0.95rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-title { font-size: 3rem; }
    .section-title h2 { font-size: 2.2rem; }
    .hero-content { padding: 140px 0 60px; }
    .hero-image-wrapper { margin-top: 40px; }
    .about-experience { right: 0; bottom: -20px; }
    .hero-section::before {
        background: linear-gradient(180deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.88) 60%, rgba(26,26,46,0.75) 100%);
    }
}

@media (max-width: 767.98px) {
    .hero-title { font-size: 2.4rem; }
    .section-title h2 { font-size: 1.8rem; }
    .page-title { font-size: 2rem; }
    .cta-content h2 { font-size: 2rem; }
    .hero-content { padding: 120px 0 40px; }
    .hero-buttons .btn { display: block; width: 100%; margin-right: 0; text-align: center; }
    .hero-floating-card { display: none; }
    .hero-image { transform: none; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }
