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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

body.homepage {
    background: #000;
}

/* Header */
header {
    position: relative;
    z-index: 100;
    background: transparent;
    padding: 20px 0;
}

header .container {
    position: relative;
}

.inline-menu {
    text-align: center;
}

.inline-menu ul {
    list-style: none;
    display: inline-flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.inline-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    transition: all 0.3s ease;
}

.inline-menu ul li a:hover {
    color: #ff4444;
}

/* Mobile Menu */
.menu-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 1000;
    transition: left 0.3s ease;
    -webkit-transition: left 0.3s ease;
    -moz-transition: left 0.3s ease;
    -webkit-transform: translateZ(0); /* Force hardware acceleration */
    transform: translateZ(0);
}

.menu-mobile.on {
    left: 0;
}

.menu-mobile nav ul {
    list-style: none;
    padding: 50px 20px;
}

.menu-mobile nav ul li {
    margin-bottom: 8px;
}

.menu-mobile nav ul li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    display: block;
    padding: 12px 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.menu-mobile nav ul li a:hover,
.menu-mobile nav ul li a:focus {
    background: rgba(255,255,255,0.1);
    color: #ff4444;
    text-decoration: none;
}

#open-menu, #close-menu {
    background: rgba(0,0,0,0.8);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

#open-menu:hover, #close-menu:hover {
    background: rgba(0,0,0,0.9);
    border-radius: 4px;
}

/* Hamburger Icon */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

#close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
}

/* Banner/Hero Section */
.banner.home {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 80px 0 60px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.banner.home .container {
    position: relative;
    z-index: 2;
}

.banner.home .logo {
    height: 80px;
    width: auto;
    margin-bottom: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.banner.home h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #fff;
}

.banner.home h4 {
    font-size: 1.4rem;
    font-weight: 300;
    color: #ff4444;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.main-button {
    background: #ff4444;
    color: #fff !important;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.main-button:hover {
    background: #e63939;
    color: #fff !important;
    text-decoration: none;
}

.main-button p {
    margin: 0;
    color: #fff;
}

.link-text {
    color: #fff;
    text-decoration: underline;
    font-size: 16px;
    transition: color 0.3s ease;
}

.link-text:hover {
    color: #ff4444;
    text-decoration: underline;
}

/* Home Explaining Section */
.home-explaining {
    padding: 120px 0 140px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.home-explaining::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -50px;
    width: 60%;
    height: calc(100% + 40px);
    background-image: url('https://www.meumatch.com/images/man-xl.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 580px;
    z-index: 1;
    opacity: 0.95;
}

.home-explaining::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 68, 68, 0.3) 50%, transparent 100%);
    z-index: 2;
}

.home-explaining .container {
    position: relative;
    z-index: 2;
}

.home-explaining .row {
    align-items: center;
    min-height: 500px;
}

.explaining-content {
    padding: 60px 80px 60px 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 5;
}

.explaining-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.2) 0%, transparent 50%, rgba(255, 68, 68, 0.1) 100%);
    border-radius: 22px;
    z-index: -1;
}

.home-explaining p {
    font-size: 24px;
    line-height: 1.8;
    color: #333;
    text-align: left;
    margin-bottom: 0;
    font-weight: 400;
    position: relative;
}

.home-explaining strong {
    color: #ff4444;
    font-weight: 600;
}

.img-container img {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Black Pattern Section */
.black-pattern.home {
    background: #000;
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.black-pattern.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,68,68,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,68,68,0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.02) 50%, transparent 51%);
}

.black-pattern .row {
    align-items: center;
    min-height: 400px;
    position: relative;
    z-index: 2;
}

.black-pattern .clearfix {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.black-pattern img {
    max-height: 250px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255,68,68,0.3));
}

.black-pattern h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: left;
}

.black-pattern h4 {
    font-size: 1.4rem;
    font-weight: 300;
    color: #ccc;
    text-align: left;
    line-height: 1.6;
}

