/* ===================================
   ASTRON ENERGY FRANCHISEE WEBSITE
   Based on brand colors: Orange/Red and Purple
   Modern, responsive design
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* ===== CSS CUSTOM PROPERTIES (VARIABLES) ===== */
:root {
    /* Astron Energy Brand Colors */
    --astron-orange: #FF6B35;
    --astron-red: #E53935;
    --astron-purple: #6B2C91;
    --astron-dark-purple: #4A148C;
    
    /* Supporting Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #000000;
    
    /* Purple Variations */
    --purple-light: #e1bee7;
    --purple-100: #ce93d8;
    --purple-200: #ba68c8;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--astron-orange) 0%, var(--astron-red) 100%);
    --secondary-gradient: linear-gradient(135deg, var(--astron-purple) 0%, var(--astron-dark-purple) 100%);
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Container */
    --max-width: 1200px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
    color: var(--dark-gray);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: var(--space-sm);
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

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

ul {
    list-style: none;
}

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

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--dark-gray);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.btn-secondary:hover {
    background: var(--astron-purple);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--astron-purple);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar {
    padding: 12px 0;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-shrink: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: var(--space-xs) var(--space-sm);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--astron-orange);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--astron-orange);
    background: rgba(255, 255, 255, 0.15);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-search {
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: var(--space-xs);
}

.nav-search:hover {
    color: var(--astron-orange);
}



.nav-contact-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-contact-btn:hover {
    background: var(--white);
    color: var(--astron-purple);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding-top: 100px;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--dark-gray);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-heavy);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--dark-gray);
}

.features {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.feature i {
    font-size: 1.5rem;
    color: var(--astron-orange);
    margin-top: 4px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.feature h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--dark-gray);
}

.feature p {
    color: var(--gray);
}

.about-stats {
    background: var(--light-gray);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    display: grid;
    gap: var(--space-lg);
}

.stat {
    text-align: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid #e9ecef;
}

.stat:last-child {
    border-bottom: none;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--astron-purple);
    margin-bottom: var(--space-xs);
}

.stat p {
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--space-2xl) 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.service-card .service-content {
    padding: var(--space-xl);
    position: relative;
    z-index: 2;
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-bg-image {
    transform: scale(1.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto var(--space-md);
    position: relative;
    z-index: 3;
    box-shadow: var(--shadow-medium);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.service-card:nth-child(even) .service-icon {
    background: var(--secondary-gradient);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--dark-gray);
}

.service-card p {
    margin-bottom: var(--space-md);
    text-align: left;
}

.service-card ul {
    text-align: left;
}

.service-card ul li {
    padding: var(--space-xs) 0;
    color: var(--gray);
    position: relative;
    padding-left: var(--space-md);
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--astron-orange);
    font-weight: bold;
}

/* ===== FRANCHISE SECTION ===== */
.franchise {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.franchise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.franchise-benefits h3,
.investment-info h3 {
    font-size: 2rem;
    margin-bottom: var(--space-xl);
    color: var(--dark-gray);
}

.benefit-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    align-items: flex-start;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--astron-orange);
    margin-top: 4px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--dark-gray);
}

.investment-card {
    background: var(--light-gray);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
}

.investment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid #dee2e6;
}

.investment-item:last-child {
    border-bottom: none;
}

.investment-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0;
    color: var(--dark-gray);
}

.investment-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--astron-orange);
    margin: 0;
}

.investment-item small {
    color: var(--gray);
    font-size: 0.875rem;
}

.franchise-requirements {
    margin-bottom: var(--space-xl);
}

.franchise-requirements h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--dark-gray);
}

.franchise-requirements ul li {
    padding: var(--space-xs) 0;
    color: var(--gray);
    position: relative;
    padding-left: var(--space-md);
}

.franchise-requirements ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--astron-orange);
    font-weight: bold;
}

/* ===== LOCATION SECTION ===== */
.location {
    padding: var(--space-2xl) 0;
    background: var(--light-gray);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.location-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
}

.location-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-xl);
    color: var(--dark-gray);
}

.location-details {
    display: grid;
    gap: var(--space-xl);
}

.location-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.location-item i {
    font-size: 1.25rem;
    color: var(--astron-orange);
    margin-top: 4px;
    flex-shrink: 0;
}

.location-item h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    color: var(--dark-gray);
}

