/* Elite Auto Collection - Digital Nomadism Design with Musical Class Names */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Digital Nomadism Color Palette */
    --tempo-primary: #2c3e50;
    --tempo-secondary: #3498db;
    --tempo-accent: #e74c3c;
    --tempo-gold: #f39c12;
    --tempo-dark: #1a252f;
    --tempo-light: #ecf0f1;
    --tempo-white: #ffffff;
    --tempo-gray: #7f8c8d;
    --tempo-success: #27ae60;
    
    /* Adventure/Travel inspired gradients */
    --harmony-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --harmony-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --harmony-gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --harmony-gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    
    /* Typography */
    --beat-font-primary: 'Montserrat', sans-serif;
    --beat-font-secondary: 'Playfair Display', serif;
    
    /* Spacing */
    --chord-spacing-xs: 0.5rem;
    --chord-spacing-sm: 1rem;
    --chord-spacing-md: 1.5rem;
    --chord-spacing-lg: 2rem;
    --chord-spacing-xl: 3rem;
    --chord-spacing-xxl: 4rem;
    
    /* Border Radius */
    --melody-radius-sm: 8px;
    --melody-radius-md: 12px;
    --melody-radius-lg: 16px;
    --melody-radius-xl: 24px;
    
    /* Shadows */
    --rhythm-shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --rhythm-shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --rhythm-shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --rhythm-shadow-travel: 0 10px 40px rgba(52, 152, 219, 0.3);
}

/* Base Typography */
body {
    font-family: var(--beat-font-primary);
    line-height: 1.6;
    color: var(--tempo-dark);
    background: var(--tempo-white);
    overflow-x: hidden;
    padding-top: 80px;
}

/* Container System */
.chord-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px var(--chord-spacing-sm);
}

/* Typography Styles */
.tempo-section-title {
    font-family: var(--beat-font-secondary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--tempo-primary);
    text-align: center;
    margin-bottom: var(--chord-spacing-md);
    position: relative;
}

.tempo-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--harmony-gradient-1);
    border-radius: 2px;
}

.harmony-section-subtitle {
    font-size: 1.1rem;
    color: var(--tempo-gray);
    text-align: center;
    margin-bottom: var(--chord-spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.harmony-block-title {
    font-family: var(--beat-font-secondary);
    font-size: 1.5rem;
    color: var(--tempo-primary);
    margin-bottom: var(--chord-spacing-md);
    display: flex;
    align-items: center;
    gap: var(--chord-spacing-sm);
}

.melody-title-icon {
    color: var(--tempo-secondary);
    font-size: 1.3rem;
}

.tempo-paragraph {
    margin-bottom: var(--chord-spacing-md);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--tempo-dark);
}

/* Section Spacing */
.beat-section,
.tempo-section {
    padding: var(--chord-spacing-xxl) 0;
}

.melody-section-header {
    margin-bottom: var(--chord-spacing-xxl);
}

/* Button Styles */
.harmony-btn-primary,
.harmony-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--chord-spacing-xs);
    padding: var(--chord-spacing-md) var(--chord-spacing-lg);
    border: none;
    border-radius: var(--melody-radius-md);
    font-family: var(--beat-font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--rhythm-shadow-light);
}

.harmony-btn-primary {
    background: var(--harmony-gradient-1);
    color: var(--tempo-white);
}

.harmony-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--rhythm-shadow-travel);
}

.harmony-btn-secondary {
    background: var(--tempo-white);
    color: var(--tempo-primary);
    border: 2px solid var(--tempo-secondary);
}

.harmony-btn-secondary:hover {
    background: var(--tempo-secondary);
    color: var(--tempo-white);
    transform: translateY(-2px);
}

/* Cookie Notice Styles */
.tempo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--chord-spacing-sm);
}

.melody-content {
    background: var(--tempo-white);
    padding: var(--chord-spacing-xl);
    border-radius: var(--melody-radius-lg);
    max-width: 500px;
    text-align: center;
    box-shadow: var(--rhythm-shadow-heavy);
    animation: cookieSlideIn 0.5s ease-out;
}

