/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2c3e50;
    --accent-color: #e67e22;
    --dark-bg: rgba(22, 30, 46, 0.95);
    --text-color: #333;
    --light-text: #fff;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.fonts-loaded {
    opacity: 1;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Montserrat Regular'), local('Montserrat-Regular'),
         url('https://fonts.gstatic.com/s/montserrat/v15/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Playfair Display Regular'), local('PlayfairDisplay-Regular'),
         url('https://fonts.gstatic.com/s/playfairdisplay/v22/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvXDXbtXK-F2qC0s.woff2') format('woff2');
}

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

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Hero Section */
.hero {
    background-image: url('images/edmond-epoxy-flooring-oklahoma-city-okc-hero.webp');
    background-size: cover;
    background-position: center 65%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--light-text);
    text-align: center;
    padding: 160px 2rem 100px;
    position: relative;
    margin-top: 0;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.75);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-cta-container {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
}

.cta-button {
    font-family: var(--font-primary);
    padding: 18px 36px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
    min-width: 280px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 1rem;
}

.phone-cta {
    background-color: #2c3e50;
    color: var(--light-text);
    gap: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.phone-cta::before {
    content: "📞";
    font-size: 1.2em;
    display: flex;
    align-items: center;
}

.contact-cta {
    background-color: #e67e22;
    color: var(--light-text);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    background-image: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1));
}

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

/* Header and Navigation */
header {
    background-color: var(--dark-bg);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    opacity: 0.9;
}

nav a:hover {
    opacity: 1;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

/* Hero Sections */
.about-hero, .contact-hero {
    background-color: #3498db;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.about-hero h1, .contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 3rem;
}

/* Intro Section */
.intro {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    margin: 2rem auto;
    animation: fadeIn 1s ease-out;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-section, .process-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.intro-section:hover, .process-section:hover {
    transform: translateY(-5px);
}

.intro-section h2, .process-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.intro-section h2::after, .process-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #3498db;
}

.intro-section p, .process-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Services Section */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: scaleIn 0.5s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s;
}

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

/* Benefits Section */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    position: relative;
    padding: 1rem 1rem 1rem 2.5rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: #3498db;
    font-weight: bold;
}

