/*
Theme Name: LindaWP
Theme URI: https://wpastra.com/
Description: A child theme of the Astra WordPress theme
Author: Child LindaWP
Author URI: https://yourwebsite.com
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
*/

/* Custom styles for the WordPress Support site */
:root {
    --primary: #3b5998;
    --primary-light: #5b86e5;
    --primary-dark: #2a4073;
    --secondary: #2A2A2A;
    --dark: #ffffff;
    --light: #2A2A2A;
    --gray: #b0b0b0;
    --light-gray: #333333;
    --gold: #d4af37;
    --bg-dark: #000000;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Basic reset and typography */
body:not(.wp-admin) {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-light);
    background-color: #000000;
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
}

/* Site Wrapper for Boxed Layout */
.site-wrapper, .header-wrapper, .footer-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #1a1a1a;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    box-sizing: border-box;
}

/* Apply section pattern to site wrapper */
.site-wrapper {
    position: relative;
}

.site-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* WordPress specific adjustments */
body:not(.wp-admin) .entry-content,
body:not(.wp-admin) .ast-container {
    padding: 0 15px !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Fix for page titles hidden behind navigation */
.page .entry-header,
.single .entry-header {
    padding-top: 60px !important;
    margin-bottom: 30px !important;
    padding-left: 15px !important;
}

.page .site-content,
.single .site-content {
    padding-top: 0 !important;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

/* Override Astra header with custom navigation */
.site-header {
    display: none !important;
}

/* H-Tags */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-light)!important;
}

/* Custom Navigation */
nav {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
}

.header-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color:var(--bg-dark);
    padding: 0;
}

/* Fix for WordPress admin bar */
body.admin-bar nav {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar nav {
        top: 46px;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    width: 100%;
    position: relative;
    margin: 0;
}

.logo {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-secondary);
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    padding-right: 0;
    margin-right: 0;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

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

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

.nav-menu a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    background-color: transparent;
    position: relative;
    overflow: hidden;
    padding-top:100px;
}

/* Apply section pattern to hero */
.hero.section-pattern {
    background-color: transparent;
    color: var(--text-light);
    position: relative;
    overflow: visible;
}

.hero .section-wrapper {
    position: relative;
}

.hero .section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.hero .section-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 50px;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero-content h1 {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.2;
    font-family: var(--font-secondary);
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 600px;
    letter-spacing: -0.01em;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 10;
    padding-left: 0;
    margin-left: 0;
}

.custom-logo-link, .astra-logo-svg {
    display: block;
    position: relative;
    line-height: 0;
    max-width: none;
}

.custom-logo-link img, .astra-logo-svg {
    max-height: 50px;
    width: auto;
    display: block;
    margin: 0;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--text-lightlight);
}

/* Services Section */
.services {
    background-color: transparent;
}

/* Apply section pattern to services */
.services.section-pattern {
    background-color: transparent;
    color: var(--text-light);
    position: relative;
    overflow: visible;
}

.services .section-wrapper {
    position: relative;
}

.services .section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.services .section-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: -0.01em;
    font-family: var(--font-secondary);
    padding-top: 20px;
}

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

.section-title p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(91, 134, 229, 0.03);
    transition: height 0.4s ease;
    z-index: -1;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(91, 134, 229, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid rgba(91, 134, 229, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon::after {
    opacity: 1;
    transform: scale(1.1);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    color: var(--accent);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    font-family: var(--font-secondary);
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 60px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 12px;
    padding: 5px 0;
}

/* Contact Section */
.contact {
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

/* Apply section pattern to contact */
.contact.section-pattern {
    background-color: transparent;
    color: var(--text-light);
    position: relative;
    overflow: visible;
}

.contact .section-wrapper {
    position: relative;
}

.contact .section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.contact .section-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    z-index: 1;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    color: var(--text-light);
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--text-light);
    opacity: 0.8;
}

.contact-details p {
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-details i {
    margin-right: 8px;
    color: var(--primary);
}

.contact-form {
    flex: 1;
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}

/* Contact Form 7 Styling */
.wpcf7-form .form-group,
.wpcf7-form p {
    margin-bottom: 18px;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
}

.wpcf7-form .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.wpcf7-form .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.wpcf7-form .wpcf7-textarea {
    resize: vertical;
    min-height: 100px;
}

.wpcf7-form .wpcf7-submit {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.wpcf7-form .wpcf7-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Reusable Section Pattern */
.section-pattern {
    background-color: transparent;
    color: var(--text-light);
    position: relative;
    overflow: visible;
}

.section-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #1a1a1a;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.section-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    z-index: 1;
}

.section-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    padding-top: 30px;
}

.section-title-accent {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    color: white;
}

.section-title-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: var(--gold);
}

/* Footer - overriding Astra footer */
.site-footer {
    display: none !important;
}

/* Custom Footer */
footer.custom-footer {
    background-color: transparent;
    color: var(--text-light);
    padding: 60px 0 20px;
    position: relative;
    overflow: visible;
}

.footer-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #1a1a1a;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

/* Apply section pattern to footer wrapper */
.footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.footer-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    z-index: 1;
}

/* Remove any remaining background images from the footer itself */


.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    padding-top: 30px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 5px;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-logo:hover {
    color: white;
    text-decoration: none;
}

.footer-about p {
    margin-bottom: 15px;
    opacity: 0.8;
    font-size: 14px;
}

.footer-links h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--font-secondary);
    letter-spacing: -0.01em;
}

.footer-links h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    color: white;
}

.footer-links h3::after,
.section-title-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links ul {
    list-style: none;
    padding-left: 18px;
    margin-left: 0;
}

.footer-links li {
    margin-bottom: 6px;
    position: relative;
    display: block;
    width: 100%;
}

.footer-links li::before {
    content: '\2192';
    color: var(--gold);
    position: absolute;
    left: -18px;
    top: 4px;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-5px);
    pointer-events: none;
}

.footer-links li:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
    padding: 4px 0;
    position: relative;
    cursor: pointer;
    z-index: 5;
    width: 100%;
}

.footer-links a:hover {
    color: white;
    text-decoration: none;
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-links a:hover::before {
    transform: scale(1);
}

.social-links a:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.3);
}

.copyright {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #d1d5db;
}

/* Skip to content - accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 10px;
    z-index: 999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-container, .contact-container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
        padding-top: 40px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        flex-direction: column;
    }
    
    .nav-menu {
        margin-top: 15px;
    }
    
    .nav-menu li {
        margin-left: 12px;
        margin-right: 12px;
    }
    
    /* Change order of contact form and info on mobile */
    .contact-container {
        display: flex;
        flex-direction: column;
    }
    
    .contact-form {
        order: 1;
        margin-bottom: 40px;
    }
    
    .contact-info {
        order: 2;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .price {
        font-size: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
}