@keyframes cookieSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.beat-icon {
    font-size: 3rem;
    color: var(--tempo-secondary);
    margin-bottom: var(--chord-spacing-md);
}

.melody-content h3 {
    font-family: var(--beat-font-secondary);
    font-size: 1.5rem;
    color: var(--tempo-primary);
    margin-bottom: var(--chord-spacing-md);
}

.melody-content p {
    margin-bottom: var(--chord-spacing-lg);
    color: var(--tempo-gray);
    line-height: 1.6;
}

.rhythm-buttons {
    display: flex;
    gap: var(--chord-spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.harmony-btn-accept,
.harmony-btn-decline {
    padding: var(--chord-spacing-sm) var(--chord-spacing-lg);
    border: none;
    border-radius: var(--melody-radius-md);
    font-family: var(--beat-font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.harmony-btn-accept {
    background: var(--tempo-success);
    color: var(--tempo-white);
}

.harmony-btn-accept:hover {
    background: #219a52;
    transform: translateY(-1px);
}

.harmony-btn-decline {
    background: var(--tempo-light);
    color: var(--tempo-gray);
    border: 1px solid #bdc3c7;
}

.harmony-btn-decline:hover {
    background: #d5dbdb;
}

/* Header Styles */
.tempo-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--tempo-white);
    box-shadow: var(--rhythm-shadow-light);
    z-index: 1000;
    padding: var(--chord-spacing-sm) 0;
    transition: all 0.3s ease;
}

.melody-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.beat-logo {
    display: flex;
    align-items: center;
    gap: var(--chord-spacing-sm);
    text-decoration: none;
}

.harmony-logo-icon {
    font-size: 2rem;
    color: var(--tempo-secondary);
}

.rhythm-logo-text {
    font-family: var(--beat-font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--tempo-primary);
}

/* Desktop Navigation */
.tempo-nav {
    display: flex;
    gap: var(--chord-spacing-lg);
}

.harmony-nav-link {
    color: var(--tempo-dark);
    text-decoration: none;
    font-weight: 500;
    padding: var(--chord-spacing-xs) var(--chord-spacing-sm);
    border-radius: var(--melody-radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.harmony-nav-link:hover {
    color: var(--tempo-secondary);
    background: rgba(52, 152, 219, 0.1);
}

/* Mobile Menu Styles */
.chord-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--chord-spacing-xs);
}

.melody-hamburger {
    width: 25px;
    height: 3px;
    background: var(--tempo-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.chord-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chord-mobile-overlay.active {
    display: flex;
    opacity: 1;
}

.melody-mobile-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.harmony-close-btn {
    position: absolute;
    top: var(--chord-spacing-lg);
    right: var(--chord-spacing-lg);
    background: none;
    border: none;
    color: var(--tempo-white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.harmony-close-btn:hover {
    color: var(--tempo-secondary);
}

.rhythm-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--chord-spacing-lg);
    text-align: center;
}

.rhythm-mobile-nav a {
    color: var(--tempo-white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    padding: var(--chord-spacing-md);
    border-radius: var(--melody-radius-md);
    transition: all 0.3s ease;
}

.rhythm-mobile-nav a:hover {
    color: var(--tempo-secondary);
    background: rgba(52, 152, 219, 0.2);
}

/* Hero Section */
.tempo-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.chord-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    filter: blur(10px);
}

.beat-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.harmony-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 152, 219, 0.6) 100%);
    z-index: -1;
}

.melody-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--tempo-white);
}