.benefits-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* FAQ Section */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 2rem;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #2c3e50;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #f8f9fa;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Contact Form */
.contact-form {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    margin: 2rem auto;
    animation: fadeIn 1s ease-out;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 2.2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.cta-button {
    width: 100%;
    background-color: #3498db;
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

@media (max-width: 768px) {
    .form-container {
        padding: 2rem;
    }
    
    .form-container h2 {
        font-size: 1.8rem;
    }
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 3rem 2rem 1.5rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.footer-brand p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.footer-contact {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-areas {
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer-areas h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.footer-areas ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.footer-areas a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-brand {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-contact {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    main {
        padding: 1.5rem;
    }
    
    .hero h1 {
        font-size: 4.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 140px 1.5rem 80px;
        border-radius: 0 0 20px 20px;
    }

    .hero-content {
        padding: 2.5rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .about-content {
        padding-top: 2rem;
    }

    .hero-cta-container {
        flex-direction: column;
        gap: 16px;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
        height: 56px;
        padding: 16px 28px;
        font-size: 0.95rem;
    }

    nav ul {
        gap: 2rem;
    }

    nav a {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
    
    .intro-section, .process-section {
        padding: 1.5rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .benefits-list li {
        padding: 0.8rem 0.8rem 0.8rem 2.2rem;
        font-size: 0.95rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .form-container h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
        padding: 120px 1rem 60px;
        border-radius: 0 0 15px 15px;
    }

    .hero-content {
        padding: 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .about-content {
        padding-top: 1.5rem;
    }

    .info-content h2 {
        font-size: 1.8rem;
    }

    .info-content h3 {
        font-size: 1.6rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
    
    .intro-section h2, 
    .process-section h2,
    .services h2,
    .benefits h2,
    .faq h2 {
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .benefits-list li {
        padding: 0.7rem 0.7rem 0.7rem 2rem;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-toggle {
        font-size: 1.3rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
    
    .cta-button {
        font-size: 0.9rem;
        padding: 14px 24px;
    }
    
    nav ul {
        gap: 1.5rem;
    }
    
    nav a {
        font-size: 0.9rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .service-card:hover,
    .benefits-list li:hover,
    .faq-item:hover {
        transform: none;
    }
    
    .cta-button:hover {
        transform: none;
    }
    
    .service-card:active,
    .benefits-list li:active,
    .faq-item:active {
        transform: scale(0.98);
    }
    
    .cta-button:active {
        transform: scale(0.98);
    }
}

/* Print Styles */
@media print {
    header,
    .hero,
    .cta-button,
    footer {
        display: none;
    }
    
    body {
        color: #000;
    }
    
    a {
        text-decoration: none;
    }
    
    .service-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .service-image {
        max-height: 200px;
    }
}

/* Contact page hero adjustments */
.contact-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/edmond-epoxy-marble-flooring.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 2rem 3rem;
    position: relative;
    animation: fadeIn 1s ease-out;
    margin-top: 2rem;
    height: 60vh;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.8s ease-out;
}

/* Quote process section */
.quote-process {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    margin: 2rem auto;
    border-radius: 12px;
}

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

.quote-process h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
}

.quote-process p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        padding: 4rem 1rem 2rem;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .quote-process {
        padding: 3rem 1rem;
    }
    
    .quote-process h2 {
        font-size: 1.8rem;
    }
    
    .quote-process p {
        font-size: 1rem;
    }
}

/* About Page Styles */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 3rem;
}

.about-section {
    margin-bottom: 4rem;
    animation: fadeIn 1s ease-out;
}

.about-section h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #3498db;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Process List Styles */
.process-list {
    max-width: 800px;
    margin: 0 auto;
}

.process-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-item:hover {
    transform: translateX(5px);
}

.process-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.process-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    padding-left: 0;
}

@media (max-width: 768px) {
    .process-item {
        padding: 1.5rem;
    }
    
    .process-item h3 {
        font-size: 1.2rem;
    }
    
    .process-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .process-item {
        padding: 1.2rem;
    }
    
    .process-item h3 {
        font-size: 1.1rem;
    }
    
    .process-item p {
        font-size: 0.95rem;
    }
}

/* Remove old process grid styles */
.process-grid,
.process-step {
    display: none;
}

/* CTA Links */
.cta-link {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin: 1.5rem 0;
    transition: all 0.3s;
    text-align: center;
}

.cta-link:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.cta-container {
    text-align: center;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .cta-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cta-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Exit Popup Styles */
.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    position: relative;
    text-align: center;
    animation: scaleIn 0.3s ease-out;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

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

.popup-content p {
    margin-bottom: 1.5rem;
    color: #666;
}

.popup-content input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Map Section */
.map-section {
    padding: 4rem 2rem;
    background: #f9f9f9;
    margin-top: 2rem;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Phone Number in Header */
.phone-number a {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-number a:hover {
    color: #2980b9;
}

@media (max-width: 768px) {
    .phone-number {
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .map-section {
        padding: 3rem 1rem;
    }
    
    .popup-content {
        padding: 1.5rem;
    }
}

.hero-cta-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
}

.cta-button {
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 250px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.phone-cta {
    background-color: #4CAF50;
    color: white;
    font-size: 1.2em;
    gap: 8px;
}

.phone-cta::before {
    content: "📞";
    font-size: 1.2em;
    display: flex;
    align-items: center;
}

.contact-cta {
    background-color: #2196F3;
    color: white;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .hero-cta-container {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        height: 52px;
        padding: 14px 24px;
    }
}

/* Epoxy Info Section */
.epoxy-info {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.info-content h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.info-content h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
    font-weight: 500;
}

.info-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

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

.benefits-grid li {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefits-grid li:hover {
    transform: translateY(-5px);
}

.benefits-grid strong {
    display: block;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.services-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.service-item h4 {
    font-family: var(--font-display);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

@media (max-width: 1024px) {
    .info-content h2 {
        font-size: 2.4rem;
    }

    .info-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .epoxy-info {
        padding: 3rem 1.5rem;
    }

    .info-content h2 {
        font-size: 2rem;
    }

    .info-content h3 {
        font-size: 1.8rem;
    }

    .benefits-grid,
    .services-detail {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .info-content h2 {
        font-size: 1.8rem;
    }

    .info-content h3 {
        font-size: 1.6rem;
    }
}

/* About Page Styles */
.about-hero {
    background-image: url('images/edmond-epoxy-marble-flooring.webp');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.about-section h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.process-item h3 {
    font-family: var(--font-display);
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .about-section h2 {
        font-size: 2.2rem;
    }

    .process-item h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .process-item h3 {
        font-size: 1.4rem;
    }
} 