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

:root {
    --primary-color: #2078aa;
    --primary-dark: #1a5f87;
    --primary-light: #2a8bc4;
    --secondary-color: #fe9a45;
    --secondary-dark: #e8872e;
    --secondary-light: #ffb366;
    --brand-cream: #fdf5ea;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #fdf5ea;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="dark"] {
    --text-dark: #f9fafb;
    --text-light: #d1d5db;
    --bg-light: #1a1a1a;
    --bg-white: #0f0f0f;
    --border-color: #374151;
    --primary-color: #2a8bc4;
    --secondary-color: #ffb366;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 2rem;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 280px;
    width: auto;
    max-width: 900px;
    transition: transform 0.3s ease;
    -o-object-fit: contain;
       object-fit: contain;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 3rem;
}

.theme-toggle {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(20deg);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 120, 170, 0.7) 0%, rgba(254, 154, 69, 0.6) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.4s both;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--secondary-color);
    color: white;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text .tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: left;
}

.about-text p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-text p strong {
    color: var(--text-dark);
    font-weight: 600;
}

.initiative-badge {
    background: linear-gradient(135deg, rgba(32, 120, 170, 0.1) 0%, rgba(254, 154, 69, 0.1) 100%);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.initiative-badge:hover {
    background: linear-gradient(135deg, rgba(32, 120, 170, 0.15) 0%, rgba(254, 154, 69, 0.15) 100%);
    transform: translateX(5px);
}

.initiative-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.initiative-icon-image {
    width: 80px;
    height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.initiative-content {
    flex: 1;
}

.initiative-content strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.cta-text {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    font-size: 1.1rem;
    color: var(--text-dark) !important;
}

.crazy-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    box-shadow: 
        0 8px 20px rgba(32, 120, 170, 0.3),
        0 4px 10px rgba(254, 154, 69, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: perspective(1000px) rotateX(0deg);
    z-index: 0;
}

.about-text .crazy-button {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.crazy-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50px;
    z-index: -1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.crazy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 0;
    border-radius: 50px;
}

.crazy-button:hover::before {
    left: 100%;
}

.crazy-button:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(32, 120, 170, 0.4),
        0 8px 15px rgba(254, 154, 69, 0.3);
}

.crazy-button:hover::after {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.crazy-button:active {
    transform: perspective(1000px) rotateX(0deg) translateY(-1px) scale(1.02);
}

.crazy-button > * {
    position: relative;
    z-index: 1;
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    font-size: 2rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
    display: inline-block;
    animation: arrowPulse 1.5s ease-in-out infinite;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(-8px) scale(1.1);
        opacity: 0.9;
    }
}

.crazy-button:hover .button-icon {
    animation: arrowBounce 0.8s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0) scale(1.1);
    }
    50% {
        transform: translateX(-12px) scale(1.2);
    }
}

.button-icon-image {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
}

@keyframes scrollHint {
    0%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    50% { 
        transform: translateX(-50%) translateY(8px); 
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px -15px rgba(0, 0, 0, 0.2),
        0 10px 30px -10px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    background: var(--bg-white);
    padding: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 30px 80px -20px rgba(0, 0, 0, 0.3),
        0 15px 40px -15px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 600px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    border-radius: 12px;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.service-icon-image {
    width: 80px;
    height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    max-height: 200px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}

.service-card p.expanded {
    max-height: 2000px;
}

.service-card p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--bg-white));
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card p.expanded::after {
    opacity: 0;
}

.service-read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-read-more:hover {
    color: var(--secondary-color);
}

.service-read-more::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-read-more.expanded::after {
    content: ' ↑';
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    text-align: left;
}

.service-features li {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Service Badge */
.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    z-index: 1;
}

.service-badge-featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.service-badge-premium {
    background: var(--secondary-color);
    color: var(--text-dark);
    font-size: 0.75rem;
    padding: 0.5rem 0.9rem;
    white-space: nowrap;
    text-align: center;
    top: 0.5rem;
    left: 0.5rem;
    right: auto;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    animation: subtlePulse 3s ease-in-out infinite;
}

/* Featured Service Card Highlight */
.service-card-featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.service-card-premium {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 8px 25px rgba(254, 154, 69, 0.2);
}

