/* ===================================
   Urban Krav Maga 360 - Urban Tactical Theme
   Color Palette:
   - Deep Olive: #4A5240
   - Warm Khaki: #C4B5A0
   - Burnt Orange: #D97757
   - Charcoal: #454545
   - Cream: #F5F3EF
   =================================== */

/* Import Google Fonts - Rajdhani & Lato */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

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

:root {
    --primary-olive: #4A5240;
    --secondary-khaki: #C4B5A0;
    --accent-orange: #D97757;
    --dark-charcoal: #454545;
    --light-cream: #F5F3EF;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: var(--dark-charcoal);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--dark-charcoal);
    font-weight: 700;
}

.section-title-center {
    font-size: clamp(2rem, 5vw, 2.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: #666;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.highlight {
    color: var(--accent-orange);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}

.btn-primary:hover {
    background-color: #c56647;
    border-color: #c56647;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 87, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-olive);
    border-color: var(--primary-olive);
}

.btn-outline:hover {
    background-color: var(--primary-olive);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo-img {
    height: 90px;
    width: auto;
    display: block;
    transition: var(--transition);
    object-fit: contain;
}

.logo-img:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo-accent {
    color: var(--accent-orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: var(--transition);
}

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

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

.cta-link {
    background-color: var(--accent-orange);
    padding: 8px 20px;
    border-radius: 4px;
}

.cta-link::after {
    display: none;
}

.cta-link:hover {
    background-color: #c56647;
    color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 550px;
    max-height: 900px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-olive) 0%, var(--dark-charcoal) 100%);
    background-image: 
        linear-gradient(135deg, rgba(74, 82, 64, 0.95) 0%, rgba(69, 69, 69, 0.95) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,.03) 10px, rgba(0,0,0,.03) 20px);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 20px 80px;
}

.hero-text {
    max-width: 700px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--light-cream);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.diagonal-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--light-cream);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.diagonal-divider-reverse {
    position: relative;
    width: 100%;
    height: 80px;
    background-color: var(--light-cream);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    margin-top: -1px;
}

/* Features Section */
.features {
    background-color: var(--light-cream);
    padding: 5rem 0 4rem;
}

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

.feature-card {
    background-color: var(--white);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--accent-orange);
}

.feature-title {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.feature-description {
    color: #666;
    font-size: clamp(0.95rem, 2vw, 1rem);
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 5rem 0 4rem;
    background-color: var(--white);
    position: relative;
}

.about-content-single {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
    font-size: clamp(0.95rem, 2vw, 1rem);
}

.about-text-large {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.9;
    font-size: clamp(1.05rem, 2.5vw, 1.15rem);
    font-weight: 400;
}

.about-list {
    list-style: none;
    margin: 2rem 0;
}

.about-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
    font-size: clamp(0.95rem, 2vw, 1rem);
}

.about-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-size: 1.2rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--light-cream);
}

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

.service-card {
    background: linear-gradient(135deg, var(--primary-olive), var(--dark-charcoal));
    padding: 3rem 2rem;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-orange);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 0.1;
}

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

.service-content {
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-description {
    color: var(--light-cream);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: clamp(0.95rem, 2vw, 1rem);
}

.service-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
}

.service-link:hover {
    color: var(--white);
}

/* Testimonials Section - Custom Carousel */
.testimonials {
    padding: 5rem 0 4rem;
    background-color: var(--white);
    position: relative;
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.carousel-container {
    position: relative;
    padding: 0 60px;
    margin-bottom: 2rem;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem 2rem;
    background-color: var(--light-cream);
    border-radius: 8px;
    text-align: center;
    flex-shrink: 0;
}

.stars {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    font-style: italic;
    min-height: 120px;
}

.testimonial-author {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    color: var(--primary-olive);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background-color: var(--primary-olive);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-indicator.active {
    background-color: var(--accent-orange);
    width: 30px;
    border-radius: 5px;
}

.google-link {
    text-align: center;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: var(--light-cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-olive);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--accent-orange);
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    font-family: 'Rajdhani', sans-serif;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--dark-charcoal);
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-olive);
    margin-top: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.price {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
    font-family: 'Rajdhani', sans-serif;
}

.price-text {
    font-size: clamp(1.8rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--primary-olive);
    font-family: 'Rajdhani', sans-serif;
}

