/* 
   Alfa Branding - Styles
   Dark theme with blue accents
*/

/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --dark-bg: #121212;
    --dark-surface: #1e1e1e;
    --dark-card: #252525;
    --primary-blue: #f700ff;
    --primary-blue-light: #ff40bf;
    --primary-blue-dark: #cc00c2;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-tertiary: #707070;
    --border-color: #333333;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.25);
    
    /* Container */
    --container-width: 1200px;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: var(--border-radius-sm);
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-blue-light);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header p {
    max-width: 600px;
    margin: var(--spacing-sm) auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    border: 2px solid var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--text-primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: var(--transition-normal);
    background-image: linear-gradient(280deg, #A206C8 0%, #F70150 100%);
}

header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(18, 18, 18, 0.98);
    box-shadow: var(--shadow-md);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: var(--spacing-md);
}

nav ul li a {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition-normal);
}

nav ul li a:hover {
    color: var(--primary-blue);
}

nav ul li a:hover::after {
    width: 100%;
}

.pricing-footer .btn {
    width: 100%;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

.language-switch {
    margin-left: var(--spacing-md);
}

.btn-language {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    border-radius: var(--border-radius-md);
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-language:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-language i {
    font-size: 1rem;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: calc(var(--spacing-xl) * 1.5) 0 var(--spacing-xl);
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.svg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

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

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.1) 0%, rgba(0, 136, 255, 0) 70%);
    z-index: 1;
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 136, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue-dark);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 136, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.1) 0%, rgba(0, 136, 255, 0) 70%);
    z-index: 1;
    border-radius: 50%;
}

.about-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.about-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.about-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.about-stats {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.stat {
    text-align: center;
    padding: var(--spacing-sm);
    background-color: var(--dark-card);
    border-radius: var(--border-radius-md);
    flex: 1;
    border: 1px solid var(--border-color);
}

.stat h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 0;
}

.stat p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== VIDEO SECTION ===== */
.video {
    background-color: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.video::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.1) 0%, rgba(0, 136, 255, 0) 70%);
    z-index: 1;
    border-radius: 50%;
}

.video-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.video-button {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ===== PRICING SECTION ===== */
.pricing {
    background-color: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.1) 0%, rgba(0, 136, 255, 0) 70%);
    z-index: 1;
    border-radius: 50%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
    gap: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.pricing-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-sm);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-blue);
    z-index: 3;
}

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

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

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-blue);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: var(--border-radius-md);
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: var(--spacing-xs);
}

.price {
    font-family: var(--font-heading);
    margin: var(--spacing-xs) 0;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    position: relative;
    top: 0.5rem;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.price .period {
    font-size: 1rem;
    color: var(--text-tertiary);
}

.pricing-features {
    flex: 1;
    margin-bottom: var(--spacing-sm);
}

.pricing-features ul li {
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-features ul li i {
    margin-right: 0.5rem;
    color: var(--primary-blue);
}

.pricing-features ul li.disabled {
    color: var(--text-tertiary);
    text-decoration: line-through;
}

.pricing-features ul li.disabled i {
    color: var(--text-tertiary);
}

.pricing-footer {
    text-align: center;
    font-size: 0.9rem;
}

.pricing-footer h4 {
    margin: 0.5rem 0;
    color: var(--accent-color);
}

.pricing-footer p {
    margin: 0.3rem 0;
}

.pricing-footer .price {
    margin: 0.5rem 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/quote-bg.svg') no-repeat center center;
    background-size: 300px;
    opacity: 0.03;
    z-index: 1;
}

.testimonials-slider {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    padding: var(--spacing-sm) 0;
    position: relative;
    z-index: 2;
    scrollbar-width: none; /* Firefox */
}

.testimonials-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial {
    min-width: 350px;
    background-color: var(--dark-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    flex: 1;
}

.testimonial-content {
    position: relative;
    padding-top: var(--spacing-sm);
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: var(--primary-blue);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: var(--spacing-md);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: var(--spacing-sm);
    border: 2px solid var(--primary-blue);
}

.author-info h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.1) 0%, rgba(0, 136, 255, 0) 70%);
    z-index: 1;
    border-radius: 50%;
}

.contact-wrapper {
    display: flex;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-right: var(--spacing-sm);
    width: 30px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(0, 136, 255, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===== OWNER SECTION ===== */
.owner {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.owner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.1) 0%, rgba(0, 136, 255, 0) 70%);
    z-index: 1;
    border-radius: 50%;
}

.owner-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.owner-image {
    flex: 1;
    max-width: 30%;
}

.owner-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-blue);
}

.owner-text {
    flex: 1;
}

.owner-text h2 {
    margin-bottom: var(--spacing-md);
}

.owner-text p {
    margin-bottom: var(--spacing-sm);
}

@media (max-width: 768px) {
    .owner-content {
        flex-direction: column;
    }
    
    .owner-image {
        max-width: 100%;
        margin-bottom: var(--spacing-md);
    }
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-bg);
    padding-top: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.05) 0%, rgba(0, 136, 255, 0) 70%);
    z-index: 1;
    border-radius: 50%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.footer-logo {
    flex: 2;
}

.footer-logo img {
    height: 40px;
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    flex: 3;
    display: flex;
    justify-content: space-around;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-bottom {
    padding: var(--spacing-md) 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== PROMO SECTION ===== */
.promo {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.promo::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.1) 0%, rgba(0, 136, 255, 0) 70%);
    z-index: 1;
    border-radius: 50%;
}

.promo-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.promo-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    z-index: 2;
    width: 320px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 136, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue-dark);
}

.promo-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 136, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.promo-icon i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.promo-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.promo-price {
    background-color: rgba(0, 136, 255, 0.1);
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0.5rem 0.8rem;
    border-radius: var(--border-radius-md);
    display: inline-block;
    margin: var(--spacing-sm) 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 136, 255, 0.2);
}

.promo-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.promo-price .original-price {
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 0.5rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 100%;
    }

    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        margin-bottom: var(--spacing-lg);
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: var(--spacing-lg);
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: var(--spacing-md);
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--dark-surface);
        z-index: 1001;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    nav ul li {
        margin-left: 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .testimonials-slider {
        flex-direction: column;
    }
    
    .testimonial {
        min-width: 100%;
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .service-card {
        padding: var(--spacing-sm);
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-item i {
        margin-bottom: var(--spacing-xs);
    }
}
