/* ================================================
   Zenovoria - Custom Styles
   Unique Color Scheme: Deep Purple, Magenta, Teal
   ================================================ */

   :root {
    --primary-color: #2D1B4E;
    --secondary-color: #8B4789;
    --accent-color: #00BFA6;
    --dark-bg: #1A0F2E;
    --light-bg: #F8F5FF;
    --text-dark: #1F1235;
    --text-light: #E8E0F5;
    --gradient-1: linear-gradient(135deg, #2D1B4E 0%, #8B4789 100%);
    --gradient-2: linear-gradient(135deg, #8B4789 0%, #00BFA6 100%);
    --shadow: 0 10px 30px rgba(45, 27, 78, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================
   Cookie Notice
   ======================== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--gradient-2);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cookie-btn:hover {
    transform: scale(1.05);
}

/* ========================
   Header & Navigation
   ======================== */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link:hover {
    color: var(--secondary-color);
}

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

.cta-button {
    background: var(--gradient-1);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 71, 137, 0.3);
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-menu {
    background: white;
    margin-top: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeIn 0.3s ease;
}

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

.mobile-nav-list {
    list-style: none;
    padding: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.mobile-nav-link:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
}

/* ========================
   Hero Section
   ======================== */
.hero-section {
    background: var(--gradient-1);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 191, 166, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.primary-btn, .primary-btn-lg {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.primary-btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.primary-btn:hover, .primary-btn-lg:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
}

.secondary-btn {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    display: inline-block;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.tech-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tech-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.tech-icon:nth-child(2) { animation-delay: 0.5s; }
.tech-icon:nth-child(3) { animation-delay: 1s; }
.tech-icon:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ========================
   Sections
   ======================== */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Section */
.features-section {
    background: var(--light-bg);
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 27, 78, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-text {
    color: #666;
    line-height: 1.8;
}

/* Service Items */
.service-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: var(--gradient-1);
    color: white;
    transform: scale(1.05);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-item:hover .service-icon {
    color: var(--accent-color);
}

.service-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-desc {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    background: var(--gradient-1);
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: var(--light-bg);
}

.cta-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.form-input {
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn, .submit-btn-full {
    background: var(--gradient-1);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn-full {
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover, .submit-btn-full:hover {
    transform: translateY(-2px);
}

/* ========================
   Page Headers
   ======================== */
.page-header {
    background: var(--gradient-1);
    color: white;
    text-align: center;
}

.page-header-simple {
    background: var(--light-bg);
    text-align: center;
    border-bottom: 3px solid var(--secondary-color);
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: inherit;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.update-date {
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 0.5rem;
}

/* ========================
   Service Details
   ======================== */
.service-detail-card {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.service-detail-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-detail-text {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    margin-top: 1.5rem;
}

.service-list li {
    padding: 0.75rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-list i {
    color: var(--accent-color);
}

.tech-visual-icon {
    font-size: 15rem;
    color: var(--light-bg);
    opacity: 0.5;
}

/* ========================
   Solutions
   ======================== */
.solution-item {
    padding: 3rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.solution-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.solution-description {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.solution-benefits {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.benefits-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefits-list i {
    color: var(--secondary-color);
}

.tech-solution-icon {
    font-size: 12rem;
    color: var(--light-bg);
    opacity: 0.5;
}

/* Industries */
.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    background: var(--gradient-1);
    color: white;
    transform: translateY(-5px);
}

.industry-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.industry-card:hover i {
    color: var(--accent-color);
}

/* ========================
   About Page
   ======================== */
.about-section {
    background: white;
}

.about-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: var(--gradient-1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
}

/* Mission & Vision */
.mv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.mv-title {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mv-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Values */
.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.value-text {
    color: #666;
    line-height: 1.7;
}

/* Reasons */
.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.reason-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.reason-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.reason-text {
    color: #666;
    line-height: 1.7;
}

/* ========================
   Contact Page
   ======================== */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-heading {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-subheading {
    font-size: 1.0625rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-checkbox {
    margin-right: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.checkbox-label a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-info-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.info-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-text {
    color: #555;
    line-height: 1.6;
}

.info-text a {
    color: var(--secondary-color);
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

.office-hours-note {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
}

.office-hours-note i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Transport Cards */
.transport-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.transport-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.transport-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.transport-text {
    color: #666;
}

/* FAQ */
.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.faq-question {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.faq-question i {
    color: var(--accent-color);
    margin-right: 0.75rem;
}

.faq-answer {
    color: #666;
    line-height: 1.7;
}

/* ========================
   Legal Pages
   ======================== */
.legal-content {
    font-size: 1rem;
    line-height: 1.9;
}

.legal-intro {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-heading {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.legal-subheading {
    font-size: 1.35rem;
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.legal-list {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.9;
    color: #555;
}

.legal-list li {
    margin-bottom: 0.75rem;
}

.contact-box {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 1rem;
}

.contact-box a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* ========================
   Thank You Page
   ======================== */
.thankyou-section {
    background: var(--light-bg);
}

.thankyou-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.thankyou-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thankyou-text {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.thankyou-subtext {
    font-size: 1.0625rem;
    color: #666;
    margin-bottom: 2rem;
}

.thankyou-subtext a {
    color: var(--secondary-color);
    font-weight: 600;
}

.thankyou-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.detail-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.detail-card h3 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.detail-card p {
    color: #666;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.thankyou-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.thankyou-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.info-list i {
    color: var(--accent-color);
    margin-top: 0.25rem;
}

/* Resources */
.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.resource-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.resource-card p {
    color: #666;
    margin-bottom: 1rem;
}

.resource-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.resource-link:hover {
    text-decoration: underline;
}

/* Error Page */
.error-icon {
    font-size: 5rem;
    color: #FF6B6B;
    margin-bottom: 1.5rem;
}

.error-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.error-text {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.error-list {
    background: #FFF5F5;
    border: 1px solid #FF6B6B;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
    list-style: none;
}

.error-list li {
    color: #C53030;
    margin-bottom: 0.5rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* ========================
   Footer
   ======================== */
.site-footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem 0;
}

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

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

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

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* ========================
   Responsive Design
   ======================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .thankyou-title {
        font-size: 2rem;
    }
    
    .cta-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }
}