/* Enhanced Service Links */
.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    transform: translateX(5px);
    color: var(--secondary-color);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(32, 120, 170, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(254, 154, 69, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px -15px rgba(0, 0, 0, 0.1),
        0 10px 30px -10px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 
        0 25px 70px -15px rgba(0, 0, 0, 0.12),
        0 15px 35px -10px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 8px rgba(32, 120, 170, 0.08);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 4px rgba(32, 120, 170, 0.1),
        0 4px 12px rgba(32, 120, 170, 0.15);
    transform: translateY(-1px);
}

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

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232078aa' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.25rem 2rem;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(32, 120, 170, 0.3),
        0 2px 8px rgba(254, 154, 69, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-button::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: left 0.5s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(32, 120, 170, 0.4),
        0 4px 12px rgba(254, 154, 69, 0.3);
}

.submit-button:active {
    transform: translateY(-1px);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-message {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.3s ease;
}

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

.form-message.form-message-success {
    display: block;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 2px solid #10b981;
}

.form-message.form-message-error {
    display: block;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 2px solid #ef4444;
}

/* Mobile Responsive for Contact Form */
@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        margin: 0 1rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Trust Section */
.trust-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a7fa8 50%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 0;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.trust-section .container {
    position: relative;
    z-index: 1;
}

.trust-section .section-title {
    color: white;
}

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

.trust-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    position: relative;
}

.trust-checkmark {
    font-size: 0;
    font-weight: 900;
    color: var(--secondary-color);
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.trust-card.visible .trust-checkmark {
    font-size: 3.5rem;
    opacity: 1;
    transform: scale(1);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(254, 154, 69, 0.4);
    animation: checkmarkPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.trust-icon-image {
    width: 80px;
    height: 80px;
    max-width: 80px;
    max-height: 80px;
    min-width: 80px;
    min-height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    display: block;
}

.trust-icon-large {
    width: 120px;
    height: 120px;
    max-width: 120px;
    max-height: 120px;
    min-width: 120px;
    min-height: 120px;
}

.graduation-cap-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.trust-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: 1rem;
}

.trust-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-cta-text {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.trust-cta .crazy-button {
    margin: 0 auto;
}

/* Comfort For All Section */
.comfort-for-all {
    background: linear-gradient(135deg, rgba(32, 120, 170, 0.05) 0%, rgba(254, 154, 69, 0.05) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.comfort-for-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(32, 120, 170, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(254, 154, 69, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.comfort-for-all-content {
    position: relative;
    z-index: 1;
}

.comfort-for-all-header {
    text-align: center;
    margin-bottom: 4rem;
}

.comfort-for-all-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.comfort-for-all-icon-image {
    width: 120px;
    height: 120px;
    -o-object-fit: contain;
       object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.comfort-for-all-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.comfort-for-all-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.comfort-for-all-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.comfort-for-all-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.comfort-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
}

.comfort-for-all-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.comfort-for-all-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.comfort-for-all-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.comfort-cta-primary,
.comfort-cta-secondary {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
}

button.comfort-cta-primary,
button.comfort-cta-secondary {
    background: none;
    border: none;
}

.comfort-cta-primary {
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(32, 120, 170, 0.3);
}

.comfort-cta-primary,
.comfort-cta-primary *,
.comfort-cta-primary span,
.comfort-cta-primary .button-text,
button.comfort-cta-primary,
button.comfort-cta-primary *,
button.comfort-cta-primary span,
.btn.btn-primary.comfort-cta-primary,
.btn.btn-primary.comfort-cta-primary *,
.btn.btn-primary.comfort-cta-primary span {
    color: white !important;
}

.comfort-cta-primary:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 154, 69, 0.5);
    color: white !important;
}

.comfort-cta-primary:hover,
.comfort-cta-primary:hover *,
.comfort-cta-primary:hover span,
.comfort-cta-primary:hover .button-text,
button.comfort-cta-primary:hover,
button.comfort-cta-primary:hover *,
button.comfort-cta-primary:hover span,
.btn.btn-primary.comfort-cta-primary:hover,
.btn.btn-primary.comfort-cta-primary:hover *,
.btn.btn-primary.comfort-cta-primary:hover span {
    color: white !important;
}

/* Specific fix for nominate button - highest priority */
button#nominate-btn,
button#nominate-btn *,
button#nominate-btn span,
button.btn.btn-primary.comfort-cta-primary#nominate-btn,
button.btn.btn-primary.comfort-cta-primary#nominate-btn *,
button.btn.btn-primary.comfort-cta-primary#nominate-btn span {
    background: var(--primary-color) !important;
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

button#nominate-btn:hover,
button#nominate-btn:hover *,
button#nominate-btn:hover span,
button.btn.btn-primary.comfort-cta-primary#nominate-btn:hover,
button.btn.btn-primary.comfort-cta-primary#nominate-btn:hover *,
button.btn.btn-primary.comfort-cta-primary#nominate-btn:hover span {
    background: var(--secondary-color) !important;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 25px rgba(254, 154, 69, 0.5) !important;
}

.comfort-cta-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comfort-cta-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 120, 170, 0.3);
}

/* Video Section */
.video-section {
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 50%, var(--bg-light) 100%);
    padding: 5rem 0;
}

.video-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

.video-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.video-benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.video-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-benefit-icon-image {
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.video-benefit-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px -15px rgba(0, 0, 0, 0.2),
        0 10px 30px -10px rgba(0, 0, 0, 0.15);
    background: var(--bg-white);
    padding: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 30px 80px -20px rgba(0, 0, 0, 0.3),
        0 15px 40px -15px rgba(0, 0, 0, 0.2);
}

.featured-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    background: #000;
}

