/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFD700;
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

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

a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('images/FixItPhil-Hero.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 1rem;
}

.hero-controls {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 25;
}

.mobile-menu-toggle {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle .bar {
    width: 22px;
    height: 2px;
    background: var(--primary-yellow);
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active {
    transform: rotate(90deg);
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 40;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu {
    position: fixed;
    top: 1rem;
    right: 1rem;
    transform: translateX(120%);
    opacity: 0;
    pointer-events: none;
    width: min(320px, 85%);
    height: calc(100% - 2rem);
    background: rgba(0, 0, 0, 0.9);
    color: var(--primary-white);
    padding: 2rem;
    box-shadow: -10px 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.35s ease, opacity 0.3s ease;
    z-index: 45;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 18px;
}

.mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0.75rem;
}

.mobile-menu-header p {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--primary-white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-list li a {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 600;
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-list li:last-child a {
    border-bottom: none;
}

.mobile-menu-list li a:hover,
.mobile-menu-list li a:focus-visible {
    color: var(--primary-yellow);
}

body.menu-open {
    overflow: hidden;
}

@media (min-width: 969px) {
    .mobile-menu {
        width: 360px;
        height: auto;
        max-height: calc(100vh - 4rem);
        top: 2rem;
        right: 2rem;
    }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    background: var(--primary-black);
    padding: 3rem 3rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-fixit {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 38px;
    text-align: left;
}

.logo-phil {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: -50px;
    margin-bottom: 0;
}

.logo-phil span:first-child {
    font-size: 6.5rem;
    font-weight: 800;
    color: var(--primary-white);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-domain {
    font-size: 2rem;
    color: var(--primary-white);
    writing-mode: vertical-lr;
    text-orientation: mixed;
    margin-left: -25px;
    margin-top: -20px;
}

.phone-number {
    color: var(--primary-white);
    font-size: 2.7em;
    font-weight: 600;
    margin-top: 1rem;
}

.welcome-box {
    background: var(--primary-yellow);
    padding: 3rem;
    color: var(--primary-black);
    max-width: 500px;
    margin-left: auto;
    border: 4px solid var(--primary-black);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-eyebrow {
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.welcome-box h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    line-height:1em;
}

.welcome-box .tagline {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.welcome-box .contact-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
}

.phone-icon {
    font-size: 1.5rem;
}

/* Services Header */
.services-header {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 3rem 2rem;
    text-align: center;
}

.services-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.services-tagline {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Services Grid */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--primary-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 550px;
    display: flex;
    flex-direction: column;
}

.service-card.bottom-card {
    height: 750px;
}

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

.service-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card.bottom-card .service-image {
    height: 325px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

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

.hand-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-yellow);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-content {
    padding: 1.75rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text-dark);
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
    flex-grow: 1;
}

.learn-more-link {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-weight: 700;
    color: var(--primary-white);
    background: var(--primary-black);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.learn-more-link:hover,
.learn-more-link:focus-visible {
    opacity: 0.9;
    transform: translateY(-1px);
}

.service-btn {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
    text-align: center;
    width: 100%;
}

.service-btn:hover {
    background: #FFC700;
    transform: scale(1.02);
    opacity: 1;
}

/* Footer Section */
/* Enquiry Form Section */
.enquiry-form-section {
    background: #f8f8f8;
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.enquiry-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--primary-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.enquiry-form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    text-align: center;
}

.enquiry-form-tagline {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group .required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

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

.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    display: none;
    margin-top: -0.25rem;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

.form-submit-btn {
    background: var(--primary-yellow);
    color: var(--primary-black);
    border: 3px solid var(--primary-black);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    margin-top: 0.5rem;
}

.form-submit-btn:hover {
    background: var(--primary-black);
    color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-success-message {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    text-align: center;
}

.form-success-message p {
    margin: 0;
    font-weight: 600;
}

/* Contact Form Modal */
.contact-form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    overflow-y: auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.contact-form-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--primary-white);
    border-radius: 10px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #eee;
    position: sticky;
    top: 0;
    background: var(--primary-white);
    z-index: 10;
    border-radius: 10px 10px 0 0;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-black);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f0f0f0;
    color: var(--primary-black);
}

.modal-body {
    padding: 2rem;
}

.modal-tagline {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-form-btn {
    background: var(--primary-yellow);
    color: var(--primary-black);
    border: 3px solid var(--primary-black);
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-btn:hover {
    background: var(--primary-black);
    color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-form-btn:active {
    transform: translateY(0);
}

body.modal-open {
    overflow: hidden;
}

.footer-section {
    background: var(--primary-yellow);
    padding: 3rem 2rem;
    color: var(--primary-black);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
}

.footer-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Floating Call Button (Mobile) */
.floating-call-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-call-btn .phone-icon {
    font-size: 1.8rem;
    color: var(--primary-black);
}

/* Service Detail Pages */
body.service-page {
    background: #f4f4f4;
    color: var(--text-dark);
}

.service-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
                var(--hero-image, url('images/FixItPhil-Hero.jpg')) center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.service-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    color: var(--primary-white);
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.service-hero-logo {
    flex: 0 0 150px;
}

.service-hero-logo a {
    display: block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.service-hero-logo a:hover {
    opacity: 0.9;
}

.service-hero-logo img {
    width: 100%;
    height: auto;
    border: 4px solid var(--primary-yellow);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.service-hero-copy {
    flex: 1;
}

.back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--primary-yellow);
    font-weight: 600;
}

.service-label {
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--primary-yellow);
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-hero .service-subheadline {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 2rem;
}

.hero-cta {
    background: var(--primary-yellow);
    padding: 0.85rem 1.5rem;
    border-radius: 4px;
    color: var(--primary-black);
    font-weight: 700;
}

.service-main {
    max-width: 1100px;
    margin: 3rem auto 4rem;
    padding: 0 1.5rem;
}

.service-content-block,
.cta-panel,
.tip-box {
    background: var(--primary-white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.service-content-block h2,
.cta-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-content-block p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.service-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-size: 1.5rem;
    line-height: 1;
}

.tip-box {
    border-left: 6px solid var(--primary-yellow);
}

.tip-box h3 {
    margin-bottom: 0.5rem;
}

.cta-panel {
    text-align: center;
}

.cta-panel p {
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.secondary-link {
    color: var(--text-light);
    text-decoration: underline;
    font-weight: 600;
}

.service-gallery {
    margin: 2rem 0 1rem;
}

.service-gallery h2 {
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo-container {
        justify-content: center;
    }

    .welcome-box {
        margin: 0 auto;
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-logo-img {
        max-width: 150px;
    }

    .service-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .service-hero-logo {
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .logo {
        padding: 2rem 2rem 1.5rem 2rem;
        gap: 0;
    }

    .logo-fixit {
        font-size: 3rem;
        margin-bottom: 0;
    }

    .logo-phil {
        margin-top: -30px;
        margin-bottom: 0;
    }

    .logo-phil span:first-child {
        font-size: 4rem;
    }

    .logo-domain {
        font-size: 1.4rem;
        margin-left: -15px;
        margin-top: -12px;
    }

    .phone-number {
        font-size: 1.4rem;
        margin-top: 0.75rem;
    }

    .welcome-box {
        padding: 2rem 1.5rem;
    }

    .welcome-box h1 {
        font-size: 1.2rem;
    }

    .welcome-box h2 {
        font-size: 2rem;
    }

    .welcome-box .tagline {
        font-size: 1rem;
    }

    .services-header {
        padding: 2rem 1rem;
        margin-top: 3rem;
    }

    .services-header h2 {
        font-size: 1.5rem;
    }

    .services-tagline {
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .service-image {
        height: 200px;
    }

    .service-card.bottom-card .service-image {
        height: 260px;
    }

    .service-card {
        height: 500px;
    }

    .service-card.bottom-card {
        height: 650px;
    }

    .enquiry-form-section {
        padding: 3rem 1rem;
        margin: 2rem 0;
    }

    .enquiry-form-container {
        padding: 2rem 1.5rem;
    }

    .enquiry-form-section h2 {
        font-size: 1.75rem;
    }

    .contact-form-modal {
        padding: 1rem;
    }

    .modal-content {
        max-height: 95vh;
    }

    .modal-header {
        padding: 1rem 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .contact-form-btn {
        bottom: 1rem;
        left: 1rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-section {
        padding: 2rem 1rem;
    }

    .floating-call-btn {
        display: flex;
    }

    .service-hero {
        min-height: 50vh;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .service-hero h1 {
        font-size: 2.2rem;
    }

    .service-hero .service-subheadline {
        font-size: 1rem;
    }

    .service-main {
        margin: 3rem auto 3rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        padding: 1.5rem 1.5rem 1.25rem 1.5rem;
        gap: 0;
    }

    .logo-fixit {
        font-size: 2.5rem;
        margin-bottom: 0;
    }

    .logo-phil {
        margin-top: -20px;
        margin-bottom: 0;
    }

    .logo-phil span:first-child {
        font-size: 3.5rem;
    }

    .logo-domain {
        margin-left: -12px;
        margin-top: -10px;
    }

    .phone-number {
        margin-top: 0.75rem;
    }

    .welcome-box h2 {
        font-size: 1.5rem;
    }

    .cta-phone,
    .footer-phone {
        font-size: 1.2rem;
    }

    .services-header h2 {
        font-size: 1.2rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-hero h1 {
        font-size: 1.8rem;
    }

    .service-hero .service-subheadline {
        font-size: 0.95rem;
    }

    .cta-buttons {
        width: 100%;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .floating-call-btn {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
        page-break-after: always;
    }
}

