/* Global Styles */
:root {
    --primary-color: #FF8E53;
    /* Coral Orange */
    --primary-dark: #ff762e;
    --secondary-color: #2EC4B6;
    /* Teal */
    --accent-color: #FFD93D;
    /* Sunny Yellow */
    --text-color: #2D3436;
    --text-light: #636e72;
    --bg-light: #FFFDF9;
    /* Warm Cream */
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);
    --radius: 24px;
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Navigation Bar */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.05rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background-image: url('hero_pets.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 4rem;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 142, 83, 0.4);
    transform: translateY(0);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 142, 83, 0.6);
}

/* Benefits Section */
.benefits {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(118, 75, 162, 0.3);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.25rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.feature-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

.feature-text {
    padding: 2rem;
    text-align: center;
}

.feature-text h3 {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.feature-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Page Headers */
.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    padding: 4rem 2rem;
    background: var(--white);
    flex: 1;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.text-block {
    flex: 1;
}

.text-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contact Form */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #fcfcfc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 142, 83, 0.3);
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 142, 83, 0.5);
}

/* Footer */
.footer {
    background: var(--text-color);
    color: var(--white);
    padding: 4rem 2rem;
    margin-top: auto;
    border-radius: 50px 50px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Map Page Specific Styles */
.map-container-wrapper {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
    flex: 1;
    width: 100%;
}

.map-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    height: calc(100vh - 140px);
    min-height: 600px;
}

.sidebar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-view {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    border: 4px solid var(--white);
}

#map {
    height: 100%;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 16px;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.search-box button {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    margin-bottom: 5px;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: background 0.3s;
}

.search-box button:hover {
    background: #25a99d;
}

.filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filters label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.filters label:hover {
    background: #f8f9fa;
}

.places-list h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

#placesContainer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.place-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #eee;
    border-left: 6px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.place-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.place-card h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.place-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

/* Deals Section */
.deals-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.ad-card {
    display: flex;
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
    max-width: 1000px;
    margin: 0 auto;
}

.ad-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ad-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.2;
}

.ad-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.ad-benefits {
    margin-bottom: 2.5rem;
}

.ad-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
}

.ad-benefits i {
    color: var(--secondary-color);
}

.ad-btn {
    align-self: flex-start;
    background: var(--primary-color);
    text-align: center;
}

.ad-image {
    flex: 1;
    background: #ffeaa7;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ad-image::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
}

.map-view {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    border: 4px solid var(--white);
}

#map {
    height: 100%;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 16px;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.search-box button {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    margin-bottom: 5px;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: background 0.3s;
}

.search-box button:hover {
    background: #25a99d;
}

.filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filters label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.filters label:hover {
    background: #f8f9fa;
}

.places-list h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

#placesContainer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.place-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #eee;
    border-left: 6px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.place-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.place-card h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.place-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

/* Deals Section */
.deals-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.ad-card {
    display: flex;
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
    max-width: 1000px;
    margin: 0 auto;
}

.ad-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ad-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.2;
}

.ad-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.ad-benefits {
    margin-bottom: 2.5rem;
}

.ad-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
}

.ad-benefits i {
    color: var(--secondary-color);
}

.ad-btn {
    align-self: flex-start;
    background: var(--primary-color);
    text-align: center;
}

.ad-image {
    flex: 1;
    background: #ffeaa7;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ad-image::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
}

/* Detailed Ad Styles */
.ad-content.full-width {
    padding: 4rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ad-content h1 {
    font-size: 3.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 800;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 4rem;
    display: inline-block;
    position: relative;
}

.subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.deal-section {
    margin: 4rem auto;
    padding: 3rem;
    border-radius: var(--radius);
    text-align: center;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    max-width: 800px;
}

.problem-section {
    background: #fff5f5;
    border: 2px solid #ffe0e0;
}

.problem-section h3 {
    color: #e17055;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.problem-section h4 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-weight: 500;
}

.warning-list {
    list-style: none;
    margin: 2rem auto;
    text-align: left;
    max-width: 600px;
}

.warning-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.warning-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 2px;
}

.highlight-text {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.2rem;
    margin-top: 2rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.solution-section {
    background: #f0fdfa;
    border: 2px solid #ccfbf1;
}

.solution-section h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.benefits-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: left;
}