.video-stat {
    text-align: center;
    margin: 2rem auto 3rem;
    max-width: 700px;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(32, 120, 170, 0.1) 0%, rgba(254, 154, 69, 0.1) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.video-stat-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.video-stat-text strong {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
}

.compatibility-note {
    text-align: center;
    margin: 2rem auto;
    max-width: 600px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.compatibility-note p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.video-cta {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.video-learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.video-learn-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Gallery Section */
.gallery {
    background: var(--bg-light);
}

.gallery-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-item::after {
    content: '▼';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 3;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.3);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    animation: scrollHint 2s ease-in-out infinite;
}

.gallery-item:hover::after {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
}

.gallery-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.2), transparent);
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 2;
    border-radius: 0 0 12px 12px;
}

.gallery-item:hover::before {
    opacity: 0;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Visual distinction for service groups */
.gallery-item-air-quality {
    border-color: var(--secondary-color);
    border-width: 3px;
}

.gallery-item-air-quality:hover {
    box-shadow: 0 10px 25px -5px rgba(254, 154, 69, 0.3), 0 4px 6px -2px rgba(254, 154, 69, 0.2);
}

.gallery-item-maintenance {
    border-color: var(--primary-color);
    border-width: 3px;
}

.gallery-item-maintenance:hover {
    box-shadow: 0 10px 25px -5px rgba(32, 120, 170, 0.3), 0 4px 6px -2px rgba(32, 120, 170, 0.2);
}

.gallery-item-efficiency {
    border-color: var(--primary-light);
    border-width: 2px;
}

.gallery-icon-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(32, 120, 170, 0.05) 0%, rgba(254, 154, 69, 0.05) 100%);
}

.gallery-icon-image {
    width: 120px;
    height: 120px;
    max-width: 120px;
    max-height: 120px;
    -o-object-fit: contain;
       object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon-image {
    transform: scale(1.1);
}

.gallery-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
}

.gallery-item img.gallery-image {
    min-height: 100%;
}

/* Fallback for images that fail to load */
.gallery-item img.gallery-image:not([src]),
.gallery-item img.gallery-image[src=""],
.gallery-item img.gallery-image[src*="undefined"] {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.about-image img:not([src]),
.about-image img[src=""],
.about-image img[src*="undefined"] {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.85), rgba(0,0,0,0.7));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 85%;
    overflow-y: auto;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Always show overlay on mobile for accessibility */
@media (max-width: 768px) {
    .gallery-overlay {
        transform: translateY(0);
        position: relative;
        background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.8));
        border-radius: 0 0 12px 12px;
    }
    
    .gallery-item {
        flex-direction: column;
        aspect-ratio: auto;
        min-height: auto;
    }
    
    .gallery-icon-wrapper {
        min-height: 250px;
        padding: 2rem 1.5rem;
    }
    
    .gallery-icon-image {
        width: 160px;
        height: 160px;
        max-width: 160px;
        max-height: 160px;
        min-width: 160px;
        min-height: 160px;
    }

    .gallery-item::after,
    .gallery-item::before {
        display: none;
    }
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin: 0 0 0.75rem 0;
    font-weight: 600;
    color: white;
}