.pricing-note {
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    color: #666;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--light-cream);
    position: relative;
    padding-left: 1.8rem;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0 4rem;
    background-color: var(--white);
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 2px solid var(--light-cream);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: var(--light-cream);
    border: none;
    padding: 1.5rem 1.5rem;
    text-align: left;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    color: var(--dark-charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
    gap: 1rem;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-question:hover {
    background-color: var(--secondary-khaki);
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--accent-orange);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 1.5rem 1.5rem;
    color: #555;
    line-height: 1.8;
    font-size: clamp(0.95rem, 2vw, 1rem);
}

.faq-answer ul {
    padding: 0 1.5rem 1.5rem 3rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: #555;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--light-cream);
    text-align: center;
}

.contact .section-title {
    margin-bottom: 1rem;
}

.contact-text {
    margin-bottom: 3rem;
    color: #555;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-text.centered {
    text-align: center;
}

.contact-simple {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent-orange);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.info-content p {
    color: #666;
    line-height: 1.7;
    font-size: clamp(0.95rem, 2vw, 1rem);
}

.info-content a {
    color: var(--accent-orange);
    text-decoration: none;
    word-break: break-word;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--primary-olive);
    text-decoration: underline;
}

.email-link {
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.contact-cta {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

/* Contact Form */
.contact-form-container {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    text-transform: uppercase;
    font-size: clamp(0.8rem, 2vw, 0.85rem);
    letter-spacing: 0.5px;
    font-family: 'Rajdhani', sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--light-cream);
    border-radius: 4px;
    font-size: clamp(0.95rem, 2vw, 1rem);
    font-family: 'Lato', sans-serif;
    transition: var(--transition);
}

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

/* PHP Form Messages */
.my-3 {
    margin: 1.5rem 0;
}

.loading {
    display: none;
    text-align: center;
    padding: 12px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.loading.show {
    display: block;
}

.error-message {
    display: none;
    text-align: center;
    padding: 12px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.error-message.show {
    display: block;
}

.sent-message {
    display: none;
    text-align: center;
    padding: 12px;
    background: #d4edda;
    color: #155724;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.sent-message.show {
    display: block;
}

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

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    display: none;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: var(--light-cream);
    padding: 3rem 0 1.5rem;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.footer-logo p {
    margin-top: 0.5rem;
    color: #999;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--light-cream);
    text-decoration: none;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-orange);
}

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

.footer-bottom p {
    color: #999;
    font-size: clamp(0.8rem, 2vw, 0.85rem);
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .logo-img {
        height: 75px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #1a1a1a;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1rem;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    
    .carousel-container {
        padding: 0 50px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        min-height: auto;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-content {
        padding: 120px 20px 60px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .features {
        padding: 4rem 0 3rem;
    }
    
    .about,
    .services,
    .testimonials,
    .pricing,
    .faq,
    .contact {
        padding: 4rem 0 3rem;
    }
    
    .contact-simple {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .info-item {
        max-width: 400px;
    }
    
    .contact-cta {
        padding: 0 1rem;
    }
    
    .contact-cta .btn {
        width: 100%;
        max-width: 400px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    /* Better touch targets for mobile */
    .btn {
        min-height: 48px;
        padding: 14px 28px;
    }
    
    .faq-question {
        min-height: 60px;
    }
    
    .testimonial-btn {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .logo-img {
        height: 65px;
    }
    
    .footer-logo-img {
        height: 60px;
        max-width: 280px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero-content {
        padding: 110px 16px 50px;
    }
    
    .diagonal-divider,
    .diagonal-divider-reverse {
        height: 60px;
    }
    
    .features,
    .about,
    .services,
    .testimonials,
    .pricing,
    .faq,
    .contact {
        padding: 3rem 0 2rem;
    }
    
    .features-grid,
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card,
    .service-card,
    .pricing-card {
        min-height: auto;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card {
        padding: 2.5rem 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .info-item {
        gap: 1rem;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .faq-question {
        padding: 1.25rem 1rem;
    }
    
    .faq-answer p {
        padding: 1.25rem 1rem;
    }
    
    .faq-answer ul {
        padding: 0 1rem 1.25rem 2.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling behavior */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
