/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background-color: #1a3a52;
    color: white;
    padding: 0.75rem 1rem;
    z-index: 2000;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
    background-color: #1a3a52;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff8c00;
}

.logo-image {
    height: 50px;
    width: auto;
    border-radius: 0;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff8c00;
}

.phone-nav {
    font-weight: bold;
    color: #ff8c00;
    white-space: nowrap;
    text-decoration: none;
}

.phone-nav:hover {
    color: #ffd27f;
}

.contrast-toggle {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: white;
    border-radius: 6px;
    padding: 0.4rem 0.7rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    margin-left: 0.75rem;
}

.contrast-toggle:hover {
    border-color: #ff8c00;
    color: #ff8c00;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: white;
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5a7b 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5a7b 100%);
    color: white;
    padding: 3rem 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: #ff8c00;
}

.hero-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: white;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-mascot {
    text-align: center;
    position: relative;
}

.mascot-hero {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 188, 212, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mascot-hero:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 188, 212, 0.5);
}

.mascot-badge {
    background: rgba(255, 140, 0, 0.9);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background-color: #ff8c00;
    color: white;
}

.btn-primary:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 140, 0, 0.3);
}

.btn-secondary {
    background-color: #1a3a52;
    color: white;
}

.btn-secondary:hover {
    background-color: #0f2438;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(26, 58, 82, 0.3);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #00bcd4;
    outline-offset: 2px;
}

body.high-contrast,
body.high-contrast .navbar,
body.high-contrast .page-header,
body.high-contrast .hero,
body.high-contrast section,
body.high-contrast .feature-card,
body.high-contrast .service-card,
body.high-contrast .product-detail,
body.high-contrast .product-card,
body.high-contrast .footer,
body.high-contrast .form-section,
body.high-contrast .contact-method,
body.high-contrast .rebates-box,
body.high-contrast .expect-step,
body.high-contrast .gallery-overlay,
body.high-contrast .comparison-table,
body.high-contrast .comparison-table th,
body.high-contrast .comparison-table td {
    background: #000 !important;
    color: #fff !important;
}

body.high-contrast a,
body.high-contrast .btn-link,
body.high-contrast .nav-links a,
body.high-contrast .phone-nav {
    color: #ffe066 !important;
}

body.high-contrast .btn,
body.high-contrast .filter-btn,
body.high-contrast .contrast-toggle,
body.high-contrast .mobile-menu-toggle {
    background: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}

body.high-contrast * {
    box-shadow: none !important;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

/* ============================================
   SECTIONS & SPACING
   ============================================ */
section {
    padding: 3rem 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a3a52;
}

section h3 {
    font-size: 1.5rem;
    color: #1a3a52;
    margin-bottom: 1rem;
}

/* Arkouta Highlight Section */
.team-highlight {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f4f8 100%);
}

.team-highlight h2 {
    color: #1a3a52;
    margin-bottom: 3rem;
}

/* ============================================
   FEATURE GRID
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #ff8c00;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-top-color: #00bcd4;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1a3a52;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.two-column h2 {
    text-align: left;
}

/* ============================================
   THREE COLUMN LAYOUT
   ============================================ */