.tempo-hero-title {
    font-family: var(--beat-font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--chord-spacing-lg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.harmony-title-line {
    display: block;
    opacity: 0.9;
}

.beat-title-highlight {
    display: block;
    background: var(--harmony-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: var(--chord-spacing-sm);
}

.chord-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--chord-spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.melody-hero-features {
    display: flex;
    justify-content: center;
    gap: var(--chord-spacing-xl);
    margin-bottom: var(--chord-spacing-xl);
    flex-wrap: wrap;
}

.beat-feature {
    display: flex;
    align-items: center;
    gap: var(--chord-spacing-xs);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.harmony-feature-icon {
    font-size: 1.2rem;
    color: var(--tempo-gold);
}

.rhythm-hero-cta {
    display: flex;
    gap: var(--chord-spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.tempo-cta-btn,
.chord-cta-btn {
    font-size: 1.1rem;
    padding: var(--chord-spacing-md) var(--chord-spacing-xl);
    border-radius: var(--melody-radius-lg);
    min-width: 200px;
}

/* About Section */
.rhythm-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--chord-spacing-xxl);
    align-items: start;
}

.chord-about-text {
    display: flex;
    flex-direction: column;
    gap: var(--chord-spacing-xl);
}

.beat-text-block {
    padding: var(--chord-spacing-lg);
    background: var(--tempo-white);
    border-radius: var(--melody-radius-md);
    box-shadow: var(--rhythm-shadow-light);
    border-left: 4px solid var(--tempo-secondary);
    transition: all 0.3s ease;
}

.beat-text-block:hover {
    box-shadow: var(--rhythm-shadow-medium);
    transform: translateY(-2px);
}

.melody-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--chord-spacing-md);
}

.beat-image-item {
    position: relative;
    border-radius: var(--melody-radius-md);
    overflow: hidden;
    box-shadow: var(--rhythm-shadow-medium);
    transition: all 0.3s ease;
}

.beat-image-item:hover {
    transform: scale(1.02);
    box-shadow: var(--rhythm-shadow-heavy);
}

.harmony-about-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.rhythm-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--tempo-white);
    padding: var(--chord-spacing-lg);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.beat-image-item:hover .rhythm-image-overlay {
    transform: translateY(0);
}

.rhythm-image-overlay h4 {
    font-family: var(--beat-font-secondary);
    font-size: 1.2rem;
    margin-bottom: var(--chord-spacing-xs);
}

.rhythm-image-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Services Section */
.harmony-services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.rhythm-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--chord-spacing-xl);
}

.beat-service-card {
    background: var(--tempo-white);
    padding: var(--chord-spacing-xl);
    border-radius: var(--melody-radius-lg);
    box-shadow: var(--rhythm-shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--tempo-secondary);
}

.beat-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rhythm-shadow-travel);
}

.harmony-service-icon {
    width: 80px;
    height: 80px;
    background: var(--harmony-gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--chord-spacing-lg);
    font-size: 2rem;
    color: var(--tempo-white);
}

.melody-service-title {
    font-family: var(--beat-font-secondary);
    font-size: 1.4rem;
    color: var(--tempo-primary);
    margin-bottom: var(--chord-spacing-md);
}

.chord-service-content {
    text-align: left;
}

/* Collection Section */
.tempo-collection {
    background: var(--tempo-primary);
    color: var(--tempo-white);
}

.tempo-collection .tempo-section-title {
    color: var(--tempo-white);
}

.tempo-collection .harmony-section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}



.tempo-collection .melody-title-icon {
    color: var(--tempo-gold);
}

.tempo-collection .tempo-paragraph {
    color: black;
}

.chord-collection-text {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 50px;
}

/* Reviews Section */
.beat-reviews {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--tempo-white);
}

.beat-reviews .tempo-section-title {
    color: var(--tempo-white);
}

.beat-reviews .harmony-section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.rhythm-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--chord-spacing-xl);
}

.beat-review-card {
    background: var(--tempo-white);
    border-radius: var(--melody-radius-lg);
    overflow: hidden;
    box-shadow: var(--rhythm-shadow-heavy);
    transition: all 0.3s ease;
}

.beat-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.harmony-review-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.melody-review-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.beat-review-card:hover .melody-review-img {
    transform: scale(1.05);
}

.chord-review-content {
    padding: var(--chord-spacing-lg);
}

.tempo-review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--chord-spacing-md);
    color: var(--tempo-gold);
}