.benefit-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.6);
    padding: 1.5rem;
    border-radius: 16px;
}

.benefit-item i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    background: white;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(46, 196, 182, 0.15);
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
}

.ingredients-section {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.ingredients-section h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.ingredients-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.ingredients-list li {
    background: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: var(--text-color);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.ingredients-list li:hover {
    transform: translateY(-2px);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* Pros and Cons Section */
.pros-cons-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
}

.pros-cons-section h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    text-align: left;
}

.pros-column h4,
.cons-column h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros-column h4 {
    color: #27ae60;
}

.pros-column h4 i {
    color: #27ae60;
    font-size: 1.8rem;
}

.cons-column h4 {
    color: #e74c3c;
}

.cons-column h4 i {
    color: #e74c3c;
    font-size: 1.8rem;
}

.pros-list,
.cons-list {
    list-style: none;
    padding: 0;
}

.pros-list li,
.cons-list li {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.pros-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #27ae60;
    font-size: 1.1rem;
}

.cons-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #e74c3c;
    font-size: 1.1rem;
}

.pros-list li strong,
.cons-list li strong {
    color: var(--text-color);
    font-weight: 700;
}

.deal-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 2rem;
    border-radius: var(--radius);
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(255, 142, 83, 0.3);
}

.deal-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIvPjwvc3ZnPg==');
    opacity: 0.3;
}

.deal-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.deal-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    position: relative;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.large-btn {
    font-size: 1.6rem;
    padding: 1.5rem 4rem;
    background: white;
    color: var(--primary-color);
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    font-weight: 800;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 10;
}

.large-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: white;
}

.urgency {
    margin-top: 2rem;
    font-size: 1.1rem !important;
    font-weight: 600;
    opacity: 0.9;
}

/* Responsive Ad */
@media (max-width: 768px) {
    .ad-card {
        flex-direction: column;
    }

    .ad-image {
        height: 200px;
    }

    .ad-content h2 {
        font-size: 1.8rem;
    }

    .ad-content.full-width {
        padding: 2rem;
    }

    .ad-content h1 {
        font-size: 2rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero {
        height: auto;
        padding: 6rem 1rem;
        border-radius: 0 0 30px 30px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .map-layout {
        grid-template-columns: 1fr;
        height: auto;
    }

    .map-view {
        height: 400px;
        order: -1;
    }
}

/* Enhanced Mobile Styles for About and Deals Pages */
@media (max-width: 768px) {
    .ad-content.full-width {
        padding: 1.5rem !important;
        text-align: center;
    }

    .ad-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 2rem;
    }

    .deal-section {
        padding: 1.5rem !important;
        margin: 2rem auto !important;
    }

    .problem-section h3,
    .solution-section h3 {
        font-size: 1.5rem !important;
    }

    .problem-section h4 {
        font-size: 1.1rem !important;
    }

    .warning-list li {
        font-size: 0.95rem !important;
        padding-left: 1.5rem;
    }

    .highlight-text {
        font-size: 1rem !important;
    }

    .benefits-grid-small {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .benefit-item {
        padding: 1rem !important;
    }

    .benefit-item i {
        font-size: 1.5rem !important;
        padding: 0.8rem !important;
    }

    .benefit-item strong {
        font-size: 1rem !important;
    }

    .benefit-item p {
        font-size: 0.9rem !important;
    }

    .deal-cta {
        padding: 3rem 1.5rem !important;
    }

    .deal-cta h3 {
        font-size: 1.8rem !important;
    }

    .deal-cta p {
        font-size: 1.1rem !important;
    }

    .large-btn {
        font-size: 1.2rem !important;
        padding: 1rem 2rem !important;
        width: 100%;
    }

    .urgency {
        font-size: 0.95rem !important;
    }

    .deals-section {
        padding: 2rem 1rem !important;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .pros-cons-section h3 {
        font-size: 1.5rem !important;
    }

    .pros-column h4,
    .cons-column h4 {
        font-size: 1.3rem !important;
    }

    .pros-list li,
    .cons-list li {
        font-size: 0.95rem !important;
    }
}