.gallery-overlay p {
    font-size: 0.95rem;
    margin: 0 0 1rem 0;
    opacity: 0.95;
    line-height: 1.5;
}

.gallery-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}

.gallery-benefits li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
    line-height: 1.4;
}

.gallery-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1rem;
}

.gallery-cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.gallery-cta-button:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 154, 69, 0.4);
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.gallery-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Photo Gallery Section */
.photo-gallery {
    background: var(--bg-light);
    padding: 5rem 0;
    position: relative;
}

.gallery-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-photo-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.gallery-photo {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-photo-item:hover .gallery-photo {
    transform: scale(1.1);
}

.gallery-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-photo-item:hover .gallery-photo-overlay {
    transform: translateY(0);
}

.gallery-photo-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: white;
}

.gallery-photo-overlay p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

/* Mobile adjustments for photo gallery */
@media (max-width: 768px) {
    .photo-gallery {
        padding: 3rem 0;
    }

    .gallery-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .photo-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-photo-item {
        aspect-ratio: auto;
        min-height: 300px;
    }

    .gallery-photo {
        -o-object-fit: contain;
           object-fit: contain;
        -o-object-position: center top;
           object-position: center top;
    }

    .gallery-photo-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
        padding: 1.5rem 1rem 1rem;
    }

    .gallery-photo-overlay h3 {
        font-size: 1.1rem;
    }

    .gallery-photo-overlay p {
        font-size: 0.85rem;
    }
}

/* Coupons Section */
.coupons-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a7fa8 50%, var(--secondary-color) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.coupons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.coupons-section .container {
    position: relative;
    z-index: 1;
}

.coupons-section .section-title {
    color: white;
}

.coupons-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}


.coupons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .coupons-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

.coupon-card {
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.coupon-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.coupon-card-featured {
    border: 4px solid var(--secondary-color);
    box-shadow: 0 20px 50px rgba(254, 154, 69, 0.5);
    transform: scale(1.05);
    position: relative;
    animation: featuredPulse 3s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(254, 154, 69, 0.5);
    }
    50% {
        box-shadow: 0 25px 60px rgba(254, 154, 69, 0.7);
    }
}

.coupon-card-featured:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 0 25px 60px rgba(254, 154, 69, 0.6);
}

.coupon-card-featured::after {
    content: '⭐';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    z-index: 2;
    animation: starTwinkle 2s ease-in-out infinite;
}

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


.coupon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    margin-right: 2.5rem;
}

.coupon-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.coupon-discount-large {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.discount-amount,
.discount-percent {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -2px;
}

.discount-off {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.coupon-company {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.company-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 0.9;
}

.coupon-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: visible;
    min-width: 0;
}

.coupon-body h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.875rem;
    font-weight: 700;
    line-height: 1.3;
}

.coupon-description {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
}

.coupon-code-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    overflow: visible;
}

.coupon-code {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(32, 120, 170, 0.1) 0%, rgba(254, 154, 69, 0.1) 100%);
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    flex-wrap: nowrap;
}

.coupon-code:hover {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(32, 120, 170, 0.15) 0%, rgba(254, 154, 69, 0.15) 100%);
}

.code-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.code-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
    flex: 1;
    text-align: center;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-code-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
    z-index: 1;
    min-width: -moz-fit-content;
    min-width: fit-content;
}

.copy-code-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.copy-code-btn:active {
    transform: scale(0.95);
}

.copy-icon {
    font-size: 1rem;
}

.copy-feedback {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-feedback.show {
    opacity: 1;
    top: -3rem;
}

.coupon-button {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(32, 120, 170, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coupon-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 120, 170, 0.4);
}

.coupon-terms {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--border-color);
}

.coupon-terms p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0.5rem 0;
    line-height: 1.6;
}

.coupon-terms p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.coupon-terms p:first-child {
    margin-top: 0;
}

.coupon-footer {
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 10px,
        var(--border-color) 10px,
        var(--border-color) 12px
    );
    position: relative;
}

.coupon-perforation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--bg-light);
    transform: translateY(-50%);
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-white);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
    min-height: 300px;
}

