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

:root {
    --primary-bg: #ffffff;
    --secondary-bg: #fef9f5;
    --text-primary: #2c2c2c;
    --text-secondary: #6b6b6b;
    --accent-color: #FF721A;
    --accent-dark: #e65a0a;
    --accent-light: #ff9554;
    --border-color: rgba(255, 114, 26, 0.2);
}

/* Dark Mode */
[data-theme="dark"] {
    --primary-bg: #1a1a1a;
    --secondary-bg: #2d2d2d;
    --text-primary: #f5f5f5;
    --text-secondary: #b8b8b8;
    --accent-color: #FF721A;
    --accent-dark: #ff9554;
    --accent-light: #e65a0a;
    --border-color: rgba(255, 114, 26, 0.3);
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.nav-left {
    display: none;
}

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

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

.logo img {
    height: 85px;
    width: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

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

.nav-menu-left {
    justify-content: flex-end;
}

.nav-menu-right {
    justify-content: flex-start;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

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

.arrow {
    font-size: 0.7rem;
    margin-left: 3px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-bg);
    list-style: none;
    min-width: 200px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-top: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    display: block;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background-color: var(--secondary-bg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--primary-bg);
    padding: 2rem;
    transition: left 0.3s ease, background-color 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
}

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

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    margin-top: 3rem;
}

.mobile-menu > ul > li {
    margin-bottom: 1rem;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 0.75rem 0;
}

.mobile-submenu {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    display: none;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 2rem;
    margin-top: 0;
    overflow: hidden;
}

.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slider-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-image-bg.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.65);
    z-index: 1;
}

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

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
}

.hero-text {
    text-align: center;
    color: #2c2c2c;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c2c2c;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #6b6b6b;
}

.slider-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 3;
}

.slider-btn {
    position: absolute;
    top: 0;
    background-color: rgba(255, 114, 26, 0.8);
    color: white;
    border: none;
    font-size: 2.5rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.slider-btn:hover {
    background-color: var(--accent-dark);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 114, 26, 0.15);
}

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-image.active {
    opacity: 1;
}

.product-box {
    position: relative;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 114, 26, 0.15);
    width: 100%;
    max-width: 550px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.product-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.product-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    filter: brightness(1.2);
}

.product-bg-image.active {
    opacity: 1;
}

.product-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(254, 249, 245, 0.4));
    z-index: 1;
}

.product-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-icon {
    font-size: 4rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 114, 26, 0.3);
    font-family: 'Cinzel', serif;
}

.product-logo {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(255, 114, 26, 0.2));
}

.product-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin: 0;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c2c2c;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #6b6b6b;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    background-color: var(--accent-color);
    color: #ffffff;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}

.cta-button:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 114, 26, 0.4);
}

/* Quote Section */
.quote-section {
    padding: 4rem 0;
    background-color: var(--secondary-bg);
    text-align: center;
}

.quote-text {
    font-size: 1.8rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-primary);
    letter-spacing: 1px;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    position: relative;
}

.section-title span {
    background-color: var(--primary-bg);
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.title-line {
    border: none;
    height: 1px;
    background-color: var(--accent-color);
    margin-top: -1.5rem;
    opacity: 0.5;
}

/* Brands Section */
.brands-section {
    padding: 6rem 0;
    background-color: var(--primary-bg);
}

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

.brand-card {
    background-color: var(--secondary-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 114, 26, 0.2);
    border-color: var(--accent-color);
}

.brand-image {
    width: 100%;
    aspect-ratio: 1;
}

.brand-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fef9f5 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    font-family: 'Cinzel', serif;
    border: 1px solid var(--border-color);
}

.brand-card h3 {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-primary);
}

/* Quote with Image Section */
.quote-image-section {
    padding: 6rem 0;
    background-color: var(--secondary-bg);
}

.quote-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quote-box {
    padding: 2rem;
}

.quote-icon {
    fill: var(--accent-color);
    margin-bottom: 2rem;
}

