/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 16px;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
}

h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

h3 {
    font-size: 2rem;
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Buttons */
.btn-primary {
    background: #2563eb;
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #2563eb;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    padding: 18px 36px;
    border: 2px solid #2563eb;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-list a:hover, .nav-list a.cta-btn {
    color: #2563eb;
}

.nav-list a.cta-btn {
    background: #2563eb;
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.nav-list a.cta-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #ffffff;
    padding: 10rem 0 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    max-width: 100%;
    margin-top: 0;
    vertical-align: top;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.hero-title .highlight {
    color: #2563eb;
    position: relative;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-cta {
    margin-bottom: 2rem;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.reviews {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
}

.stars {
    color: #fbbf24;
    font-size: 1.3rem;
    font-weight: bold;
}

.reviews span {
    color: #4a4a4a;
    font-size: 1rem;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 8rem 0;
    background: #f8fafc;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
    color: #6b7280;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.02);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-card li {
    padding: 0.5rem 0;
    color: #4a4a4a;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.services-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    margin-top: 4rem;
}

.services-cta h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-cta p {
    margin-bottom: 2rem;
    color: #6b7280;
}

/* Competitive Advantage Section */
.competitive-section {
    padding: 8rem 0;
    background: #f8fafc;
}

.competitive-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.competitive-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.competitive-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.competitive-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.highlight-yellow {
    background: #fef08a;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    color: #1a1a1a;
}

.competitive-image {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-top: 0;
    vertical-align: top;
}

.overlay-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fbbf24;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 280px;
}

.card-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.revenue-chart {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.chart-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 60px;
    margin-bottom: 10px;
}

.bar {
    background: #10b981;
    width: 15px;
    border-radius: 2px 2px 0 0;
    transition: all 0.3s ease;
}

.google-ads-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
}

.google-ads-logo span {
    color: #2563eb;
    font-weight: 700;
}

.rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    align-self: center;
}

.rating-badge .stars {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rating-badge span {
    font-size: 0.9rem;
    color: #4a4a4a;
    font-weight: 500;
}

/* Responsive Design for Competitive Section */
@media (max-width: 768px) {
    .competitive-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .competitive-title {
        font-size: 2.5rem;
    }
    
    .overlay-card {
        position: static;
        margin: 20px auto 0;
        max-width: 100%;
    }
    
    .rating-badge {
        align-self: center;
    }
}

/* Problem Section */
.problem-section {
    padding: 8rem 0;
    background: white;
}

.problem-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-size: 3rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.problem-card {
    text-align: center;
    padding: 2rem;
}

.problem-card h3 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.problem-card p {
    color: #6b7280;
}

.cta-section {
    text-align: center;
    padding: 4rem 0;
}

.cta-section p {
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: #6b7280;
}

/* Guarantee Section */
.guarantee-section {
    padding: 8rem 0;
    background: #f8fafc;
}

.guarantee-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.guarantee-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
    color: #6b7280;
}

.guarantee-box {
    background: #dbeafe;
    border: 2px solid #2563eb;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
}

.guarantee-box h3 {
    color: #1d4ed8;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.guarantee-box p {
    color: #1e3a8a;
    font-size: 1.125rem;
    margin: 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.why-item h4 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.why-item p {
    color: #6b7280;
    margin: 0;
}

/* Case Studies */
.case-studies {
    padding: 8rem 0;
    background: white;
}

.case-studies h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.case-study-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #e5e7eb;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.case-study-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    margin: 0;
    font-size: 1.25rem;
}

.case-study-card p {
    padding: 0 1.5rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.case-study-stats {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    gap: 1rem;
}

.stat {
    background: #f3f4f6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
}

.portfolio-cta h3 {
    margin-bottom: 2rem;
    color: #1a1a1a;
}

/* Results Section */
.results-section {
    padding: 8rem 0;
    background: #f8fafc;
}

.results-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.result-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.result-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.result-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.result-badge {
    background: #2563eb;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.result-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.result-details {
    padding: 1.5rem;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.before, .after {
    text-align: center;
}

.label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.value {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
}

.arrow {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: bold;
}

.growth {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #10b981;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.metric-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.ranking-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-text {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Testimonials */
.testimonial-section {
    padding: 8rem 0;
    background: white;
}

.testimonial-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-section .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
    color: #6b7280;
}

.testimonial-section .testimonial:first-of-type {
    max-width: 600px;
    margin: 0 auto 4rem;
    background: #dbeafe;
    border: 2px solid #2563eb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.testimonial {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.testimonial-content .stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial blockquote {
    font-style: italic;
    margin: 0 0 1.5rem 0;
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #1a1a1a;
}

.testimonial-section .cta-section {
    text-align: center;
    padding: 4rem 0;
}

/* Blog Section */
.blog-section {
    padding: 8rem 0;
    background: #f8fafc;
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #e5e7eb;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blog-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #9ca3af;
}

.blog-cta {
    text-align: center;
    margin-top: 4rem;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    background: #f8fafc;
    display: none;
}

.faq-answer p {
    margin: 0;
    color: #6b7280;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem auto 2rem;
    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.footer-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.footer-cta .btn-primary {
    margin-bottom: 2rem;
}

.footer-cta .reviews {
    justify-content: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    margin-bottom: 2rem;
    display: inline-flex;
}

.footer-cta .reviews span {
    color: #1a1a1a;
    font-weight: 600;
}

.footer-cta .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-cta .social-links a {
    font-size: 1.5rem;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-height: 50vh;
        width: 100%;
        object-fit: cover;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 8rem 0 6rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero-content {
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        max-width: 100%;
    }
    
    .contact-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: #ffffff;
    padding: 10rem 0 6rem;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-hero-content .highlight {
    color: #2563eb;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-hero-content .hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.contact-hero-content .reviews {
    justify-content: center;
    margin-top: 2rem;
}

.contact-form-section {
    padding: 8rem 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-info > p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-icon {
    background: #dbeafe;
    color: #2563eb;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.feature-text p {
    color: #6b7280;
    margin: 0;
    font-size: 1rem;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.contact-form h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400 !important;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin: 0;
}

.contact-form .btn-primary {
    width: 100%;
    margin: 2rem 0 1rem;
    padding: 16px;
    font-size: 1.125rem;
}

.form-disclaimer {
    font-size: 0.875rem;
    color: #374151;
    text-align: center;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.form-disclaimer strong {
    color: #2563eb;
    font-weight: 700;
}

.contact-methods {
    padding: 6rem 0;
    background: white;
}

.contact-methods h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1a1a1a;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.method-card {
    background: #f8fafc;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.method-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.method-card p {
    font-size: 1rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.method-card span {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Contact page responsive styles */
@media (max-width: 768px) {
    .contact-hero {
        padding: 8rem 0 4rem;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .method-card {
        padding: 2rem 1.5rem;
    }
}