.testimonial-card {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-content {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #f8fafc 0%, var(--bg-light) 50%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(32, 120, 170, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(254, 154, 69, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.faq-category {
    margin-bottom: 4rem;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px -10px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid;
    -o-border-image: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) 1;
       border-image: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) 1;
    position: relative;
}

.faq-category-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.faq-category-icon {
    font-size: 2rem;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.faq-list {
    max-width: 100%;
    margin: 0;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(32, 120, 170, 0.1);
    border-color: rgba(32, 120, 170, 0.2);
    transform: translateY(-3px);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.active {
    border-color: var(--secondary-color);
    box-shadow: 
        0 12px 32px rgba(254, 154, 69, 0.2),
        0 0 0 1px rgba(254, 154, 69, 0.3);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffffff 0%, #fff9f5 100%);
}

.faq-item.active::before {
    opacity: 1;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(32, 120, 170, 0.03) 0%, rgba(254, 154, 69, 0.03) 100%);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(254, 154, 69, 0.05) 0%, rgba(32, 120, 170, 0.05) 100%);
    color: var(--primary-color);
}

.faq-question-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(32, 120, 170, 0.1) 0%, rgba(254, 154, 69, 0.1) 100%);
    border-radius: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
    transition: all 0.3s ease;
}

.faq-item.active .faq-question-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scale(1.1);
}

.faq-question-text {
    flex: 1;
    text-align: left;
    line-height: 1.5;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(32, 120, 170, 0.1);
    border-radius: 50%;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(254, 154, 69, 0.4);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.5);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
    margin: 0;
    padding-top: 0.5rem;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.faq-answer a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.faq-cta {
    text-align: center;
    margin-top: 5rem;
    padding-top: 3.5rem;
    border-top: 3px solid;
    -o-border-image: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) 1;
       border-image: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) 1;
    position: relative;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.faq-cta-text {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Dark Mode FAQ Styles */
[data-theme="dark"] .faq {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
}

[data-theme="dark"] .faq::before {
    background: radial-gradient(circle at 20% 30%, rgba(42, 139, 196, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 179, 102, 0.08) 0%, transparent 50%);
}

[data-theme="dark"] .faq-category {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 10px 30px -10px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .faq-category-title {
    color: #f9fafb;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .faq-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .faq-item:hover {
    border-color: rgba(42, 139, 196, 0.4);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(42, 139, 196, 0.2);
    background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
}

[data-theme="dark"] .faq-item.active {
    border-color: rgba(255, 179, 102, 0.5);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 179, 102, 0.3);
    background: linear-gradient(135deg, #252525 0%, #2a2a2a 100%);
}

[data-theme="dark"] .faq-question {
    color: #f9fafb;
}

[data-theme="dark"] .faq-question:hover {
    background: linear-gradient(135deg, rgba(42, 139, 196, 0.1) 0%, rgba(255, 179, 102, 0.1) 100%);
}

[data-theme="dark"] .faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(255, 179, 102, 0.15) 0%, rgba(42, 139, 196, 0.15) 100%);
    color: #ffb366;
}

[data-theme="dark"] .faq-question-icon {
    background: linear-gradient(135deg, rgba(42, 139, 196, 0.2) 0%, rgba(255, 179, 102, 0.2) 100%);
}

[data-theme="dark"] .faq-answer {
    background: rgba(26, 26, 26, 0.8);
}

[data-theme="dark"] .faq-item.active .faq-answer {
    background: rgba(26, 26, 26, 0.9);
}

[data-theme="dark"] .faq-answer p {
    color: #d1d5db;
}

[data-theme="dark"] .faq-answer a {
    color: #2a8bc4;
}

[data-theme="dark"] .faq-answer a:hover {
    color: #ffb366;
}

[data-theme="dark"] .faq-cta-text {
    color: #f9fafb;
}