.quote-box h3 {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.quote-divider {
    border: none;
    height: 2px;
    background-color: var(--accent-color);
    margin: 2rem 0;
    width: 100px;
}

.quote-author {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.quote-image {
    width: 100%;
    aspect-ratio: 3/2;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.quote-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.quote-slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.quote-slider-img.active {
    opacity: 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fef9f5 0%, #ffffff 100%);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: var(--primary-bg);
}

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

.feature-card {
    background-color: var(--secondary-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 114, 26, 0.15);
    border-color: var(--accent-color);
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Newsflash Section */
.newsflash-section {
    padding: 6rem 0;
    background-color: var(--secondary-bg);
}

.newsflash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsflash-image {
    width: 100%;
    aspect-ratio: 4/3;
}

.newsflash-content h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.newsflash-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: #ffffff;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #ffffff;
    transform: translateY(-3px);
}

/* App Section */
.app-section {
    padding: 6rem 0;
    background-color: var(--primary-bg);
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 700px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
}

.app-card {
    width: 100%;
    max-width: 250px;
}

.app-card a {
    display: block;
    width: 100%;
    transition: transform 0.3s ease;
}

.app-card a:hover {
    transform: scale(1.05);
}

.app-badge {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--secondary-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 110px;
    width: auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 114, 26, 0.2);
}

.social-icons a:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 114, 26, 0.4);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-divider {
    border: none;
    height: 1px;
    background-color: var(--border-color);
    margin: 2rem 0;
}

.powered-by {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.powered-by a {
    color: var(--accent-color);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .quote-image-grid,
    .newsflash-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.3rem;
    }

    .product-box {
        min-width: auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-image {
        order: -1;
    }
}

@media (max-width: 1024px) {
    .nav-grid {
        grid-template-columns: auto 1fr auto;
    }

    .nav-left {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .logo {
        justify-content: center;
    }

    .nav-right {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .slider-btn {
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .quote-text {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .product-box {
        max-width: 300px;
        min-height: 200px;
        padding: 1.5rem 1rem;
    }

    .product-logo {
        width: 120px;
    }

    .product-label {
        font-size: 0.9rem;
    }
}


/* Page Hero */
.page-hero {
    padding: 150px 0 80px;
    background: var(--secondary-bg);
    text-align: center;
    margin-top: 0;
    transition: background-color 0.3s ease;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin: 0;
}

/* Page Content */
.page-content {
    padding: 4rem 0;
    background-color: var(--primary-bg);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.content-wrapper h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.values-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

.values-list strong {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-info {
    background-color: var(--secondary-bg);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.contact-info h3 {
    color: var(--accent-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.map-container {
    margin: 3rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    display: block;
    width: 100%;
}

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

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .content-wrapper h2 {
        font-size: 2rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.5rem;
    }
}


/* Application Form Styles */
.application-form {
    background-color: var(--secondary-bg);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 1px solid var(--border-color);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.3s ease;
    background-color: var(--primary-bg);
    color: var(--text-primary);
}

.form-group select option {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    padding: 0.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 114, 26, 0.1);
}

.form-group input[type="file"] {
    padding: 0.6rem;
    cursor: pointer;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

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

.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.success-message {
    background-color: #d4edda;
    border: 2px solid #c3e6cb;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    margin-top: 2rem;
}

.success-message h3 {
    color: #155724;
    margin-bottom: 1rem;
}

.success-message p {
    color: #155724;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .application-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 114, 26, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 114, 26, 0.6);
    background-color: var(--accent-dark);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #ffffff;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 114, 26, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    border: none;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 114, 26, 0.6);
    background-color: var(--accent-dark);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 165px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 114, 26, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 114, 26, 0.6);
    background-color: var(--accent-dark);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.theme-icon {
    display: none;
}

[data-theme="light"] .theme-icon.sun,
[data-theme="dark"] .theme-icon.moon {
    display: block;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 85px;
        right: 20px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
    
    .theme-toggle {
        width: 45px;
        height: 45px;
        bottom: 140px;
        right: 20px;
    }
    
    .theme-toggle svg {
        width: 20px;
        height: 20px;
    }
}
