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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.47059;
    color: #1d1d1f;
    scroll-behavior: smooth;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.022em;
    background: #ffffff;
    padding-top: 0;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10001;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.25);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 2px solid #27ae60;
}

.announcement-bar.hidden {
    transform: translateY(-100%);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 22px;
    gap: 12px;
    position: relative;
}

.announcement-icon {
    font-size: 18px;
    flex-shrink: 0;
    color: #27ae60;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

.announcement-text {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.42857;
    letter-spacing: -0.016em;
    color: #ffffff;
}

.announcement-text strong {
    font-weight: 700;
    color: #27ae60;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.announcement-close {
    position: absolute;
    right: 22px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
    line-height: 1;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Adjust header positioning */
header {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    color: #1d1d1f;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 58px;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: top 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

header.announcement-hidden {
    top: 0;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 22px;
}

header {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    color: #1d1d1f;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 22px;
    height: 44px;
}

.logo img {
    height: 28px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-links a {
    color: #1d1d1f;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.8;
    padding: 8px 12px;
    border-radius: 6px;
    position: relative;
}

.nav-links a:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
}

/* Special styling for We Buy navigation link */
.nav-links a[href="buying.html"] {
    background: linear-gradient(135deg, #34C759, #30D158);
    color: white;
    opacity: 1;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-links a[href="buying.html"]:hover {
    background: linear-gradient(135deg, #30B556, #2BC653);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.3);
}

/* Special styling for Business navigation link */
.nav-links a[href="business.html"] {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    opacity: 1;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-links a[href="business.html"]:hover {
    background: linear-gradient(135deg, #0056CC, #4C44B8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.nav-links a:active {
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.06);
}

.hero {
    background: #000000;
    color: #f5f5f7;
    text-align: center;
    padding: 100px 22px 96px;
    margin-top: 102px;
    transition: margin-top 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero.announcement-hidden {
    margin-top: 44px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.07143;
    font-weight: 600;
    letter-spacing: -0.005em;
    margin-bottom: 6px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: 28px;
    line-height: 1.10722;
    font-weight: 400;
    letter-spacing: 0.004em;
    margin-bottom: 36px;
    color: #a1a1a6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0071e3;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.23536;
    letter-spacing: -0.022em;
    min-width: 28px;
    transition: all 0.3s ease;
    border: none;
}

.cta-button:hover {
    background: #0077ed;
    transform: scale(1.02);
}

.services {
    padding: 96px 0;
    background: #f5f5f7;
}

.services h2 {
    text-align: center;
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -0.003em;
    margin-bottom: 48px;
    color: #1d1d1f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    padding: 40px 28px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 44px;
    margin-bottom: 16px;
    color: #007AFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card h3 {
    color: #1d1d1f;
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: 0.009em;
    margin-bottom: 8px;
}

.about {
    padding: 96px 0;
    background: #ffffff;
}

.about h2 {
    text-align: center;
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -0.003em;
    margin-bottom: 48px;
    color: #1d1d1f;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    text-align: center;
    padding: 40px 28px;
    background: #f5f5f7;
    border-radius: 18px;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
}

.feature:hover {
    transform: translateY(-2px);
    background: #ebebed;
}

.feature h3 {
    color: #1d1d1f;
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: 0.009em;
    margin-bottom: 8px;
}

.contact {
    padding: 96px 0;
    background: #000000;
    color: #f5f5f7;
    position: relative;
    overflow: hidden;
}

.contact h2 {
    text-align: center;
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -0.003em;
    margin-bottom: 12px;
    color: #f5f5f7;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    background: #3498db;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #2980b9;
}

footer {
    background: #f5f5f7;
    color: #86868b;
    text-align: center;
    padding: 48px 0;
    font-size: 12px;
    line-height: 1.33337;
    font-weight: 400;
    letter-spacing: -0.01em;
    border-top: 1px solid #d2d2d7;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

/* Booking Section Styles */
.booking {
    padding: 96px 0;
    background: #000000;
    color: #f5f5f7;
}

.booking h2 {
    text-align: center;
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -0.003em;
    margin-bottom: 6px;
    color: #f5f5f7;
}

.booking-subtitle {
    text-align: center;
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    letter-spacing: 0.011em;
    margin-bottom: 48px;
    color: #a1a1a6;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}


.booking-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(88, 86, 214, 0.05) 100%);
    z-index: -1;
}

.booking-form:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.repair-booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #f5f5f7;
    font-size: 17px;
    line-height: 1.47059;
    letter-spacing: -0.022em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 17px;
    background: rgba(255, 255, 255, 0.05);
    color: #f5f5f7;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: #a1a1a6;
    opacity: 1;
}

.form-group option {
    background: #1d1d1f;
    color: #f5f5f7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007AFF;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.2);
    transform: translateY(-1px);
}

.book-button {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.23536;
    letter-spacing: -0.022em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 24px;
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.25);
    align-self: center;
    min-width: 200px;
}

.book-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 122, 255, 0.35);
    background: linear-gradient(135deg, #0051D5, #48319D);
}

/* Contact Section Enhanced Styles */
.contact-subtitle {
    text-align: center;
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    letter-spacing: 0.011em;
    margin-bottom: 64px;
    color: #a1a1a6;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 48px 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) translateY(-2px);
}

.contact-card h3 {
    color: #f5f5f7;
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: 0.009em;
}

.contact-main {
    font-weight: 600;
    color: #007AFF;
    font-size: 19px;
    line-height: 1.47059;
    letter-spacing: -0.022em;
    margin-bottom: 8px;
}

.contact-sub {
    color: #a1a1a6;
    font-size: 15px;
    line-height: 1.42859;
    letter-spacing: -0.016em;
    margin: 0;
    opacity: 0.8;
}

.map-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e5e5e7;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid #e5e5e7;
}

.map-header .map-icon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
}

.map-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 8px 0;
}

.map-address {
    font-size: 16px;
    font-weight: 600;
    color: #007AFF;
    margin: 0 0 4px 0;
}

.map-description {
    font-size: 14px;
    color: #6e6e73;
    margin: 0;
}

.map-embed {
    padding: 0;
    height: 400px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(88, 86, 214, 0.1) 100%);
    z-index: -1;
}

.map-placeholder:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.map-icon {
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.map-placeholder:hover .map-icon {
    transform: scale(1.05) translateY(-2px);
}

.map-placeholder h3 {
    color: #f5f5f7;
    font-size: 28px;
    line-height: 1.10722;
    font-weight: 600;
    letter-spacing: 0.004em;
    margin-bottom: 16px;
}

.map-placeholder p {
    color: #a1a1a6;
    font-size: 17px;
    line-height: 1.47059;
    letter-spacing: -0.022em;
    margin-bottom: 8px;
}

.map-address {
    font-weight: 600;
    color: #007AFF;
    font-size: 19px;
    margin-top: 24px;
}

.quick-contact {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quick-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(88, 86, 214, 0.05) 100%);
    z-index: -1;
}

.quick-contact:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.quick-contact h3 {
    color: #f5f5f7;
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: 0.009em;
    margin-bottom: 32px;
    text-align: center;
}

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

.quick-contact-form input,
.quick-contact-form textarea {
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 17px;
    background: rgba(255, 255, 255, 0.05);
    color: #f5f5f7;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.quick-contact-form input::placeholder,
.quick-contact-form textarea::placeholder {
    color: #a1a1a6;
    opacity: 1;
}

.quick-contact-form input:focus,
.quick-contact-form textarea:focus {
    outline: none;
    border-color: #007AFF;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.2);
    transform: translateY(-1px);
}

.quick-contact-form button {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.23536;
    letter-spacing: -0.022em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.25);
    margin-top: 8px;
}

.quick-contact-form button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 122, 255, 0.35);
    background: linear-gradient(135deg, #0051D5, #48319D);
}