[data-theme="dark"] .faq-description {
    color: #d1d5db;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 3px solid var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section h3 {
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 300px;
    max-width: 1000px;
    -o-object-fit: contain;
       object-fit: contain;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtlePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.95;
        transform: scale(1.02);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        margin-bottom: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text .tagline {
        font-size: 1.3rem;
        text-align: center;
    }

    .initiative-badge {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .initiative-icon {
        font-size: 3rem;
        margin: 0 auto;
    }

    .initiative-icon-image {
        width: 60px;
        height: 60px;
    }

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

    .crazy-button {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-features {
        text-align: center;
    }
    
    .service-features li {
        text-align: left;
        display: inline-block;
        width: 100%;
    }
    
    .service-badge {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }

    .service-badge-premium {
        font-size: 0.65rem;
        padding: 0.4rem 0.6rem;
        top: 0.4rem;
        left: 0.4rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-card p {
        max-height: 150px;
        font-size: 0.9rem;
    }
    
    .service-read-more {
        font-size: 0.85rem;
    }

    .service-icon-image {
        width: 60px;
        height: 60px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .gallery-icon-wrapper {
        padding: 2rem 1.5rem;
        min-height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gallery-icon-image {
        width: 160px;
        height: 160px;
        max-width: 160px;
        max-height: 160px;
        min-width: 160px;
        min-height: 160px;
        -o-object-fit: contain;
           object-fit: contain;
    }

    .gallery-overlay {
        padding: 1.25rem;
    }

    .gallery-benefits {
        margin-bottom: 1rem;
    }

    .gallery-benefits li {
        font-size: 0.85rem;
        padding: 0.35rem 0;
    }

    .gallery-cta-button {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

    .gallery-cta {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .gallery-cta .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .gallery-item-air-quality,
    .gallery-item-maintenance,
    .gallery-item-efficiency {
        border-width: 2px;
    }

    .gallery-overlay h3 {
        font-size: 1.3rem;
    }

    .gallery-overlay p {
        font-size: 0.9rem;
    }

    .coupons-section {
        padding: 3rem 0;
    }

    .coupons-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .coupons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .coupon-card-featured {
        transform: scale(1);
    }

    .coupon-card-featured:hover {
        transform: translateY(-5px) scale(1.02);
    }

    .coupon-card {
        max-width: 100%;
    }

    .coupon-card:hover {
        transform: translateY(-5px) scale(1);
    }

    .coupon-header {
        padding: 1.5rem;
        padding-top: 3.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .coupon-badge {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 0.7rem;
        padding: 0.4rem 0.75rem;
    }

    .coupon-discount-large {
        align-items: center;
        width: 100%;
    }

    .discount-amount,
    .discount-percent {
        font-size: 3rem;
    }

    .company-name {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .coupon-body {
        padding: 1.5rem;
    }

    .coupon-body h3 {
        font-size: 1.4rem;
        text-align: center;
    }

    .coupon-description {
        text-align: center;
        font-size: 0.95rem;
    }

    .coupon-code {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .code-value {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .copy-code-btn {
        width: 100%;
        justify-content: center;
    }

    .copy-feedback {
        position: static;
        transform: none;
        margin-top: 0.5rem;
        text-align: center;
    }

    .copy-feedback.show {
        top: auto;
        opacity: 1;
    }

    .coupon-button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-card {
        padding: 2rem;
    }

    .trust-icon {
        font-size: 3rem;
        min-height: 50px;
    }

    .trust-checkmark {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }

    .trust-card.visible .trust-checkmark {
        font-size: 3rem;
    }

    .trust-icon-image {
        width: 60px;
        height: 60px;
        max-width: 60px;
        max-height: 60px;
        min-width: 60px;
        min-height: 60px;
    }

    .trust-icon-large {
        width: 90px;
        height: 90px;
        max-width: 90px;
        max-height: 90px;
        min-width: 90px;
        min-height: 90px;
    }

    .graduation-cap-icon {
        width: 60px;
        height: 60px;
    }

    .trust-section {
        padding: 3rem 0;
    }

    .trust-cta {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .trust-cta-text {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .trust-cta .crazy-button {
        width: 100%;
        max-width: 300px;
    }

    .video-section {
        padding: 3rem 0;
    }

    .video-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .video-benefits {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .video-benefit-item {
        padding: 1.25rem;
    }

    .video-benefit-icon {
        font-size: 2rem;
    }

    .video-benefit-item h4 {
        font-size: 1.1rem;
    }

    .video-benefit-item p {
        font-size: 0.9rem;
    }

    .video-stat {
        margin: 1.5rem auto 2rem;
        padding: 1.25rem;
    }

    .video-stat-text {
        font-size: 1.1rem;
    }

    .video-stat-text strong {
        font-size: 1.25rem;
    }

    .compatibility-note {
        margin: 1.5rem auto;
        padding: 0.875rem;
    }

    .video-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .video-cta .crazy-button {
        width: 100%;
        max-width: 100%;
    }

    .testimonial-content {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo-image {
        height: 200px;
        max-width: 700px;
    }
    
    .social-links {
        justify-content: center;
    }

    .logo-image {
        height: 180px;
        max-width: 600px;
    }

    .container {
        padding: 0 1rem;
    }

    .video-wrapper {
        padding: 4px;
    }

    .video-section {
        padding: 3rem 0;
    }

    .video-section p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .comfort-for-all {
        padding: 3rem 0;
    }

    .comfort-for-all-header {
        margin-bottom: 2.5rem;
    }

    .comfort-for-all-icon-image {
        width: 100px;
        height: 100px;
    }

    .comfort-for-all-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .comfort-for-all-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .comfort-for-all-card {
        padding: 2rem 1.5rem;
    }

    .comfort-card-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .comfort-for-all-card h3 {
        font-size: 1.3rem;
    }

    .comfort-for-all-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .comfort-cta-primary,
    .comfort-cta-secondary {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .faq {
        padding: 3rem 0;
    }

    .faq-description {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2.5rem;
    }

    .faq-category {
        margin-bottom: 2.5rem;
        padding: 1.75rem 1.5rem;
        border-radius: 16px;
    }

    .faq-category-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }

    .faq-category-icon {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 1.5rem 1.25rem;
        font-size: 1rem;
        gap: 1rem;
    }

    .faq-question-icon {
        font-size: 1.4rem;
        width: 40px;
        height: 40px;
    }

    .faq-icon {
        font-size: 1.3rem;
        width: 28px;
        height: 28px;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .faq-cta {
        margin-top: 3rem;
        padding-top: 2.5rem;
    }

    .faq-cta-text {
        font-size: 1.2rem;
    }

    .faq-cta .crazy-button {
        width: 100%;
        max-width: 100%;
    }
}

/* Nomination Modal */
.nomination-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

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

.nomination-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10001;
}

.nomination-modal-content {
    position: relative;
    background: var(--bg-white);
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 25px 80px -15px rgba(0, 0, 0, 0.3),
        0 15px 40px -10px rgba(0, 0, 0, 0.2);
    margin: 2rem auto;
    z-index: 10002;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.nomination-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.nomination-modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.nomination-modal-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.nomination-modal-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
    font-size: 1rem;
}

.nomination-form {
    margin-top: 1.5rem;
}

.nomination-form .form-group {
    margin-bottom: 1.5rem;
}

.nomination-form .form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.nomination-form .form-group label .required {
    color: var(--secondary-color);
    margin-left: 0.25rem;
}

.nomination-form .form-group input,
.nomination-form .form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.nomination-form .form-group input:focus,
.nomination-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(32, 120, 170, 0.1);
}

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

.nomination-form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
    display: none;
}

.nomination-form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
    display: block;
}

.nomination-form-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
    display: block;
}

.nomination-form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.nomination-modal-cancel,
.nomination-submit {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nomination-modal-cancel {
    background: var(--bg-light);
    color: var(--text-dark);
    border-color: var(--border-color);
}

.nomination-modal-cancel:hover {
    background: var(--border-color);
}

.nomination-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(32, 120, 170, 0.3);
}

.nomination-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 120, 170, 0.4);
}

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

/* Dark mode styles for modal */
[data-theme="dark"] .nomination-modal-content {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .nomination-modal-close {
    color: var(--text-light);
}

[data-theme="dark"] .nomination-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
}

[data-theme="dark"] .nomination-form .form-group input,
[data-theme="dark"] .nomination-form .form-group textarea {
    background: var(--bg-dark-secondary);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
}

[data-theme="dark"] .nomination-modal-cancel {
    background: var(--bg-dark-secondary);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
}

/* Mobile styles for modal */
@media (max-width: 768px) {
    .nomination-modal-content {
        width: 95%;
        padding: 2rem 1.5rem;
        margin: 1rem;
        max-height: 95vh;
    }
    
    .nomination-modal-title {
        font-size: 1.5rem;
        padding-right: 2rem;
    }
    
    .nomination-modal-close {
        top: 1rem;
        right: 1rem;
    }
    
    .nomination-form-buttons {
        flex-direction: column;
    }
    
    .nomination-modal-cancel,
    .nomination-submit {
        width: 100%;
    }
}