/* Home Steps */
.home-steps {
    background: #f8f8f8;
    padding: 80px 0;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.step-list li {
    text-align: center;
    margin-bottom: 50px;
}

.step-list span {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #ff4444;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-list .title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.step-list p:not(.title) {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner.home h1 {
        font-size: 2rem;
    }

    .banner.home h4 {
        font-size: 1rem;
    }

    .banner.home {
        padding: 60px 0 40px;
        min-height: 70vh;
    }

    .buttons-container {
        margin-top: 30px;
    }

    .home-explaining,
    .black-pattern.home,
    .home-steps {
        padding: 100px 0;
    }

    .home-explaining {
        min-height: 500px;
    }

    .home-explaining::after {
        width: 100%;
        right: -20px;
        top: -10px;
        height: calc(100% + 20px);
        background-position: center bottom;
        background-size: auto 380px;
    }

    .explaining-content {
        padding: 40px 30px;
        margin-bottom: 40px;
    }

    .home-explaining p {
        font-size: 20px;
        line-height: 1.6;
        text-align: center;
    }


    .black-pattern h2 {
        font-size: 2rem;
        text-align: center;
        margin-top: 40px;
    }

    .black-pattern h4 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .banner.home h1 {
        font-size: 1.5rem;
    }

    .main-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.main-footer h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff4444;
    text-decoration: none;
}