.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.three-column > div {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.three-column h4 {
    color: #00bcd4;
    margin-bottom: 0.5rem;
}

@media (min-width: 769px) {
    .why-choose-section .three-column > div:last-child {
        grid-column: 2;
    }
}

/* ============================================
   TESTIMONIALS & REVIEWS
   ============================================ */
.testimonials {
    background-color: #f0f4f8;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 5px solid #ff8c00;
}

.testimonial-text {
    margin-bottom: 1rem;
    font-style: italic;
    color: #555;
}

.testimonial-author {
    font-weight: bold;
    color: #1a3a52;
}

.testimonial-rating {
    color: #f39c12;
    margin-top: 0.5rem;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #fff8e8 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.reviews-section h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #1a3a52;
}

.reviews-section > .container > p:nth-of-type(1) {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.review-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.review-buttons a {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.review-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 2rem;
    font-style: italic;
}

.reviews-widget {
    max-width: 980px;
    margin: 1rem auto 0;
}

.facebook-feed-section {
    background: white;
    text-align: center;
}

.facebook-feed-section p {
    color: #666;
    margin-bottom: 1.5rem;
}

.facebook-widget-wrap {
    display: flex;
    justify-content: center;
}

.facebook-widget-wrap .fb-page,
.facebook-widget-wrap .fb-page span,
.facebook-widget-wrap .fb-page iframe {
    max-width: 100% !important;
}

#reviews-widget-status {
    margin-top: 1rem;
}

/* ============================================
   PRODUCTS & SERVICES
   ============================================ */
.product-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-section h3 {
    color: #00bcd4;
    margin-bottom: 1rem;
}

.product-features {
    list-style-position: inside;
    margin: 1rem 0;
}

.product-features li {
    padding: 0.5rem 0;
    line-height: 1.8;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.comparison-table th {
    background-color: #1a3a52;
    color: white;
    font-weight: bold;
}

.comparison-table tr:hover {
    background-color: #f9f9f9;
}

.price-box {
    background: #f39c12;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
}

.price-box h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.rebates-box {
    background: #e8f5e9;
    border-left: 5px solid #4caf50;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.products-section .container {
    max-width: 1100px;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    max-width: 430px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.product-info h2 {
    text-align: center;
    margin-bottom: 0.4rem;
}

.tagline {
    text-align: center;
    color: #666;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.features-list,
.benefits-list {
    padding-left: 1.1rem;
    margin: 0.6rem 0 1.1rem;
}

.features-list li,
.benefits-list li {
    margin: 0.35rem 0;
    color: #555;
}

.price-info {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a3a52;
    background: #fff8e8;
    border: 1px solid #ffd79b;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 1rem 0 1.1rem;
}

.product-info .btn {
    display: block;
    margin: 0 auto;
}

.product-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #d7d7d7, transparent);
    margin: 2rem 0;
}

.comparison-section h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.comparison-table {
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table td:nth-child(n+2),
.comparison-table th:nth-child(n+2) {
    text-align: center;
}

.rebates-box {
    margin-top: 2rem;
    border-radius: 10px;
}

.rebates-box h3 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.rebates-box ul {
    max-width: 560px;
    margin: 0.5rem auto 0.8rem;
}

.rebates-box p {
    text-align: center;
}

.products-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1.2rem;
    text-align: center;
}

.product-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

.btn-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #1a3a52;
    font-weight: 700;
    text-decoration: none;
}

.btn-link:hover {
    color: #ff8c00;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #f0f4f8 0%, #fff8e8 100%);
}

.cta-section p {
    max-width: 720px;
    margin: 0 auto 1.2rem;
    color: #555;
}

.btn-large {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
}

/* ============================================
   SERVICE GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #ff8c00;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-top-color: #00bcd4;
}

.service-card h3 {
    color: #ff8c00;
}

.service-card ul {
    list-style-position: inside;
    margin: 1rem 0;
}

.service-card li {
    padding: 0.3rem 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.step {
    background: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 3px solid #ff8c00;
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ff8c00;
}

.expect-section {
    background: white;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.expect-step {
    background: #f9f9f9;
    border-top: 4px solid #00bcd4;
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.expect-number {
    width: 36px;
    height: 36px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: #ff8c00;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.expect-step h3 {
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

.expect-step p {
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
}

.seasonal-tips-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f5e9 100%);
}

.tips-list {
    margin-top: 0.5rem;
    padding-left: 1rem;
}

.tips-list li {
    margin: 0.4rem 0;
    color: #555;
}

/* ============================================
   GALLERY
   ============================================ */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid #1a3a52;
    background: white;
    color: #1a3a52;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #ff8c00;
    color: white;
    border-color: #ff8c00;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin: 0;
    font-size: 0.9rem;
}

.gallery-item.hidden {
    display: none;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5a7b 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00bcd4;
    margin-bottom: 0.5rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid #ff8c00;
}

.contact-method h3 {
    color: #ff8c00;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-method p {
    margin: 0.3rem 0;
}

.contact-method a {
    color: #ff8c00;
    text-decoration: none;
    font-weight: bold;
}

.contact-method a:hover {
    text-decoration: underline;
}

.small {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.quick-links {
    background: #1a3a52;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.quick-links h3 {
    color: #ff8c00;
    margin-bottom: 1rem;
}

.quick-links ul {
    list-style: none;
}

.quick-links li {
    padding: 0.5rem 0;
}

.quick-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #00bcd4;
}

.forms-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-section {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-section h3 {
    color: #1a3a52;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #ff8c00;
    padding-bottom: 0.5rem;
}

/* ============================================
   FORMS
   ============================================ */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
}

.form-feedback {
    min-height: 1.25rem;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    text-align: center;
}

.form-feedback.error {
    color: #b42318;
    font-weight: 600;
}

.form-feedback.success {
    color: #1a7f37;
    font-weight: 600;
}

.privacy-note {
    font-size: 0.85rem;
    color: #555;
    text-align: center;
    margin-top: 0.25rem;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose-section {
    background-color: white;
}

.why-choose-section .container {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f5e9 100%);
    padding: 3rem;
    border-radius: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #1a3a52;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ff8c00;
    margin-bottom: 1rem;
}

.footer-section p {
    margin: 0.5rem 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff8c00;
}

.social-links {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff8c00;
}

.footer-section li {
    padding: 0.3rem 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        order: 3;
        background-color: #1a3a52;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0.5rem 0;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.6rem 0.25rem;
        font-size: 1rem;
    }

    .phone-nav {
        order: 4;
        width: 100%;
        text-align: center;
        margin-top: 0.25rem;
    }

    .contrast-toggle {
        margin-left: 0;
        margin-right: 0.4rem;
    }

    .logo-image {
        height: 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .three-column {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-info h3,
    .product-info ul,
    .product-info p {
        text-align: left;
    }

    .product-info .price-info {
        text-align: center;
    }

    .products-preview {
        grid-template-columns: 1fr;
    }

    .review-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .review-buttons a {
        width: 100%;
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step {
        width: 100px;
        height: 100px;
        font-size: 0.9rem;
    }

    .step-number {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .forms-container {
        grid-template-columns: 1fr;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .two-column h2 {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    body {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .page-header {
        padding: 2rem 1rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    section h2 {
        font-size: 1.5rem;
    }

    section h3 {
        font-size: 1.2rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .btn-group {
        gap: 0.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .review-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .review-buttons a {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .facebook-feed-section h2 {
        font-size: 1.5rem;
    }

    .reviews-section h2 {
        font-size: 1.5rem;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .expect-grid {
        grid-template-columns: 1fr;
    }

    .step {
        width: 90px;
        height: 90px;
    }

    .step-number {
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }

    .three-column {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }

    .product-detail {
        padding: 1.2rem;
    }

    .product-image img {
        max-width: 100%;
    }

    .nav-links {
        margin-top: 0.25rem;
    }

    .phone-nav {
        font-size: 0.9rem;
    }

    .contrast-toggle {
        font-size: 0.8rem;
        padding: 0.35rem 0.55rem;
    }
}

/* Ultra-wide screens (1600px and above) */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .feature-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
