/* Global Styles */
:root {
    --primary-color: #3498DB;
    --secondary-color: #F39C12;
    --accent-color: #E74C3C;
    --background-dark: #1a1f2c;
    --text-color: #ffffff;
    --card-bg: #2a3142;
    --neon-blue: #2980B9;
    --neon-orange: #E67E22;
    --gradient-blue: linear-gradient(135deg, #3498DB, #2980B9);
    --gradient-orange: linear-gradient(135deg, #F39C12, #E67E22);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}

body {
    background-color: var(--background-dark);
    color: var(--text-color);
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(243, 156, 18, 0.1) 0%, transparent 50%);
    -webkit-overflow-scrolling: touch;
}

/* Header Styles */
header {
    background-color: rgba(26, 31, 44, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(52, 152, 219, 0.2);
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(26, 31, 44, 0.9), rgba(26, 31, 44, 0.9)),
                url('images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(52, 152, 219, 0.1) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(243, 156, 18, 0.1) 50%, transparent 52%);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(52, 152, 219, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(243, 156, 18, 0.2) 0%, transparent 50%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

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

.glitch-container {
    margin-bottom: 2rem;
}

.glitch {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
    position: relative;
}

.glitch::before,
.glitch::after {
    content: 'Poopah Scoopah';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--secondary-color);
    animation: glitch-1 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 var(--accent-color);
    animation: glitch-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0% { clip-path: inset(20% 0 30% 0); }
    100% { clip-path: inset(10% 0 85% 0); }
}

@keyframes glitch-2 {
    0% { clip-path: inset(80% 0 5% 0); }
    100% { clip-path: inset(40% 0 43% 0); }
}

.futuristic-text {
    font-size: 2rem;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sub-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-blue);
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    display: none;
}

.cta-button:hover {
    background: var(--gradient-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background-color: var(--card-bg);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background: linear-gradient(135deg, #0056b3, #007bff);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-box i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.service-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
}

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

.pricing-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-blue);
    opacity: 0.1;
    z-index: 0;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

.tier-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-orange);
    color: white;
    font-weight: bold;
    border-radius: 50px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.price {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1rem 0;
    position: relative;
    z-index: 1;
}

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

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
}

.pricing-card li {
    margin: 0.5rem 0;
}

.pricing-card i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.pricing-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-blue);
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    position: relative;
    z-index: 1;
}

