/* Base & Reset */
:root {
    --primary: #ff4b4b;
    --primary-dark: #cc3c3c;
    --secondary: #2c3e50;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.underline {
    height: 4px;
    width: 60px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 75, 75, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 75, 75, 0.4);
    color: var(--white);
}

.btn-primary.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 5%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    transition: var(--transition);
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

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

.nav-links a:not(.btn-primary) {
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 5% 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,75,75,0.1) 0%, rgba(255,75,75,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
    animation: slideUp 0.8s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    letter-spacing: -1px;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.hero-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.glass-card {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,1);
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out 0.6s both;
}

.glass-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.glass-card h3::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: var(--gray);
}

/* Specialties Section */
.specialties-section {
    padding: 6rem 0;
    background: var(--light);
}

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

.card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

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

.card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
}

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

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: var(--white);
}

.consultation-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a252f 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.consultation-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f1c40f;
}

.consultation-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

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

.pricing-card {
    background: var(--light);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
    background: var(--white);
}

.pricing-card.highlight {
    background: var(--white);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow);
    transform: scale(1.02);
}

.pricing-card.highlight:hover {
    transform: scale(1.02) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 400;
}

.subtitle {
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 600;
}

.features, .package-list {
    text-align: left;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

.package-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px dashed var(--light-gray);
}

.package-list li:last-child {
    border-bottom: none;
}

.qty {
    font-weight: 600;
    color: var(--secondary);
}

.pkg-price {
    font-weight: 700;
    font-size: 1.2rem;
}

.save {
    width: 100%;
    font-size: 0.85rem;
    color: var(--primary);
    margin-top: 0.2rem;
    font-weight: 600;
}

.training-includes {
    text-align: center;
    background: var(--light);
    padding: 3rem;
    border-radius: 20px;
}

.training-includes h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tags span {
    background: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.tags span:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.footer-info {
    flex: 1;
    min-width: 300px;
}

.footer-info h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-info p {
    color: var(--gray);
    font-size: 1.1rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    min-width: 300px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-card h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: var(--transition);
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.contact-link:hover {
    background: var(--primary);
    transform: translateX(10px);
}

.contact-link .icon {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding-top: 150px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .glass-card {
        right: 0;
        bottom: -20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1000;
        gap: 3rem;
    }

    .nav-links.active {
        left: 0;
    }
    
    .nav-links li a {
        font-size: 1.5rem;
    }
    
    .pricing-card.highlight {
        transform: none;
    }
    
    .pricing-card.highlight:hover {
        transform: translateY(-10px);
    }
}