.location-item p {
    margin: 0;
    color: var(--gray);
}

.map-placeholder {
    background: var(--white);
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 2px dashed #dee2e6;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--astron-orange);
    margin-bottom: var(--space-md);
}

.map-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--space-xs);
}

.map-placeholder small {
    color: var(--gray);
}

/* ===== OFFERS SECTION ===== */
.offers {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.offers-content {
    display: grid;
    gap: var(--space-2xl);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.offer-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--astron-purple);
}

.offer-card.featured {
    border: 2px solid var(--astron-purple);
    background: linear-gradient(135deg, #ffffff 0%, #f8f4ff 100%);
}

.offer-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--secondary-gradient);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.875rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: var(--shadow-light);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.offer-icon i {
    font-size: 2rem;
    color: var(--white);
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--dark-gray);
}

.offer-details {
    margin-bottom: var(--space-md);
}

.discount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--astron-purple);
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 4px rgba(123, 31, 162, 0.2);
}

.offer-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}

.old-price {
    font-size: 1.25rem;
    color: var(--gray);
    text-decoration: line-through;
}

.new-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--astron-red);
}

.offer-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    color: var(--astron-purple);
    font-weight: 600;
    margin: var(--space-md) 0;
}

.offer-benefits {
    text-align: left;
    margin: var(--space-md) 0;
}

.offer-benefits li {
    padding: var(--space-xs) 0;
    color: var(--gray);
    position: relative;
    padding-left: var(--space-md);
}

.offer-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--astron-purple);
    font-weight: bold;
}

.loyalty-program {
    background: var(--light-gray);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
}

.loyalty-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.loyalty-info h3 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--astron-purple);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.loyalty-info h3 i {
    color: #ffd700;
}

.loyalty-tiers {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.tier {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
}

.tier-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.tier-badge.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #b8860b 100%);
}

.tier-badge.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
}

.tier-badge.gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
}

.tier-info h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    color: var(--dark-gray);
}

.tier-info p {
    margin: 0;
    color: var(--gray);
    font-size: 0.875rem;
}

.loyalty-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-xl);
    color: var(--dark-gray);
}

.contact-methods {
    margin-bottom: var(--space-xl);
}

.contact-method {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    align-items: flex-start;
}

.contact-method i {
    font-size: 1.25rem;
    color: var(--astron-orange);
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-method h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    color: var(--dark-gray);
}

.contact-method p {
    margin: 0;
    color: var(--gray);
}

.social-links h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: var(--dark-gray);
}

.social-icons {
    display: flex;
    gap: var(--space-md);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== FORMS ===== */
.form {
    display: grid;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

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

.form-group label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--astron-purple);
    box-shadow: 0 0 0 3px rgba(123, 31, 162, 0.1);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    position: relative;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--astron-orange);
}

.footer-description {
    color: #adb5bd;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    gap: var(--space-sm);
}

.footer-links a {
    color: #adb5bd;
    transition: all 0.3s ease;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: #adb5bd;
    margin-bottom: var(--space-sm);
}

.footer-contact i {
    color: var(--astron-orange);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: var(--space-md);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #adb5bd;
}

.footer-link {
    color: #adb5bd;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--astron-orange);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablets */
@media (max-width: 1024px) {
    :root {
        --space-2xl: 3rem;
        --space-xl: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero-container,
    .about-grid,
    .franchise-content,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .loyalty-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

/* Tablets */
@media (max-width: 768px) {
    :root {
        --space-xl: 2rem;
        --space-2xl: 2.5rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--astron-purple);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: var(--space-xl) 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .loyalty-tiers {
        gap: var(--space-md);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --space-md: 1rem;
        --space-lg: 1.5rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
    }
    
    .nav-actions {
        flex-direction: column;
        gap: var(--space-md);
        align-items: stretch;
    }
    
    .nav-contact-btn {
        text-align: center;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .nav-container {
        padding: 0 var(--space-sm);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-container {
        padding: 0 var(--space-sm);
    }
    
    .service-card,
    .location-card,
    .investment-card {
        padding: var(--space-md);
    }
    
    .about-stats {
        padding: var(--space-md);
    }
    
    .stat {
        padding: var(--space-sm) 0;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
}

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

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .header,
    .footer,
    .nav-toggle,
    .hero-buttons,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}