.pricing-button:hover {
    background: var(--gradient-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* About Section */
.about {
    padding: 4rem 5%;
    background-color: var(--card-bg);
}

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

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #0056b3, #007bff);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.about-cta .cta-button {
    background: var(--gradient-blue);
    color: white !important;
}

.about-cta .cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.benefits {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    position: relative;
    padding-left: 2rem;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefits i {
    color: var(--primary-color);
}

.benefits li::before {
    content: '🐾';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.5;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background-color: var(--background-dark);
}

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

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

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid rgba(52, 152, 219, 0.1);
    color: var(--text-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-blue);
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
}

.submit-button:hover {
    background: var(--gradient-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
    color: white !important;
}

.submit-button::before {
    display: none;
}

.contact-form::before {
    content: '🐕';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--card-bg);
    padding: 3rem 5% 1rem;
    border-top: 1px solid rgba(52, 152, 219, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

.footer-section h4 i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
    animation: bounce 1s infinite;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    color: #3498db !important;
    margin-right: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.social-link:hover {
    color: #2980b9 !important;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

/* Pricing Icons */
.pricing-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 1rem 0;
    animation: wag 1s infinite;
}

@keyframes wag {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .futuristic-text {
        font-size: 1.5rem;
    }

    .nav-logo {
        height: 30px;
    }
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.form-message.error {
    display: block;
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

/* Estimate Section */
.estimate-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.estimate-card {
    background: linear-gradient(135deg, #3498DB, #2980B9);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.estimate-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.estimate-content {
    margin-bottom: 2rem;
}

.estimate-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.estimate-content ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.estimate-content li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.estimate-content li i {
    margin-right: 1rem;
    color: white;
}

.estimate-button {
    display: inline-block;
    background: var(--gradient-blue);
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
}

.estimate-button:hover {
    background-color: transparent;
    color: white;
}

/* Contact Page Styles */
.contact-page {
    padding: 8rem 5% 5rem;
    background-color: var(--background-dark);
    min-height: 100vh;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.contact-page-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

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

.contact-form-container, .contact-info-container {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form-container h2, .contact-info-container h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 8px;
    background-color: rgba(26, 31, 44, 0.5);
    color: var(--text-color);
    transition: all 0.3s ease;
}

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

.business-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hours h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.business-hours ul {
    list-style: none;
    padding: 0;
}

.business-hours li {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.business-hours span {
    font-weight: 500;
    color: var(--primary-color);
}

/* Active Navigation Link */
.nav-links a.active {
    color: var(--primary-color);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .contact-page-container {
        grid-template-columns: 1fr;
    }
    
    .contact-page-header h1 {
        font-size: 2.5rem;
    }
}

.logo-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: block;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-link .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.estimate-table-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, #0056b3, #007bff);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
}

.estimate-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.estimate-intro i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.estimate-intro h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.estimate-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: white;
}

.estimate-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.estimate-table th {
    padding: 1rem;
    text-align: center;
    font-size: 1.2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.estimate-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.estimate-table td:first-child {
    width: 50px;
    text-align: center;
}

.estimate-table i {
    color: #4CAF50;
}

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

.table-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: var(--gradient-blue);
    color: white !important;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.table-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Improve touch targets for iOS */
button,
.button,
.cta-button,
.table-button,
.submit-button,
nav a,
.nav-links a {
    min-height: 44px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Fix iOS scrolling */
body {
    -webkit-overflow-scrolling: touch;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
        position: fixed;
        right: 5%;
        top: 1rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #1a1f2c !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.3s ease-in-out;
    }

    .nav-links a {
        color: white;
        font-size: 1.8rem;
        text-decoration: none;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--primary-color);
        background: none;
    }

    .nav-links a.active {
        color: var(--primary-color);
        background: none;
    }

    body.menu-open {
        overflow: hidden;
    }

    .mobile-menu-button i {
        transition: all 0.3s ease;
    }

    .mobile-menu-button.active i {
        transform: rotate(180deg);
    }
}

/* Ensure mobile menu button is visible */
.mobile-menu-button {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
        position: relative;
        z-index: 1000;
    }

    .mobile-menu-button i {
        transition: all 0.3s ease;
    }

    .mobile-menu-button.active i {
        transform: rotate(180deg);
    }
}

/* Responsive Forms */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 1rem;
    }

    .contact-form {
        width: 100%;
        margin-bottom: 2rem;
    }

    .contact-info {
        width: 100%;
    }

    input,
    textarea,
    button {
        font-size: 16px; /* Prevent iOS zoom on focus */
        padding: 12px;
    }

    .estimate-table-container {
        padding: 1rem;
    }

    .estimate-table {
        font-size: 14px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
}

/* Fix iOS momentum scrolling */
.contact-form,
.estimate-table-container,
.service-grid {
    -webkit-overflow-scrolling: touch;
}

/* Improve form elements on iOS */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border-radius: 5px;
    font-size: 16px;
}

/* Fix button active states for iOS */
button:active,
.button:active,
.cta-button:active,
.table-button:active,
.submit-button:active {
    opacity: 0.8;
    transform: scale(0.98);
}

.hero-logo {
    max-width: 80%;
    height: auto;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 90%;
    }
}

.contact-logo {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

@media (max-width: 768px) {
    .contact-logo {
        width: 120px;
        margin: 0 auto 1rem;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    background: linear-gradient(135deg, #0056b3, #007bff);
    color: white;
    padding: 6rem 5% 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pricing-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.pricing-options {
    padding: 5rem 5%;
    background-color: var(--background-dark);
}

.pricing-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.pricing-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.pricing-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

.pricing-card {
    background: linear-gradient(135deg, #2a3142, #1a1f2c);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #0056b3, #007bff);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #f39c12;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-bottom-left-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    opacity: 0.7;
}

.price-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features i {
    color: #4CAF50;
    margin-right: 1rem;
    font-size: 1.2rem;
}

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

.pricing-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-blue);
    color: white !important;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.benefits-section {
    padding: 4rem 0;
    background-color: var(--card-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.connect-title {
    color: #3498db !important;
    font-size: 1.8rem !important;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.linktree-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.linktree-link:hover {
    text-decoration: underline;
    color: #2980b9;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

/* Remove old styles */
.connect-card,
.connect-card::before,
.connect-card h2,
.connect-card p,
.connect-card .linktree-button,
.connect-card .linktree-button:hover,
.benefit-card .linktree-button,
.benefit-card .linktree-button:hover,
.benefit-card .linktree-button.highlight-red,
.benefit-card .linktree-button.highlight-red:hover {
    all: unset;
    box-sizing: border-box;
}

/* Hide old section */
.linktree-section,
.linktree-card,
.linktree-content {
    display: none;
}

.service-area {
    padding: 8rem 5%;
    background-color: var(--background-dark);
    text-align: center;
}

.service-area-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-area-content p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.service-area-content .map-container {
    margin: 3rem auto;
    max-width: 800px;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.service-area-content .map-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-area-content .image-caption {
    text-align: center;
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 1rem;
}

.service-map {
    margin: 3rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    max-height: 500px;
}

.service-cta {
    margin-top: 2rem;
}

.qr-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #0056b3, #007bff);
    text-align: center;
    color: white;
}

.qr-content {
    max-width: 600px;
    margin: 0 auto;
}

.qr-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.qr-code {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.qr-image {
    width: 200px;
    height: 200px;
}

.qr-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .qr-image {
        width: 150px;
        height: 150px;
    }
}

/* About Section on Pricing Page */
.about-section {
    padding: 5rem 5%;
    background-color: var(--background-dark);
    color: var(--text-color);
}

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

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.about-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-content ul {
    list-style: none;
    margin: 1rem 0 2rem;
    padding-left: 1.5rem;
}

.about-content li {
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 1.1rem;
}

.about-content li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: -1.5rem;
}

/* CTA Section on Pricing Page */
.cta-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #0056b3, #007bff);
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-blue);
    color: white !important;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-content .cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive styles for new sections */
@media (max-width: 768px) {
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .about-content p, .about-content li {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
    }
    
    .cta-content .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Pricing Summary on Home Page */
.pricing-summary {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 2rem 0;
    gap: 2rem;
}

.pricing-summary-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.pricing-summary-item:hover {
    transform: translateY(-5px);
}

.pricing-summary-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-summary-item .price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.pricing-summary-item p:not(.price) {
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .pricing-summary {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-summary-item {
        width: 100%;
    }
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.thank-you-content {
    max-width: 600px;
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Glowing Cell Styles */
.glow-cell {
    position: relative;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glow-cell:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4);
}

.cell-inner {
    position: relative;
    z-index: 2;
}

.cell-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 10s linear infinite;
    z-index: 1;
}

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

.success-icon {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: pulse 2s infinite;
}

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

.thank-you-content h1 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 2.5rem;
}

.thank-you-content p {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .thank-you-content {
        padding: 2rem;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-content p {
        font-size: 1rem;
    }
    
    .glow-cell {
        padding: 1.5rem;
    }
}

/* About Page Styles */
.about-page {
    padding: 8rem 5% 4rem;
    background-color: var(--background-dark);
    min-height: 100vh;
}

.about-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.about-header h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.about-intro {
    margin-bottom: 4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.image-caption {
    text-align: center;
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-page .service-area {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 1px solid rgba(52, 152, 219, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-page .service-area h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.service-area-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-area-content p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.service-area-content ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.service-area-content li {
    background: linear-gradient(135deg, #3498DB, #2980B9);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-page .about-cta {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid rgba(52, 152, 219, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-page .about-cta h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-page .about-cta p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-text {
        font-size: 1.1rem;
    }

    .about-page {
        padding-top: 6rem;
    }
}

/* About Hero Section */
.about-hero {
    min-height: 60vh;
    margin-bottom: 0;
    background: linear-gradient(rgba(26, 31, 44, 0.8), rgba(26, 31, 44, 0.8)),
                url('images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(52, 152, 219, 0.1) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(243, 156, 18, 0.1) 50%, transparent 52%);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

.about-hero .hero-content {
    padding-top: 4rem;
}

.about-hero .glitch {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero .futuristic-text {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.about-hero .sub-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
    }

    .about-hero .glitch {
        font-size: 2.5rem;
    }

    .about-hero .futuristic-text {
        font-size: 1.5rem;
    }

    .about-hero .sub-text {
        font-size: 1rem;
    }
}

.pricing-plans {
    padding: 4rem 0;
    background: var(--background-dark);
}

.pricing-plans .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-plans h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-intro {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.one-time-plan {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.one-time-plan h3 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.one-time-plan .price {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.one-time-plan .description {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.subscription-title {
    text-align: center;
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.subscription-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.plan {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan:hover {
    transform: translateY(-5px);
}

.plan.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.plan.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

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

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

.features li {
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.features li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 4px;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: auto;
}

.cta-button:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .subscription-plans {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .plan.featured {
        transform: scale(1);
    }

    .plan.featured:hover {
        transform: translateY(-5px);
    }
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.plan-header h3 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.plan-header .price {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.plan-header .price span {
    font-size: 1.2rem;
    color: var(--text-color);
}

.plan-header p {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.our-story {
    padding: 6rem 0;
    background: var(--background-dark);
}

.our-story .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    color: var(--text-color);
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    text-align: center;
}

.story-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.story-cta p {
    margin-bottom: 2rem;
}

.story-image {
    position: relative;
}

.owner-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-caption {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-color);
    font-style: italic;
}

@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

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

    .our-story {
        padding: 4rem 0;
    }
}

.linktree-banner {
    padding: 4rem 5%;
    margin-bottom: 2rem;
    background: var(--card-bg);
    text-align: center;
    position: relative;
}

.linktree-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #7b1a1a, #e74c3c);
    opacity: 1;
    z-index: 1;
}

.linktree-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.linktree-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.linktree-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.linktree-button {
    display: inline-block;
    background-color: white;
    color: #e74c3c;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.linktree-button:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .linktree-banner {
        padding: 3rem 1rem;
    }
    
    .linktree-content h2 {
        font-size: 2rem;
    }
    
    .linktree-content p {
        font-size: 1.1rem;
    }
    
    .linktree-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
} 