.footer-contact li {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.social-links p {
    color: #ccc;
    font-size: 14px;
    margin-top: 20px;
}

.footer-divider {
    border: 0;
    height: 1px;
    background: #333;
    margin: 40px 0 20px;
}

.copyright {
    color: #999;
    font-size: 13px;
    margin: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-legal li {
    display: inline;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ff4444;
    text-decoration: none;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 20px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        text-align: center;
        margin-top: 10px;
    }

    .main-footer h5 {
        margin-top: 30px;
    }

    .main-footer .col-md-4:first-child h5 {
        margin-top: 0;
    }
}

/* Inner Pages */
.inner-header {
    background: #000;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-logo {
    height: 40px;
    width: auto;
}

.inline-menu ul li a.active {
    color: #ff4444;
}

.inner-hero {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    padding: 150px 0 100px;
    text-align: center;
}

.inner-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.inner-hero .lead {
    font-size: 1.4rem;
    color: #ccc;
    font-weight: 300;
}

/* About Page */
.about-content {
    padding: 80px 0;
    background: #fff;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 300;
}

.about-content h3 {
    font-size: 1.8rem;
    color: #ff4444;
    margin: 40px 0 20px;
    font-weight: 600;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-image {
    text-align: center;
    margin-top: 40px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Stats Section */
.stats-section {
    background: #f8f8f8;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 15px;
}

.stat-item h3 {
    font-size: 3rem;
    color: #ff4444;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Section */
.team-section {
    background: #fff;
    padding: 80px 0;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 300;
}

.section-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.team-member {
    text-align: center;
    margin-bottom: 40px;
}

.team-member img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.placeholder-member {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4444, #e63939);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.placeholder-member .initial {
    font-size: 4rem;
    color: #fff;
    font-weight: 300;
}

.team-member h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.team-member .title {
    font-size: 14px;
    color: #ff4444;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.team-member p:not(.title) {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Inner Pages Responsive */
@media (max-width: 768px) {
    .inner-hero {
        padding: 120px 0 60px;
    }

    .inner-hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .stats-section,
    .team-section {
        padding: 60px 0;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }
}

/* Packages Page */
.packages-section {
    background: #f8f8f8;
    padding: 80px 0;
}

.package-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.package-card.featured {
    border: 3px solid #ff4444;
    transform: scale(1.05);
}

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

.package-card.premium {
    border: 3px solid #8B0000;
    transform: scale(1.05);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.package-card.premium:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-card.premium h3,
.package-card.premium .price,
.package-card.premium .duration,
.package-card.premium .features {
    color: #fff;
}

.badge.ruby {
    background: #8B0000;
}

.package-btn.ruby {
    background: #8B0000;
    border: 2px solid #8B0000;
}

.package-btn.ruby:hover {
    background: #a00000;
    color: #fff !important;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4444;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-header h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 300;
}

.price {
    margin-bottom: 30px;
}

.price .currency {
    font-size: 1.5rem;
    color: #666;
    vertical-align: top;
}

.price .amount {
    font-size: 3.5rem;
    color: #ff4444;
    font-weight: 700;
}

.price .period {
    font-size: 1rem;
    color: #666;
    vertical-align: bottom;
}

.duration {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.features li {
    padding: 10px 0;
    font-size: 16px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.features li:last-child {
    border-bottom: none;
}

.package-btn {
    background: #ff4444;
    color: #fff !important;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
}

.package-btn:hover {
    background: #e63939;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.cta-section p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Packages Responsive */
@media (max-width: 992px) {
    .packages-section .col-md-3 {
        width: 50%;
        float: left;
    }
}

@media (max-width: 768px) {
    .packages-section {
        padding: 60px 0;
    }

    .packages-section .col-md-3 {
        width: 100%;
        float: none;
    }

    .package-card.featured,
    .package-card.premium {
        transform: none;
        margin-top: 0;
    }

    .package-card.featured:hover,
    .package-card.premium:hover {
        transform: translateY(-5px);
    }

    .price .amount {
        font-size: 2.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* About Page Specific Styles */

/* About Image Section */
.about-image-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.about-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-content-overlay {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.about-content-overlay h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.about-content-overlay .lead {
    font-size: 20px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* 5-Step Process Section */
.step-process {
    padding: 80px 0;
    background: #fff;
}

.step-process h2 {
    color: #000;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-process .section-description {
    color: #666;
    font-size: 18px;
    margin-bottom: 60px;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
    background: #ff4444;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 25px;
    flex-shrink: 0;
}

.step-content h3 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Service Philosophy Section */
.service-philosophy {
    padding: 80px 0;
    background: #f8f8f8;
}

.service-philosophy h2 {
    color: #000;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-philosophy .section-description {
    color: #666;
    font-size: 18px;
    margin-bottom: 60px;
}

.philosophy-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
}

.philosophy-item h3 {
    color: #ff4444;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.philosophy-item p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.relationship-goals {
    margin-top: 60px;
}

.relationship-goals h3 {
    color: #000;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.relationship-goals > .col-md-8 > p {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
}

.goals-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.goals-list li {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #ff4444;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.goals-list li strong {
    color: #000;
    font-weight: 600;
}

.goals-list li {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* About Page Responsive Design */
@media (max-width: 768px) {
    .step-process {
        padding: 60px 0;
    }

    .step-process h2 {
        font-size: 28px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .service-philosophy {
        padding: 60px 0;
    }

    .service-philosophy h2 {
        font-size: 28px;
    }

    .philosophy-item {
        margin-bottom: 30px;
    }

    .about-image-section {
        padding: 80px 0;
    }

    .about-content-overlay h2 {
        font-size: 32px;
    }

    .about-content-overlay .lead {
        font-size: 18px;
    }
}

/* Registration Form Styles */
.registration-form {
    padding: 80px 0;
    background: #f8f8f8;
}

.registration-form-content {
    background: #fff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.registration-form .form-group {
    margin-bottom: 25px;
}

.registration-form label {
    color: #000;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.registration-form .form-control {
    height: 45px;
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.registration-form textarea.form-control {
    height: auto;
    resize: vertical;
}

.registration-form .form-control:focus {
    border-color: #ff4444;
    box-shadow: none;
    outline: none;
}

.registration-form .btn-primary {
    background: #ff4444;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.registration-form .btn-primary:hover {
    background: #e63939;
    transform: translateY(-2px);
}

.form-disclaimer {
    text-align: center;
    margin-top: 30px;
    color: #666;
}

.registration-form .checkbox label {
    font-weight: normal;
    color: #555;
}

/* Coming Soon Styles */
.coming-soon {
    padding: 100px 0;
    background: #f8f8f8;
}

.coming-soon h2 {
    color: #000;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.coming-soon p {
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Responsive Registration Form */
@media (max-width: 768px) {
    .registration-form {
        padding: 60px 0;
    }

    .registration-form-content {
        padding: 40px 30px;
        margin: 0 15px;
    }

    .coming-soon {
        padding: 80px 0;
    }

    .coming-soon h2 {
        font-size: 28px;
    }
}

/* Registration Form Enhancements */
.radio-group, .checkbox-group {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.radio-inline, .checkbox {
    display: flex;
    align-items: center;
    margin-right: 0;
    margin-bottom: 10px;
    font-weight: normal;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.radio-inline input[type="radio"],
.checkbox input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
}

.radio-inline label,
.checkbox label {
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 14px;
    width: 100%;
    flex: 1;
    word-wrap: break-word;
    word-break: break-word;
    line-height: 1.4;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control.error {
    border-color: #d9534f;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 0 3px rgba(217,83,79,.1);
}

.radio-group.error {
    border: 2px solid #d9534f;
    border-radius: 4px;
    padding: 8px;
    background-color: rgba(217,83,79,.05);
}

.checkbox.error {
    color: #d9534f;
}

.checkbox.error label {
    color: #d9534f;
}

/* Success Message Styles */
.success-message {
    background: #fff;
    padding: 60px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    text-align: center;
    margin: 40px 0;
}

.success-icon {
    margin-bottom: 30px;
}

.success-icon .glyphicon {
    font-size: 64px;
    color: #5cb85c;
}

.success-message h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 600;
}

.success-message .lead {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-actions {
    margin-top: 40px;
}

.success-actions .btn {
    margin: 0 10px;
    min-width: 150px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
}

.btn-outline:hover {
    background: #007bff;
    color: #fff;
}

/* Additional Form Styling */
.registration-form-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    padding: 40px;
    margin-top: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 16px; /* Prevents zoom on iOS */
    line-height: 1.4;
    min-height: 44px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,.1);
    outline: none;
}

.checkbox-group {
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    padding: 15px;
    background-color: #f8f9fa;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0;
}

.checkbox-group .checkbox {
    margin-bottom: 5px;
    width: 100%;
    word-wrap: break-word;
}

.checkbox-group .checkbox label {
    width: 100%;
    flex-wrap: wrap;
    word-break: break-word;
    line-height: 1.5;
    padding-right: 10px;
}

/* Responsive Images */
img, picture {
    max-width: 100%;
    height: auto;
}

.header-logo, .footer-logo {
    max-width: 150px;
    height: auto;
}

@media (max-width: 768px) {
    .header-logo, .footer-logo {
        max-width: 120px;
    }

    .img-container img {
        width: 100%;
        height: auto;
    }
}

/* Mobile Form Optimizations */
@media (max-width: 768px) {
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px 16px;
        min-height: 48px;
    }

    .registration-form-content .checkbox-group {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        margin-right: 20px;
        padding: 12px;
        box-sizing: border-box;
    }

    .btn {
        min-height: 48px;
        padding: 12px 24px;
        font-size: 16px;
        width: 100%;
        margin-bottom: 16px;
    }

    .btn-lg {
        min-height: 52px;
        padding: 16px 32px;
        font-size: 18px;
    }

    /* Improve checkbox and radio touch targets */
    .checkbox input[type="checkbox"],
    .radio input[type="radio"] {
        transform: scale(1.5);
        margin-right: 12px;
    }

    .checkbox label,
    .radio label {
        line-height: 1.6;
        padding: 8px 0;
    }
}

/* Cross-browser compatibility fixes */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* iOS Safari fixes */
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border-radius: 5px;
}

/* Android fixes */
input[type="submit"], input[type="button"], button {
    -webkit-appearance: none;
    cursor: pointer;
}

/* Mobile Typography & Layout */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }

    /* Responsive typography */
    h1 {
        font-size: 28px !important;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    h2 {
        font-size: 24px !important;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    h3 {
        font-size: 20px !important;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    h4 {
        font-size: 18px !important;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    p, .lead {
        font-size: 16px !important;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    /* Container padding fixes */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Hero section mobile fixes */
    .banner, .inner-hero {
        padding: 60px 0 40px;
        text-align: center;
    }

    /* Package cards mobile layout */
    .package-card {
        margin-bottom: 30px;
    }

    /* Footer mobile optimization */
    .main-footer {
        padding: 40px 0 20px;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
        margin-top: 20px;
    }

    .footer-legal li {
        display: block;
        margin: 8px 0;
    }
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .registration-form-content {
        padding: 30px 20px;
        margin: 20px 0;
    }

    .success-message {
        padding: 40px 20px;
        margin: 20px 0;
    }

    .success-message h2 {
        font-size: 24px;
    }

    .success-message .lead {
        font-size: 16px;
    }

    .success-actions .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .radio-group, .checkbox-group {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        padding: 10px;
    }

    .radio-inline, .checkbox {
        margin-bottom: 8px;
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        align-items: flex-start;
    }

    .radio-inline label,
    .checkbox label {
        flex: 1;
        margin-left: 8px;
        word-break: break-word;
        line-height: 1.5;
    }

    .radio-inline input[type="radio"],
    .checkbox input[type="checkbox"] {
        flex-shrink: 0;
        margin-right: 0;
    }
}

/* Privacy Policy Styles */
.privacy-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.privacy-content h2 {
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff4444;
    font-size: 24px;
}

.privacy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.last-updated {
    background-color: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #007bff;
    margin-bottom: 30px;
    border-radius: 4px;
}

.content-section {
    padding: 60px 0;
    background: #f8f8f8;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 20px;
    }

    .privacy-content h2 {
        font-size: 20px;
        margin-top: 30px;
    }
}