.harmony-review-text {
    font-style: italic;
    margin-bottom: var(--chord-spacing-lg);
    line-height: 1.6;
    color: var(--tempo-gray);
    font-size: 1rem;
}

.beat-review-author h4 {
    font-family: var(--beat-font-secondary);
    font-size: 1.1rem;
    color: var(--tempo-primary);
    margin-bottom: 4px;
}

.beat-review-author p {
    color: var(--tempo-gray);
    font-size: 0.9rem;
}

/* Contact Section */
.harmony-contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.rhythm-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--chord-spacing-xxl);
    align-items: start;
}

.chord-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--chord-spacing-xl);
}

.beat-contact-block {
    background: var(--tempo-white);
    padding: var(--chord-spacing-xl);
    border-radius: var(--melody-radius-lg);
    box-shadow: var(--rhythm-shadow-light);
    border-left: 4px solid var(--tempo-secondary);
}

.tempo-contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--chord-spacing-md);
}

.melody-contact-item {
    display: flex;
    align-items: center;
    gap: var(--chord-spacing-sm);
    font-size: 1rem;
}

.melody-contact-item i {
    color: var(--tempo-secondary);
    font-size: 1.1rem;
    width: 20px;
}

.tempo-advantage-list {
    display: flex;
    flex-direction: column;
    gap: var(--chord-spacing-sm);
}

.melody-advantage-item {
    display: flex;
    align-items: center;
    gap: var(--chord-spacing-sm);
    font-size: 1rem;
}

.melody-advantage-item i {
    color: var(--tempo-success);
    font-size: 1.1rem;
}

/* Form Styles */
.beat-form-container {
    background: var(--tempo-white);
    padding: var(--chord-spacing-xl);
    border-radius: var(--melody-radius-lg);
    box-shadow: var(--rhythm-shadow-medium);
}

.harmony-form-title {
    font-family: var(--beat-font-secondary);
    font-size: 1.5rem;
    color: var(--tempo-primary);
    margin-bottom: var(--chord-spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--chord-spacing-sm);
}

.tempo-form-subtitle {
    color: var(--tempo-gray);
    margin-bottom: var(--chord-spacing-xl);
    line-height: 1.6;
}

.melody-contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--chord-spacing-lg);
}

.rhythm-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--chord-spacing-xs);
}

.harmony-form-label {
    font-weight: 600;
    color: var(--tempo-primary);
    display: flex;
    align-items: center;
    gap: var(--chord-spacing-xs);
    font-size: 0.9rem;
}

.harmony-form-label i {
    color: var(--tempo-secondary);
}

.tempo-form-input,
.tempo-form-textarea {
    padding: var(--chord-spacing-md);
    border: 2px solid #e0e0e0;
    border-radius: var(--melody-radius-md);
    font-family: var(--beat-font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--tempo-white);
}

.tempo-form-input:focus,
.tempo-form-textarea:focus {
    outline: none;
    border-color: var(--tempo-secondary);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.tempo-form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--beat-font-primary);
}

.beat-submit-btn {
    background: var(--harmony-gradient-1);
    color: var(--tempo-white);
    border: none;
    padding: var(--chord-spacing-md) var(--chord-spacing-xl);
    border-radius: var(--melody-radius-md);
    font-family: var(--beat-font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--chord-spacing-xs);
    box-shadow: var(--rhythm-shadow-light);
}

.beat-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--rhythm-shadow-travel);
}

/* Footer Styles */
.tempo-footer {
    background: var(--tempo-dark);
    color: var(--tempo-white);
    padding: var(--chord-spacing-xxl) 0 var(--chord-spacing-lg);
}

.rhythm-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--chord-spacing-xl);
    margin-bottom: var(--chord-spacing-xl);
}

.beat-footer-section h4 {
    font-family: var(--beat-font-secondary);
    font-size: 1.2rem;
    margin-bottom: var(--chord-spacing-md);
    color: var(--tempo-white);
}

.harmony-footer-title {
    font-family: var(--beat-font-secondary);
    font-size: 1.2rem;
    margin-bottom: var(--chord-spacing-md);
    color: var(--tempo-white);
}

