:root {
    --primary: #FBB03B; /* Matte Gold from MICE */
    --primary-dark: #b87a1d;
    --primary-light: #fff7e6;
    --secondary: #222222; /* Graphite Anthracite from MICE */
    --accent: #e59c27; 
    --topbar-bg: #111111;
    --text-main: #222222;
    --text-muted: #555555;
    --bg-light: #F4F5F7;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --container-width: 1200px;
    --font-primary: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

h1, .accent-font {
    font-family: var(--font-accent) !important;
}

body {
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--secondary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Header - Premium Overlay */
.navbar {
    height: auto;
    min-height: 100px;
    position: fixed; /* Using fixed for sticky behavior */
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 30px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    transition: all 0.4s ease; /* Smooth transition for scroll effect */
}

/* Scrolled state for sticky navbar */
.navbar.scrolled {
    min-height: 80px;
    padding: 15px 4%;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    text-decoration: none;
    line-height: 1.2;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.logo-sub {
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 3px;
    font-weight: 600;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-email {
    color: white;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(0,0,0,0.1);
}

.header-email i {
    color: var(--primary);
    font-size: 14px;
}

.header-phone {
    background: var(--primary);
    color: #000 !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(251, 176, 59, 0.3);
}

.lang-switch {
    color: white;
    font-weight: 600;
    font-size: 12px;
    margin-left: 10px;
}

/* Slider Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 0; /* Removed padding to allow image to show directly behind header */
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    width: 100%;
    padding-top: 180px; /* Increased padding to ensure text clear the header */
    padding-bottom: 50px;
}

.hero-text h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    max-width: 600px;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.hero-btn {
    background: var(--primary);
    color: white;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
}

.hero-dots {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border: 2px solid white;
    border-radius: 50%;
}

.dot.active {
    background: white;
}

/* Overlapping Cards */
.featured-cards {
    margin-top: -80px;
    position: relative;
    z-index: 20;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-right: 1px solid #eee;
    transition: var(--transition);
}

.feature-card:last-child {
    border-right: none;
}

.feature-card:hover {
    background: var(--primary);
    color: white;
}

.feature-card > i {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.feature-card:hover > i {
    background: white;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.feature-card:hover h3 {
    color: white;
}

/* Dark Service Grid */
.hizmetler-dark {
    background: var(--secondary);
    padding: 100px 0;
    color: white;
}

.hizmetler-dark .section-header h2 {
    color: white;
}

.dark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.dark-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    padding-bottom: 90px;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    cursor: pointer;
}

.dark-card:hover {
    background: rgba(251, 176, 59, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.dark-card-btn {
    position: absolute;
    bottom: 25px;
    left: 30px;
    background: var(--primary);
    color: var(--secondary);
    padding: 6px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-transform: uppercase;
}

.dark-card:hover .dark-card-btn {
    background: white;
    box-shadow: 0 5px 15px rgba(251, 176, 59, 0.3);
}

.dark-card-text h4 {
    color: white;
    margin-bottom: 10px;
}

.dark-card-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* Country Cards List */
.country-list {
    padding: 80px 0;
}

.country-item {
    display: flex;
    background: white;
    border: 1px solid #eee;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.country-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.country-img {
    width: 400px;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.country-info {
    padding: 40px;
    flex: 1;
}

.country-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

/* Features/Steps */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
}

/* Countries Section */
.countries {
    padding: 100px 0;
    background: var(--bg-light);
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.country-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.country-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.country-flag {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

/* Appointment Form */
.appointment {
    padding: 100px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

label {
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary);
}

input, select, textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    transition: var(--transition);
    background: #fdfdfd;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary-dark);
}

/* Footer Update - Matching MICE Style */
footer {
    background: var(--secondary);
    color: white;
    padding: 80px 5% 20px;
    background-image: url('data:image/svg+xml;utf8,<svg opacity="0.05" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="white" stroke-width="2" fill="none"/></svg>');
    background-size: 300px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-family: var(--font-accent);
}

.footer-info p {
    margin-bottom: 15px;
    color: #aaaaaa;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-form input, .footer-form textarea {
    padding: 15px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--secondary);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.footer-form button {
    background: var(--primary);
    color: var(--secondary);
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    align-self: flex-start;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.price-card.selected {
    border: 3px solid var(--primary);
    background: var(--primary-light);
}

/* Info Section Styles */
.info-section {
    padding: 100px 0;
}

.info-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.info-tab {
    padding: 15px 30px;
    background: #f0f0f0;
    cursor: pointer;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
}

.info-tab.active {
    background: var(--primary);
    color: var(--secondary);
}

.info-content-wrapper {
    display: none;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    animation: fadeIn 0.5s ease;
}

.info-content-wrapper.active {
    display: grid;
}

.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: flex-start;
    position: sticky;
    top: 120px;
}

.sidebar-box {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(251, 176, 59, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.sidebar-box i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.sidebar-box h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.sidebar-box p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.5;
}

.sidebar-cta {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.sidebar-cta:hover {
    background: white;
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(251, 176, 59, 0.4);
}

/* Expanded Country Grid */
.country-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.country-card-small {
    background: white;
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.country-card-small:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.country-card-small img {
    width: 40px;
    margin-bottom: 10px;
}

.price-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 25px;
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.price-tag span {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-features {
    margin-bottom: 35px;
    text-align: left;
}

.price-features li {
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.price-features i {
    color: var(--primary);
}

/* Modal Form styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex; align-items: center; justify-content: center;
    z-index: 3000;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1; visibility: visible;
}

.modal-content {
    background: white;
    width: 90%; max-width: 500px;
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

.close-modal {
    position: absolute; top: 15px; right: 20px;
    font-size: 24px; cursor: pointer; color: var(--secondary);
}

/* Dynamic Form Fields Fix */
.dynamic-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    margin-top: 15px;
}

.dynamic-form-grid > div {
    min-width: 0;
}

.dynamic-form-grid input, 
.dynamic-form-grid select {
    width: 100% !important;
    min-width: 0;
}

.form-label-small {
    font-size: 11px; 
    color: var(--primary); 
    margin-bottom: 5px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

/* About Section Update - MICE Style */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 0;
}

.about-visual {
    flex: 1;
    position: relative;
}

.about-content {
    flex: 1;
}

.about-content p {
    border-left: 5px solid var(--primary);
    padding-left: 25px;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Floating Buttons */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 2000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #128c7e;
    color: white;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--secondary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 2000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

/* About Section Styles */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-visual {
    flex: 1;
}

.about-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #666;
    font-size: 0.9rem;
    margin-top: 60px;
}

/* Travel Solutions Section */
.travel-solutions {
    background: #1a1a1a;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.travel-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    transition: var(--transition);
}

.travel-card:hover {
    background: rgba(251, 176, 59, 0.1);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.travel-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.travel-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.travel-card p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* Responsive */
/* Structured Visa Type Layout */
.visa-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.v-type-box {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.v-type-box:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.v-type-header {
    background: #fcfcfc;
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: var(--secondary);
}

.v-type-header i {
    color: var(--primary);
    font-size: 1.2rem;
}

.v-type-body {
    padding: 20px 25px;
}

.v-type-body p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.v-subtypes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.v-subtypes span {
    background: rgba(251, 176, 59, 0.1);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(251, 176, 59, 0.3);
}

.v-type-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.feature-card:hover .v-type-cta {
    color: white;
}

.v-type-cta i {
    font-size: 0.75rem;
    color: inherit;
    transition: var(--transition);
}

.v-type-cta:hover {
    color: var(--secondary);
}

.v-type-cta:hover i {
    transform: translateX(5px);
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    .about-container {
        flex-direction: column;
    }
    .pricing-grid, .dark-grid {
        grid-template-columns: 1fr;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
}