@media (max-width: 768px) {
    .booking-form {
        padding: 32px 24px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .map-header {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 16px;
    }
    
    .map-header .map-icon {
        width: 64px;
        height: 64px;
    }
    
    .map-info h3 {
        font-size: 20px;
    }
    
    .map-embed {
        height: 300px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 10002;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hide {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.cookie-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.42857;
    color: #1d1d1f;
    letter-spacing: -0.016em;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: -0.016em;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.25);
}

.cookie-btn.accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.35);
    background: linear-gradient(135deg, #0051D5, #48319D);
}

.cookie-btn.decline {
    background: rgba(0, 0, 0, 0.05);
    color: #1d1d1f;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-btn.decline:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-text {
        justify-content: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 16px 0;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-btn {
        padding: 14px 20px;
    }
}

/* Legal Pages Styling */
.legal-page {
    padding-top: 140px;
    padding-bottom: 96px;
    background: #f5f5f7;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 64px;
}

.legal-header h1 {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.07143;
    letter-spacing: -0.005em;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.last-updated {
    font-size: 19px;
    color: #86868b;
    font-weight: 400;
    margin: 0;
}

.subtitle {
    font-size: 17px;
    color: #86868b;
    font-weight: 400;
    margin: 8px 0 0 0;
}

.legal-content {
    background: white;
    border-radius: 18px;
    padding: 64px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    margin-bottom: 48px;
    max-width: none;
}

.legal-content section {
    margin-bottom: 48px;
}

.legal-content section:last-child {
    margin-bottom: 0;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.14286;
    letter-spacing: 0.007em;
    color: #1d1d1f;
    margin-bottom: 24px;
    padding-top: 24px;
    border-top: 1px solid #d2d2d7;
}

.legal-content section:first-child h2 {
    border-top: none;
    padding-top: 0;
}

.legal-content h3 {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.19048;
    letter-spacing: 0.011em;
    color: #1d1d1f;
    margin-bottom: 16px;
    margin-top: 32px;
}

.legal-content h4 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.23536;
    letter-spacing: -0.022em;
    color: #1d1d1f;
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 0;
}

.legal-content li {
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    color: #1d1d1f;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.legal-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007AFF;
    font-weight: 600;
}

.legal-content ol {
    margin-bottom: 16px;
    padding-left: 0;
    counter-reset: step-counter;
}

.legal-content ol li {
    counter-increment: step-counter;
    padding-left: 32px;
}

.legal-content ol li::before {
    content: counter(step-counter) '.';
    position: absolute;
    left: 0;
    color: #007AFF;
    font-weight: 600;
    width: 24px;
}

.contact-info {
    background: #f5f5f7;
    padding: 24px;
    border-radius: 12px;
    margin: 16px 0;
}

.contact-info p {
    margin-bottom: 0;
}

.legal-table {
    background: #f5f5f7;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
}

.table-row {
    display: flex;
    border-bottom: 1px solid #d2d2d7;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:first-child {
    background: #e5e5e7;
}

.table-cell {
    flex: 1;
    padding: 16px 20px;
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    color: #1d1d1f;
}

.table-row:first-child .table-cell {
    font-weight: 600;
}

.compliance-note {
    background: #f5f5f7;
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
    font-style: italic;
}

.back-to-top {
    text-align: center;
    padding: 32px 0;
}

.back-link,
.home-link {
    display: inline-block;
    color: #007AFF;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    padding: 12px 24px;
    margin: 0 8px;
    border-radius: 980px;
    border: 1px solid #007AFF;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.back-link:hover,
.home-link:hover {
    background: #007AFF;
    color: white;
    transform: translateY(-1px);
}

.privacy-link {
    color: #007AFF;
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 22px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #86868b;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007AFF;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-link i {
    font-size: 14px;
}

/* Buying Section */
.buying {
    padding: 96px 0;
    background: #f5f5f7;
}

.buying h2 {
    color: #1d1d1f;
    font-size: 56px;
    line-height: 1.07143;
    font-weight: 600;
    letter-spacing: -0.005em;
    text-align: center;
    margin-bottom: 16px;
}

.buying .section-subtitle {
    text-align: center;
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    letter-spacing: 0.011em;
    margin-bottom: 64px;
    color: #86868b;
}

.buying-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.buying-card {
    background: white;
    padding: 40px 24px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.buying-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.buying-icon {
    font-size: 40px;
    color: #34C759;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.buying-card h3 {
    color: #1d1d1f;
    font-size: 21px;
    line-height: 1.19048;
    font-weight: 600;
    letter-spacing: 0.011em;
    margin-bottom: 8px;
}

.buying-card p {
    color: #86868b;
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
}

.buying-cta {
    text-align: center;
    margin-top: 48px;
}

.buying-highlight {
    font-size: 19px;
    font-weight: 500;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.cta-button.secondary {
    background: #34C759;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.cta-button.secondary:hover {
    background: #30B556;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 199, 89, 0.3);
}

/* Buying Page Graphics */
.buying-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.buying-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(52, 199, 89, 0.02);
    border: 1px solid rgba(52, 199, 89, 0.05);
}

.buying-circle-1 {
    width: 160px;
    height: 160px;
    top: 20%;
    left: 10%;
}

.buying-circle-2 {
    width: 100px;
    height: 100px;
    top: 70%;
    right: 15%;
}

.buying-line {
    position: absolute;
    background: rgba(52, 199, 89, 0.03);
    transform: rotate(-45deg);
}

.buying-line-1 {
    width: 200px;
    height: 1px;
    top: 50%;
    left: 30%;
}

.devices-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.device-accent {
    position: absolute;
    background: rgba(52, 199, 89, 0.02);
    border-radius: 8px;
}

.device-accent-1 {
    width: 120px;
    height: 80px;
    top: 25%;
    left: 5%;
    transform: rotate(15deg);
}

.device-accent-2 {
    width: 80px;
    height: 120px;
    top: 65%;
    right: 8%;
    transform: rotate(-20deg);
}

/* Buying Page Styles */
.buying-hero {
    background: linear-gradient(135deg, #34C759, #30D158);
    color: white;
    text-align: center;
    padding: 140px 22px 96px;
    margin-top: 88px;
    position: relative;
    overflow: hidden;
}

.buying-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.03) 0%, transparent 70%),
        radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.buying-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: 
        linear-gradient(45deg, 
            transparent 40%, 
            rgba(255, 255, 255, 0.015) 50%, 
            transparent 60%
        );
    border-radius: 50%;
    z-index: 1;
}

.buying-hero .container {
    position: relative;
    z-index: 2;
}

/* Professional Grid Pattern for Buying */
.buying-hero .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 45px 45px;
    opacity: 0.4;
    z-index: 1;
}