.harmony-footer-logo {
    display: flex;
    align-items: center;
    gap: var(--chord-spacing-sm);
    margin-bottom: var(--chord-spacing-md);
}

.harmony-footer-logo i {
    font-size: 2rem;
    color: var(--tempo-secondary);
}

.harmony-footer-logo span {
    font-family: var(--beat-font-secondary);
    font-size: 1.3rem;
    font-weight: 600;
}

.tempo-footer-desc {
    margin-bottom: var(--chord-spacing-lg);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.chord-footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--chord-spacing-sm);
}

.melody-footer-item {
    display: flex;
    align-items: center;
    gap: var(--chord-spacing-sm);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.melody-footer-item i {
    color: var(--tempo-secondary);
    width: 16px;
}

.tempo-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--chord-spacing-xs);
}

.tempo-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.tempo-footer-links a:hover {
    color: var(--tempo-secondary);
}

.rhythm-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--chord-spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: var(--chord-spacing-md);
}

.beat-footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.harmony-footer-badges {
    display: flex;
    gap: var(--chord-spacing-md);
    flex-wrap: wrap;
}

.tempo-badge {
    display: flex;
    align-items: center;
    gap: var(--chord-spacing-xs);
    background: rgba(52, 152, 219, 0.2);
    padding: var(--chord-spacing-xs) var(--chord-spacing-sm);
    border-radius: var(--melody-radius-sm);
    font-size: 0.8rem;
    color: var(--tempo-secondary);
    border: 1px solid rgba(52, 152, 219, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Typography scaling */
    .tempo-section-title {
        font-size: 2rem;
    }
    
    .tempo-hero-title {
        font-size: 2.5rem;
    }
    
    .chord-hero-subtitle {
        font-size: 1rem;
    }
    
    /* Container padding */
    .chord-container {
        padding: 20px var(--chord-spacing-md);
    }
    
    /* Header mobile */
    .tempo-nav {
        display: none;
    }
    
    .chord-mobile-toggle {
        display: flex;
    }
    
    /* Hero mobile */
    .melody-hero-features {
        flex-direction: column;
        gap: var(--chord-spacing-md);
    }
    
    .rhythm-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .tempo-cta-btn,
    .chord-cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* About mobile */
    .rhythm-about-content {
        grid-template-columns: 1fr;
        gap: var(--chord-spacing-xl);
    }
    
    /* Services mobile */
    .rhythm-services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Reviews mobile */
    .rhythm-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact mobile */
    .rhythm-contact-content {
        grid-template-columns: 1fr;
        gap: var(--chord-spacing-xl);
    }
    
    /* Footer mobile */
    .rhythm-footer-grid {
        grid-template-columns: 1fr;
        gap: var(--chord-spacing-lg);
        text-align: center;
    }
    
    .rhythm-footer-bottom {
        text-align: center;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    /* Smaller mobile adjustments */
    .tempo-section-title {
        font-size: 1.8rem;
    }
    
    .tempo-hero-title {
        font-size: 2rem;
    }
    
    .beat-text-block,
    .beat-contact-block,
    .beat-form-container {
        padding: var(--chord-spacing-md);
    }
    
    .rhythm-services-grid,
    .rhythm-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .beat-service-card {
        padding: var(--chord-spacing-lg);
    }
    
    .melody-content {
        padding: var(--chord-spacing-lg);
        margin: var(--chord-spacing-sm);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes travelFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.beat-feature {
    animation: travelFloat 3s ease-in-out infinite;
}

.beat-feature:nth-child(2) {
    animation-delay: 0.5s;
}

.beat-feature:nth-child(3) {
    animation-delay: 1s;
}

/* Focus states for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid var(--tempo-secondary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .tempo-header,
    .tempo-footer,
    .tempo-overlay,
    .chord-mobile-overlay {
        display: none !important;
    }
    
    body {
        color: black !important;
        background: white !important;
    }
    
    .tempo-hero {
        height: auto !important;
        min-height: auto !important;
    }
} 