/* Genel Ayarlar ve Değişkenler */
:root {
    --primary-color: #D4AF37;
    /* Altın Sarısı */
    --hover-color: #f1c40f;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-light: #f5f5f5;
    --text-dim: #b3b3b3;
    --font-heading: 'Lato', sans-serif;
    --font-body: 'Cabin', sans-serif;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-light);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Özelleştirme */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    display: block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 15px 40px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-wrapper {
    height: 120px;
    /* Logoyu fiziksel olarak büyüttük */
    width: 120px;
    border-radius: 50%;
    /* Çerçeveyi kaldırdık: Daha modern ve ferah durması için */
    border: none;
    /* Hafif gölge ile derinlik koruyoruz */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    /* Başlangıçta taşanları gizle, ama hover'da açacağız */
    overflow: hidden;
    position: relative;
    top: 15px;
    /* Navbar'dan biraz daha aşağı sarkıttık */
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    z-index: 1001;
    /* Diğer elementlerin üstüne çıksın */
}

.navbar-logo-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    /* Bayrakların kesilmemesi için scale'i normale çektik */
    transform: scale(1.0);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 50%;
}

.logo-wrapper:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    border-color: var(--primary-color);
    overflow: visible;
    /* Çerçeveyi aşıp büyümesine izin ver */
}

.logo-wrapper:hover .navbar-logo-img {
    /* Çerçeveyi aşıp büyüsün */
    transform: scale(1.3);
    z-index: 1002;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    /* Öne çıkma hissi için ekstra gölge */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Language Selector Styles */
.lang-selector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Space between icon and text */
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.3);
}

.lang-selector:hover {
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.6);
}

.lang-icon {
    font-size: 18px;
    color: var(--text-light);
}

.lang-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    line-height: 1;
}

.lang-arrow {
    display: none;
    /* Hide arrow for cleaner side-look */
}

/* Custom Dropdown Menu - Vertical Below Position */
/* Custom Dropdown Menu - Vertical Below Position */
.lang-dropdown {
    position: absolute;
    top: 140%;
    /* Space below button */
    right: 0;
    /* Align Right to keep on screen */
    left: auto;
    transform: translateY(-10px);
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    /* Box shape */
    list-style: none;
    padding: 10px;
    display: flex;
    flex-direction: column;
    /* Vertical list */
    gap: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    /* Bouncy pop */
    width: 140px;
    z-index: 9999;
}

/* Small Arrow pointing up */
.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 15px;
    width: 12px;
    height: 12px;
    background: rgba(20, 20, 20, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    transform: rotate(45deg);
}

.lang-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* If user meant 'next to' strictly (horizontal), we could do left: 100% margin-left:10px, 
   but for navbar right edge, below is safer. Let's stick to below for now as it's standard UI. */

.lang-dropdown li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
}

.lang-dropdown li:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
}

.lang-dropdown li img {
    border-radius: 2px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('http://img1.wsimg.com/isteam/stock/89170/:/');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: zoomEffect 20s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    opacity: 0;
    /* JS ile açılacak */
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ddd;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background-color: var(--hover-color);
}

/* Sections General */
.section {
    padding: 100px 20px;
    position: relative;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
    color: var(--primary-color);
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
}

.card:hover .service-icon {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.card p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.6;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    padding-bottom: 70%;
    /* Slightly rectangular, more cinematic */
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.8);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

/* Gallery Overlay Effect */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
    opacity: 0.6;
    transition: var(--transition);
}

.gallery-item:hover::before {
    opacity: 0;
}

/* Contact Form Section */
.contact-section-wrapper {
    background: #111;
    border-top: 1px solid #222;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #111;
    /* Slightly darker card background */
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-container h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-dim);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
    background: #161616;
}

.contact-form-container .btn-primary {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.contact-form-container .btn-primary:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
}

/* Footer */
footer {
    padding: 50px 20px;
    text-align: center;
    background-color: #050505;
    color: var(--text-dim);
    font-size: 14px;
    border-top: 1px solid #222;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #20BA56;
}

/* Animations */
@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-container {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.info-box p {
    color: var(--text-dim);
    line-height: 1.6;
}

.info-box h4 {
    font-size: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.working-hours h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        background: #000;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .grid-2,
    .gallery-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Lightbox Modal */
}

.lightbox {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    border: 2px solid var(--primary-color);
    animation: zoomIn 0.3s ease;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.close-lightbox:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 20px;
    cursor: pointer;
    z-index: 2002;
    transition: var(--transition);
    border-radius: 5px;
}

.lightbox-nav:hover {
    background: var(--primary-color);
    color: #000;
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        padding: 10px;
        font-size: 20px;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 20px 25px;
    color: var(--text-dim);
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Active State for FAQ */
.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    /* Plus becomes X */
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Cascade Calculator */
.calculator-container {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.calc-desc {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 30px;
}

.calc-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

/* Gallery Grid Fix */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    /* Hidden initially */
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    /* Slide up on hover */
}

.gallery-overlay h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 14px;
    color: #ddd;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 12px;
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
}

.form-row input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: block;
    width: 100%;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #000;
}

.visa-list-container {
    margin-bottom: 30px;
}

.visa-list-container h4 {
    margin-bottom: 15px;
    color: #fff;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.visa-list {
    list-style: none;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
}

.visa-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 3px solid var(--primary-color);
}

.visa-list li.empty-list {
    background: transparent;
    text-align: center;
    color: #666;
    border: none;
    padding: 20px;
}

.delete-visa {
    color: #ff4757;
    cursor: pointer;
    transition: var(--transition);
}

.delete-visa:hover {
    transform: scale(1.2);
}

.calc-btn {
    width: 100%;
    font-size: 18px;
    letter-spacing: 2px;
}

.calc-result {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: none;
    /* Initially hidden */
}

.calc-result.success {
    display: block;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.calc-result h3 {
    color: #fff;
    margin-bottom: 10px;
}

.calc-result span {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .logo-wrapper {
        height: 70px;
        width: 70px;
        top: 0;
    }
}


/* Calculator Results New Design */
.success-container {
    margin-top: 30px;
    text-align: left;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
}

.result-success-text {
    background-color: #e2fbd7;
    border: 1px solid #c3e6cb;
    color: #123d1e;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.result-success-text strong {
    font-weight: 800;
}

.result-info-box {
    background-color: #e7f1ff;
    border: 1px solid #b6d4fe;
    color: #0d6efd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.result-info-box:hover {
    background-color: #cfe2ff;
}

.result-disclaimer {
    font-size: 11px;
    color: #888;
    line-height: 1.5;
    background: #111;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #333;
}

.result-disclaimer strong {
    color: #0d6efd;
}

.warning-text {
    margin-top: 10px;
    color: #9c6500;
}

.warning-text strong {
    color: #d4af37 !important;
    /* Gold warning */
}

/* Calculator Success Box */
.success-box {
    background-color: #e2fbd7 !important;
    border-color: #c3e6cb !important;
    color: #123d1e !important;
    padding: 20px !important;
    border-radius: 8px !important;
    margin-top: 20px !important;
    text-align: center !important;
    border: 1px solid #c3e6cb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.success-box strong {
    font-weight: 700;
}

/* Calculator Warning Box */
.warning-container {
    margin-top: 30px;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    display: none;
}

.result-warning-text {
    background-color: #ffe6e6;
    border: 1px solid #ffcccc;
    color: #cc0000;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}