.buying-hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.07143;
    letter-spacing: -0.005em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.33333;
    font-weight: 400;
    margin-bottom: 48px;
    opacity: 0.9;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.buying-process {
    padding: 96px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.buying-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(52, 199, 89, 0.01) 50%, transparent 100%),
        linear-gradient(180deg, transparent 0%, rgba(52, 199, 89, 0.015) 50%, transparent 100%);
    z-index: 1;
}

.buying-process .container {
    position: relative;
    z-index: 2;
}

.buying-process h2 {
    color: #1d1d1f;
    font-size: 48px;
    line-height: 1.08333;
    font-weight: 600;
    text-align: center;
    margin-bottom: 64px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: #34C759;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.process-step h3 {
    color: #1d1d1f;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.process-step p {
    color: #86868b;
    font-size: 17px;
    line-height: 1.47059;
}

.buying-devices {
    padding: 96px 0;
    background: #f5f5f7;
    position: relative;
    overflow: hidden;
}

.buying-devices::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 20% 30%, rgba(52, 199, 89, 0.02) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 70%, rgba(52, 199, 89, 0.015) 0%, transparent 70%);
    z-index: 1;
}

.buying-devices .container {
    position: relative;
    z-index: 2;
}

.buying-devices h2 {
    color: #1d1d1f;
    font-size: 48px;
    line-height: 1.08333;
    font-weight: 600;
    text-align: center;
    margin-bottom: 64px;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.device-category {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.device-icon {
    font-size: 48px;
    color: #34C759;
    text-align: center;
    margin-bottom: 24px;
}

.device-category h3 {
    color: #1d1d1f;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
}

.device-details h4 {
    color: #1d1d1f;
    font-size: 19px;
    font-weight: 600;
    margin: 24px 0 12px 0;
}

.device-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.device-details li {
    color: #86868b;
    font-size: 16px;
    line-height: 1.5;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.device-details li::before {
    content: "•";
    color: #34C759;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-factors {
    padding: 96px 0;
    background: white;
}

.pricing-factors h2 {
    color: #1d1d1f;
    font-size: 48px;
    line-height: 1.08333;
    font-weight: 600;
    text-align: center;
    margin-bottom: 64px;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.factor-card {
    text-align: center;
    padding: 32px 24px;
    background: #f5f5f7;
    border-radius: 16px;
}

.factor-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.factor-card h3 {
    color: #1d1d1f;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
}

.factor-card p {
    color: #86868b;
    font-size: 16px;
    line-height: 1.5;
}

.why-choose-us {
    padding: 96px 0;
    background: #f5f5f7;
}

.why-choose-us h2 {
    color: #1d1d1f;
    font-size: 48px;
    line-height: 1.08333;
    font-weight: 600;
    text-align: center;
    margin-bottom: 64px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
    font-size: 40px;
    color: #34C759;
    margin-bottom: 20px;
}

.benefit h3 {
    color: #1d1d1f;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit p {
    color: #86868b;
    font-size: 16px;
    line-height: 1.5;
}

.contact-cta {
    padding: 96px 0;
    background: white;
    text-align: center;
}

.contact-cta h2 {
    color: #1d1d1f;
    font-size: 48px;
    line-height: 1.08333;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-cta > p {
    color: #86868b;
    font-size: 21px;
    line-height: 1.381;
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.info-item {
    color: #86868b;
    font-size: 16px;
    text-align: center;
}

.info-item strong {
    color: #1d1d1f;
}

/* Mobile Responsive for Buying Page */
@media (max-width: 768px) {
    .buying-hero {
        padding: 120px 22px 80px;
    }
    
    .buying-hero h1 {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 19px;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile Buying Graphics Adjustments */
    .buying-circle-1 {
        width: 100px;
        height: 100px;
        top: 15%;
        left: 5%;
    }
    
    .buying-circle-2 {
        width: 70px;
        height: 70px;
        top: 75%;
        right: 8%;
    }
    
    .buying-line-1 {
        width: 120px;
        top: 55%;
        left: 20%;
    }
    
    .device-accent-1 {
        width: 80px;
        height: 60px;
        top: 30%;
        left: 3%;
    }
    
    .device-accent-2 {
        width: 60px;
        height: 80px;
        top: 70%;
        right: 5%;
    }
    
    .buying-hero .container::before {
        background-size: 35px 35px;
        opacity: 0.3;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .devices-grid {
        grid-template-columns: 1fr;
    }
    
    .device-category {
        padding: 24px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Booking Page Graphics */
.form-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.graphic-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 122, 255, 0.02);
    border: 1px solid rgba(0, 122, 255, 0.05);
}

.graphic-1 {
    width: 180px;
    height: 180px;
    top: 15%;
    left: 8%;
}

.graphic-2 {
    width: 120px;
    height: 120px;
    top: 65%;
    right: 12%;
}

.graphic-line {
    position: absolute;
    background: rgba(0, 122, 255, 0.03);
    transform: rotate(45deg);
}

.graphic-3 {
    width: 250px;
    height: 1px;
    top: 45%;
    left: 25%;
}

.booking-form-section {
    position: relative;
    overflow: hidden;
}

.booking-container {
    position: relative;
    z-index: 2;
}

/* Booking Page Styles */
.booking-hero {
    background: url('images/book-form.jpeg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 140px 22px 96px;
    margin-top: 102px;
    position: relative;
    overflow: hidden;
}

.booking-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.03) 0%, transparent 70%),
        radial-gradient(ellipse at bottom left, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.booking-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: 
        linear-gradient(45deg, 
            transparent 40%, 
            rgba(255, 255, 255, 0.01) 50%, 
            transparent 60%
        );
    border-radius: 50%;
    z-index: 1;
}

.booking-hero .container {
    position: relative;
    z-index: 2;
}


.booking-hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.07143;
    letter-spacing: -0.005em;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 4px 16px rgba(0, 0, 0, 0.7),
        0 6px 24px rgba(0, 0, 0, 0.4);
    transform: translateZ(0);
}

.booking-hero .hero-subtitle {
    font-size: 24px;
    line-height: 1.33333;
    font-weight: 500;
    margin-bottom: 48px;
    opacity: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    text-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateZ(0);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.booking-hero .feature-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    text-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 3px 8px rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateZ(0);
}

/* Booking Hero Graphics */
.booking-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.booking-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    animation: float 6s ease-in-out infinite;
}

.booking-circle-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.booking-circle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.booking-circle-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

.booking-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: slideLine 8s linear infinite;
}

.booking-line-1 {
    width: 200px;
    height: 2px;
    top: 25%;
    left: -200px;
    animation-delay: 1s;
}

.booking-line-2 {
    width: 150px;
    height: 1px;
    top: 75%;
    right: -150px;
    animation-delay: 5s;
}

.booking-device {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    animation: deviceFloat 5s ease-in-out infinite;
}

.booking-phone {
    width: 60px;
    height: 120px;
    top: 15%;
    right: 20%;
    border-radius: 15px;
    animation-delay: 1s;
}

.device-screen {
    position: absolute;
    top: 8px;
    left: 6px;
    right: 6px;
    bottom: 20px;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    border-radius: 8px;
    opacity: 0.8;
}

.device-crack {
    position: absolute;
    top: 20px;
    left: 15px;
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
}

.device-crack::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 5px;
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(-90deg);
}

.booking-laptop {
    width: 100px;
    height: 70px;
    bottom: 25%;
    left: 15%;
    border-radius: 8px;
    animation-delay: 3s;
}

.laptop-screen {
    position: absolute;
    top: 5px;
    left: 8px;
    right: 8px;
    height: 45px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-radius: 4px;
}

.laptop-keyboard {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    height: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.booking-tools {
    position: absolute;
    bottom: 20%;
    right: 10%;
    animation: toolsRotate 10s linear infinite;
}

.tool {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.tool-screwdriver {
    width: 4px;
    height: 40px;
    transform: rotate(25deg);
}

.tool-screwdriver::after {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.tool-wrench {
    width: 30px;
    height: 6px;
    top: 20px;
    left: -10px;
    transform: rotate(-15deg);
}

.tool-wrench::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

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

@keyframes slideLine {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 200px)); }
}

@keyframes deviceFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes toolsRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 3;
}


.booking-process {
    padding: 96px 0;
    background: #f5f5f7;
    position: relative;
    overflow: hidden;
}

.booking-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(0, 122, 255, 0.01) 50%, transparent 100%),
        linear-gradient(180deg, transparent 0%, rgba(0, 122, 255, 0.015) 50%, transparent 100%);
    z-index: 1;
}

.booking-process .container {
    position: relative;
    z-index: 2;
}

.booking-process h2 {
    color: #1d1d1f;
    font-size: 48px;
    line-height: 1.08333;
    font-weight: 600;
    text-align: center;
    margin-bottom: 64px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.step {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #007AFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

.step h3 {
    color: #1d1d1f;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.step p {
    color: #86868b;
    font-size: 17px;
    line-height: 1.47059;
}

.booking-form-section {
    padding: 96px 0;
    background: white;
}

.booking-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 22px;
}

.booking-form h2 {
    color: #1d1d1f;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
    display: block;
    text-align: left;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

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

.booking-form .form-group.full-width {
    grid-column: 1 / -1;
}

.booking-form .form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
    padding: 16px 20px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: white;
    font-family: inherit;
    color: #2c3e50;
}

.booking-form .form-group input::placeholder,
.booking-form .form-group textarea::placeholder {
    color: #adb5bd;
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus {
    outline: none;
    border-color: #34495e;
    box-shadow: 0 0 0 3px rgba(52, 73, 94, 0.1);
}

.booking-info {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.info-card {
    background: #f5f5f7;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    text-align: center;
}

.info-card.highlight {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
}

.info-card h3 {
    color: #1d1d1f;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card.highlight h3 {
    color: white;
    text-align: center;
    justify-content: center;
}

.info-card p {
    color: #86868b;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.info-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.hour-item span:first-child {
    color: #1d1d1f;
    font-weight: 500;
}

.hour-item span:last-child {
    color: #86868b;
}

.directions-link, .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #007AFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.directions-link:hover, .phone-link:hover {
    color: #0056CC;
}

.same-day-devices {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.device-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.booking-terms {
    margin: 24px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: #86868b;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d1d6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #007AFF;
    border-color: #007AFF;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #007AFF;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.booking-faq {
    padding: 96px 0;
    background: #f5f5f7;
}

.booking-faq h2 {
    color: #1d1d1f;
    font-size: 48px;
    line-height: 1.08333;
    font-weight: 600;
    text-align: center;
    margin-bottom: 64px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    color: #1d1d1f;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-item p {
    color: #86868b;
    font-size: 16px;
    line-height: 1.5;
}

/* Mobile Responsive for Booking Page */
@media (max-width: 768px) {
    .booking-hero {
        padding: 120px 22px 80px;
    }
    
    .booking-hero h1 {
        font-size: 40px;
    }
    
    .booking-hero .hero-subtitle {
        font-size: 19px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile Graphics Adjustments */
    .graphic-1 {
        width: 100px;
        height: 100px;
        top: 10%;
        left: 5%;
    }
    
    .graphic-2 {
        width: 80px;
        height: 80px;
        top: 75%;
        right: 8%;
    }
    
    .graphic-3 {
        width: 150px;
        top: 50%;
        left: 15%;
    }
    
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .booking-container {
        gap: 24px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .faq-item {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .legal-page {
        padding-top: 120px;
    }
    
    .legal-header h1 {
        font-size: 40px;
    }
    
    .legal-content {
        padding: 32px 24px;
        border-radius: 12px;
    }
    
    .legal-content h2 {
        font-size: 24px;
    }
    
    .legal-content h3 {
        font-size: 19px;
    }
    
    .table-row {
        flex-direction: column;
    }
    
    .table-cell {
        border-bottom: 1px solid #d2d2d7;
    }
    
    .table-row:last-child .table-cell:last-child {
        border-bottom: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 32px;
    }
    
    .legal-content {
        padding: 24px 16px;
    }
    
    .back-link,
    .home-link {
        display: block;
        margin: 8px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 20px 80px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .services,
    .about,
    .contact,
    .booking {
        padding: 60px 0;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .booking h2,
    .contact h2 {
        font-size: 2rem;
    }
}

/* Custom Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.popup-overlay.show {
    opacity: 1;
}

.popup-overlay.hide {
    opacity: 0;
}

.custom-popup {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.custom-popup.show {
    transform: scale(1) translateY(0);
}

.custom-popup.success {
    border-color: rgba(52, 199, 89, 0.3);
}

.custom-popup.error {
    border-color: rgba(255, 59, 48, 0.3);
}

.popup-icon {
    font-size: 64px;
    margin-bottom: 24px;
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.popup-title {
    color: #1d1d1f;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.10722;
    letter-spacing: 0.004em;
    margin-bottom: 12px;
}

.popup-message {
    color: #86868b;
    font-size: 17px;
    line-height: 1.47059;
    letter-spacing: -0.022em;
    margin-bottom: 32px;
}

.popup-button {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    border: none;
    border-radius: 980px;
    padding: 12px 32px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 120px;
}

.popup-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.popup-button:active {
    transform: scale(0.98);
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .custom-popup {
        padding: 36px 24px;
        max-width: 340px;
    }
    
    .popup-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }
    
    .popup-title {
        font-size: 24px;
    }
    
    .popup-message {
        font-size: 15px;
    }
}

/* Reviews Section */
.reviews {
    padding: 96px 0;
    background: #ffffff;
}

.reviews h2 {
    text-align: center;
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -0.003em;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.reviews-subtitle {
    text-align: center;
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    letter-spacing: 0.011em;
    margin-bottom: 64px;
    color: #86868b;
}

.reviews-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 64px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
}

.review-card {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(50% - 12px);
    -ms-flex: 0 0 calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
    background: #f5f5f7;
    padding: 32px 28px;
    border-radius: 18px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.04);
    margin-bottom: 24px;
}


.review-card:hover {
    transform: translateY(-2px);
    background: #ebebed;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 16px;
    color: #FFD700;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    color: #5f6368;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.review-text {
    color: #1d1d1f;
    font-size: 17px;
    line-height: 1.47059;
    letter-spacing: -0.022em;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-author strong {
    color: #1d1d1f;
    font-size: 15px;
    font-weight: 600;
}

.review-date {
    color: #86868b;
    font-size: 14px;
}

.reviews-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 32px;
    background: #f5f5f7;
    border-radius: 18px;
}

.refresh-reviews {
    background: linear-gradient(135deg, #34C759, #30D158);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 16px;
    cursor: pointer;
    border: none;
}

.refresh-reviews:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(52, 199, 89, 0.3);
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-number {
    font-size: 48px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1;
}

.rating-info p {
    color: #86868b;
    font-size: 15px;
    margin-top: 4px;
}

.stars-large {
    display: flex;
    gap: 3px;
}

.stars-large .star {
    font-size: 20px;
}

.view-all-reviews {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 980px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.view-all-reviews:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-summary {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .overall-rating {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .rating-number {
        font-size: 40px;
    }
    
    .view-all-reviews {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 24px 20px;
    }
    
    .review-text {
        font-size: 15px;
    }
    
    .reviews h2 {
        font-size: 36px;
    }
    
    .reviews-subtitle {
        font-size: 18px;
    }
}

/* Map Alternative Styles */
.map-button-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.map-button {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #f5f5f7;
}

.map-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.map-button.secondary {
    opacity: 0.8;
}

.map-button-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.map-button-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.map-button-text strong {
    color: #f5f5f7;
    font-size: 15px;
    font-weight: 600;
}

.map-button-text span {
    color: #a1a1a6;
    font-size: 13px;
}

@media (max-width: 768px) {
    .announcement-content {
        padding: 0 16px;
    }
    
    .announcement-text {
        font-size: 13px;
    }
    
    .announcement-close {
        right: 16px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        padding: 10px 0;
    }
    
    .announcement-text {
        font-size: 12px;
    }
    
    .announcement-close {
        font-size: 16px;
        padding: 2px 6px;
    }
    
    .map-button {
        padding: 12px 16px;
    }
    
    .map-button-icon {
        font-size: 20px;
    }
    
    .map-button-text strong {
        font-size: 14px;
    }
    
    .map-button-text span {
        font-size: 12px;
    }
}

/* Repair Counter in Hero Section */
.hero .counter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 32px auto 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.counter-content {
    text-align: left;
    flex: 1;
}

.counter-number {
    font-size: 32px;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1;
    margin-bottom: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

.counter-label {
    font-size: 14px;
    font-weight: 500;
    color: #6e6e73;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.counter-badge {
    background: #1d1d1f;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    min-width: 60px;
}

.counter-badge span {
    display: block;
    line-height: 1;
}

.counter-badge small {
    font-size: 11px;
    opacity: 0.7;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero .counter-card {
        padding: 14px 20px;
        margin: 24px 16px 0 16px;
        max-width: none;
    }
    
    .counter-number {
        font-size: 24px;
    }
    
    .counter-label {
        font-size: 12px;
    }
    
    .counter-badge {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 50px;
    }
    
    .counter-badge small {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .hero .counter-card {
        padding: 12px 16px;
        margin: 20px 16px 0 16px;
    }
    
    .counter-number {
        font-size: 20px;
    }
    
    .counter-label {
        font-size: 11px;
    }
}

/* Business Enquiry Section */
.business-enquiry {
    background: linear-gradient(135deg, #1d1d1f, #2d2d2f);
    color: white;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.business-enquiry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 122, 255, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 70%, rgba(88, 86, 214, 0.05) 0%, transparent 70%),
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.01) 50%, transparent 60%);
    z-index: 1;
}

.business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.business-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.business-enquiry h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08333;
    margin-bottom: 16px;
    color: white;
}

.business-subtitle {
    font-size: 20px;
    line-height: 1.4;
    color: #a1a1a6;
    margin-bottom: 48px;
}

.business-benefits {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
}

.benefit-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 15px;
    color: #a1a1a6;
    line-height: 1.4;
}

.business-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: #a1a1a6;
}

.business-enquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

.business-enquiry-form .form-group.full-width {
    grid-column: 1 / -1;
}

.business-enquiry-form label {
    font-size: 14px;
    font-weight: 500;
    color: #f5f5f7;
    margin-bottom: 8px;
}


.business-submit-btn {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.3);
}

.business-submit-btn:hover {
    background: linear-gradient(135deg, #0051D0, #4C46CC);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .business-enquiry {
        padding: 64px 0;
    }
    
    .business-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .business-enquiry h2 {
        font-size: 36px;
    }
    
    .business-subtitle {
        font-size: 18px;
    }
    
    .business-benefits {
        gap: 24px;
    }
    
    .benefit-item {
        gap: 16px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .business-form {
        padding: 24px;
    }
    
    .business-enquiry-form .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Enhanced Primary CTA Button */
.cta-button.primary-cta {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button.primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button.primary-cta:hover::before {
    left: 100%;
}

.cta-button.primary-cta:hover {
    background: linear-gradient(135deg, #FF8C42, #FFB84D);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button.primary-cta:active {
    transform: translateY(-1px) scale(1.02);
}

.cta-button.primary-cta i {
    font-size: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.floating-book-button {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    animation: floatIn 0.8s ease-out 2s forwards;
}


@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.floating-btn:hover::before {
    width: 300px;
    height: 300px;
}

.floating-btn:hover {
    background: linear-gradient(135deg, #0051D0, #4C46CC);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.6);
}

.floating-btn i {
    font-size: 18px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    animation: floatIn 0.8s ease-out 1.5s forwards;
}

/* Call Floating Button */
.floating-call {
    opacity: 0;
    transform: translateY(50px);
    animation: floatIn 0.8s ease-out 1.8s forwards;
}

.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #007AFF;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.call-btn:hover {
    background: #0051D0;
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.6);
}

.call-tooltip {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: #1d1d1f;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.call-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1d1d1f;
}

.call-btn:hover .call-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* WhatsApp Floating Button */
.floating-whatsapp {
    opacity: 0;
    transform: translateY(50px);
    animation: floatIn 0.8s ease-out 2.1s forwards;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.whatsapp-btn:hover {
    background: #1DA851;
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: #1d1d1f;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1d1d1f;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 75px;
}

/* Contact Actions */
.contact-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.contact-btn {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.contact-btn.primary {
    background: #007AFF;
    color: white;
}

.contact-btn.primary:hover {
    background: #0056CC;
    transform: translateY(-1px);
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn.whatsapp:hover {
    background: #1DA851;
    transform: translateY(-1px);
}

/* Reviews Actions */
.reviews-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4285F4;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.write-review-btn:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }
}

/* Mobile Responsive for Floating Buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
        flex-direction: row;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .floating-btn span {
        display: none;
    }
    
    .floating-btn {
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
        padding: 0;
    }
    
    .floating-btn i {
        font-size: 24px;
        margin: 0;
    }
    
    .whatsapp-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .contact-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .reviews-actions {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .cta-button.primary-cta {
        padding: 18px 32px;
        font-size: 16px;
    }
    
    .floating-btn {
        width: 56px;
        height: 56px;
    }
    
    .floating-btn i {
        font-size: 22px;
    }
    
    .whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
}

/* Business Page Specific Styles */
.business-hero {
    background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.business-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.business-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(52, 73, 94, 0.8);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.business-hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
    opacity: 0.85;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ecf0f1;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(236, 240, 241, 0.1);
    padding: 14px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.hero-whatsapp {
    margin-top: 32px;
    text-align: center;
}

.hero-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #25D366;
}

.hero-whatsapp-btn:hover {
    background: #1DA851;
    border-color: #1DA851;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.hero-whatsapp-btn i {
    font-size: 20px;
}

.business-comparison {
    padding: 80px 0;
    background: #ecf0f1;
}

.business-comparison h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50;
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

.metric-column {
    padding: 24px 30px;
    border-right: 1px solid #e9ecef;
}

.metric-column h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.us-column, .them-column {
    padding: 24px 30px;
}

.us-column {
    border-right: 1px solid #e9ecef;
}

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

.provider-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.provider-header.us h3 {
    color: #27ae60;
}

.provider-header.them h3 {
    color: #e74c3c;
}

.rating {
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.provider-header.us .rating {
    background: #27ae60;
    color: white;
}

.provider-header.them .rating {
    background: #e74c3c;
    color: white;
}

.table-body {
    background: white;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.2s ease;
}

.comparison-row:hover {
    background: #f8f9fa;
}

.comparison-row:last-child {
    border-bottom: none;
}

.metric {
    padding: 24px 30px;
    border-right: 1px solid #f1f3f4;
}

.metric h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.metric p {
    font-size: 14px;
    color: #5a6c7d;
    margin: 0;
    line-height: 1.4;
}

.us-value, .them-value {
    padding: 24px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.us-value {
    border-right: 1px solid #f1f3f4;
}

.value {
    font-size: 16px;
    font-weight: 700;
    display: block;
}

.value.good {
    color: #27ae60;
}

.value.poor {
    color: #e74c3c;
}

.status {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.us-value .status {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.them-value .status {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.comparison-summary {
    margin-top: 40px;
    text-align: center;
}

.summary-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat .number {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    line-height: 1;
    margin-bottom: 8px;
}

.stat .label {
    font-size: 14px;
    font-weight: 600;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.business-services {
    padding: 80px 0;
    background: #ffffff;
}

.business-services h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: #dee2e6;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #34495e, #2c3e50);
    border-radius: 8px;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-item p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.service-item ul {
    list-style: none;
    text-align: left;
}

.service-item li {
    font-size: 14px;
    color: #5a6c7d;
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
    font-weight: 500;
}

.service-item li::before {
    content: '▪';
    color: #34495e;
    font-weight: 700;
    position: absolute;
    left: 0;
    font-size: 16px;
}

.business-form-section {
    padding: 80px 0;
    background: #ecf0f1;
    position: relative;
}

.business-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.business-circle {
    position: absolute;
    background: rgba(52, 73, 94, 0.03);
    border: 1px solid rgba(52, 73, 94, 0.08);
}

.business-circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
}

.business-circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
}

.business-line {
    position: absolute;
    background: rgba(52, 73, 94, 0.05);
    height: 1px;
}

.business-line-1 {
    width: 300px;
    top: 30%;
    left: 20%;
    transform: rotate(15deg);
}

.business-form-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-header p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.5;
}

.business-enquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

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

.business-enquiry-form .form-group.full-width {
    grid-column: 1 / -1;
}

.business-enquiry-form label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.business-enquiry-form input,
.business-enquiry-form select,
.business-enquiry-form textarea {
    padding: 16px 20px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: white;
    font-family: inherit;
    color: #2c3e50;
}

.business-enquiry-form input::placeholder,
.business-enquiry-form textarea::placeholder {
    color: #adb5bd;
}

.business-enquiry-form input:focus,
.business-enquiry-form select:focus,
.business-enquiry-form textarea:focus {
    outline: none;
    border-color: #34495e;
    box-shadow: 0 0 0 3px rgba(52, 73, 94, 0.1);
}

.business-submit-btn {
    width: 100%;
    background: linear-gradient(180deg, #34495e, #2c3e50);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.business-submit-btn:hover {
    background: linear-gradient(180deg, #2c3e50, #34495e);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 73, 94, 0.3);
}

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.5;
}

.business-cta {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.business-cta h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.business-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: #34495e;
    color: white;
    border: 2px solid #34495e;
}

.cta-button.secondary {
    background: #34495e;
    color: white;
    border: 2px solid #34495e;
}

.cta-button:hover {
    transform: translateY(-1px);
    background: #2c3e50;
    border-color: #2c3e50;
}

.cta-button.primary:hover {
    background: #2c3e50;
    border-color: #2c3e50;
}

.cta-button.secondary:hover {
    background: #2c3e50;
    border-color: #2c3e50;
}

.business-contact {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

.business-contact p {
    margin-bottom: 8px;
}

/* Mobile Responsive for Business Page */
@media (max-width: 768px) {
    .business-hero {
        padding: 100px 0 60px;
    }
    
    .business-hero h1 {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .business-comparison h2,
    .business-services h2,
    .business-cta h2 {
        font-size: 36px;
    }
    
    .comparison-table {
        margin: 0 20px;
    }
    
    .table-header {
        grid-template-columns: 1fr;
    }
    
    .us-column, .them-column {
        display: none;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        border-bottom: 2px solid #e9ecef;
        padding: 0;
    }
    
    .metric {
        border-right: none;
        padding: 20px;
        text-align: center;
        background: #f8f9fa;
    }
    
    .us-value, .them-value {
        padding: 16px 20px;
        border-right: none;
    }
    
    .us-value {
        background: rgba(39, 174, 96, 0.05);
        position: relative;
    }
    
    .us-value::before {
        content: "Jack's Repairs";
        position: absolute;
        top: 8px;
        left: 20px;
        font-size: 12px;
        font-weight: 700;
        color: #27ae60;
        text-transform: uppercase;
    }
    
    .them-value {
        background: rgba(231, 76, 60, 0.05);
        position: relative;
    }
    
    .them-value::before {
        content: "Corporate IT";
        position: absolute;
        top: 8px;
        left: 20px;
        font-size: 12px;
        font-weight: 700;
        color: #e74c3c;
        text-transform: uppercase;
    }
    
    .summary-stats {
        gap: 40px;
        flex-direction: column;
        align-items: center;
    }
    
    .stat .number {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-item {
        padding: 30px 24px;
    }
    
    .business-form-container {
        padding: 40px 24px;
        margin: 0 20px;
    }
    
    .form-header h2 {
        font-size: 28px;
    }
    
    .form-header p {
        font-size: 16px;
    }
    
    .business-enquiry-form .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .business-cta h2 {
        font-size: 32px;
    }
    
    .business-cta p {
        font-size: 18px;
    }
}