/* ============================================
   WEBYAZILIM.COM - PREMIUM PROFESYONEL TASARIM
   ============================================ */

:root {
    --primary-color: #0d1b2a;
    --secondary-color: #1b263b;
    --accent-color: #CC0066;
    --accent-gradient: linear-gradient(135deg, #CC0066 0%, #FF3399 100%);
    --primary-gradient: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #415a77 100%);
    --text-color: #1a1a1a;
    --text-secondary: #4a4a4a;
    --bg-color: #ffffff;
    --light-bg: #f8f9fa;
    --card-bg: #ffffff;
    --border-color: #e8e8e8;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-accent: 0 8px 30px rgba(204, 0, 102, 0.3);
}

/* Dark Mode Variables */
.dark-mode {
    --primary-color: #1a2332;
    --secondary-color: #2d3748;
    --accent-color: #FF3399;
    --accent-gradient: linear-gradient(135deg, #FF3399 0%, #CC0066 100%);
    --primary-gradient: linear-gradient(135deg, #1a2332 0%, #2d3748 50%, #4a5568 100%);
    --text-color: #f7fafc;
    --text-secondary: #cbd5e0;
    --bg-color: #0f1419;
    --light-bg: #1a202c;
    --card-bg: #1e2738;
    --border-color: #2d3748;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.7);
    --shadow-accent: 0 8px 30px rgba(255, 51, 153, 0.4);
}

/* Dark Mode Genel Kurallar - Tüm yazıların beyaz olması için */
.dark-mode {
    color: var(--text-color);
}

.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5,
.dark-mode h6 {
    color: var(--text-color) !important;
}

.dark-mode p,
.dark-mode span:not(.contact-icon),
.dark-mode div:not(.contact-icon),
.dark-mode li,
.dark-mode label,
.dark-mode small,
.dark-mode strong {
    color: var(--text-color) !important;
}

.dark-mode .text-secondary,
.dark-mode [style*="color: var(--text-secondary)"] {
    color: var(--text-secondary) !important;
}

.dark-mode input,
.dark-mode textarea,
.dark-mode select {
    color: var(--text-color) !important;
    background-color: var(--card-bg) !important;
    border-color: var(--border-color) !important;
}

.dark-mode input::placeholder,
.dark-mode textarea::placeholder {
    color: var(--text-secondary) !important;
    opacity: 0.7;
}

.dark-mode a:not(.btn):not([style*="color: white"]):not([style*="color: #"]) {
    color: var(--accent-color) !important;
}

.dark-mode a:hover:not(.btn):not([style*="color: white"]):not([style*="color: #"]) {
    color: var(--accent-color) !important;
    opacity: 0.8;
}

.dark-mode .alert {
    color: var(--text-color) !important;
}

.dark-mode .service-card {
    background-color: var(--card-bg) !important;
    color: var(--text-color) !important;
}

.dark-mode .service-card * {
    color: inherit;
}

.dark-mode .service-card p,
.dark-mode .service-card span,
.dark-mode .service-card div {
    color: var(--text-color) !important;
}

.dark-mode .feature-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

.dark-mode .step-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

.dark-mode .icon-card {
    background: var(--light-bg);
}

.dark-mode .service-info-card {
    background: var(--light-bg);
}

.dark-mode .package-card {
    background: var(--light-bg);
    border-color: var(--border-color);
}

/* CTA Container - Force white text in all modes */
.dark-mode .cta-container,
.dark-mode .cta-container * {
    color: white !important;
}

.dark-mode .cta-container h1,
.dark-mode .cta-container h2,
.dark-mode .cta-container h3,
.dark-mode .cta-container h4,
.dark-mode .cta-container h5,
.dark-mode .cta-container h6,
.dark-mode .cta-container p,
.dark-mode .cta-container span,
.dark-mode .cta-container div,
.dark-mode .cta-container strong,
.dark-mode .cta-container em,
.dark-mode .cta-container a:not(.btn) {
    color: white !important;
}

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

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.4s ease, color 0.4s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Header & Navigation */
.header {
    background: var(--primary-gradient);
    color: white;
    padding: 1.5rem 0;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.5px;
    transition: transform 0.3s;
}

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

.logo i {
    color: var(--accent-color);
    font-size: 1.8rem;
}

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

.nav-menu li a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    position: relative;
    text-transform: none;
    letter-spacing: 0.3px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu li a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu li a:hover::after {
    width: 60%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--card-bg);
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    list-style: none;
    padding: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.dark-mode .dropdown-menu {
    background: var(--card-bg);
    border-color: var(--border-color);
}

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

.dropdown-menu li {
    margin: 0.25rem 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--accent-color);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s;
}

.dropdown-menu li a:hover {
    background: var(--light-bg);
    color: var(--accent-color);
    padding-left: 1.5rem;
}

.dropdown-menu li a:hover::before {
    height: 60%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    left: -100%;
    top: 0;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--card-bg);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
}

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

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(204, 0, 102, 0.05) 0%, transparent 100%);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.mobile-menu-header .logo {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-header .logo i {
    color: var(--accent-color);
    font-size: 1.75rem;
}

.mobile-menu-close {
    background: rgba(204, 0, 102, 0.1);
    border: 2px solid rgba(204, 0, 102, 0.2);
    font-size: 1.25rem;
    color: var(--accent-color);
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: var(--accent-color);
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(204, 0, 102, 0.3);
}

.mobile-nav-menu {
    list-style: none;
    padding: 1.5rem 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-menu li {
    margin: 0;
}

.mobile-nav-menu li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    margin: 0.25rem 1rem;
    border-radius: 12px;
    border-bottom: none;
}

.mobile-nav-menu li a i:first-child {
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.mobile-nav-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 60%;
    background: linear-gradient(90deg, var(--accent-color), rgba(204, 0, 102, 0.3));
    border-radius: 0 8px 8px 0;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-menu li a:hover {
    background: linear-gradient(90deg, rgba(204, 0, 102, 0.08) 0%, rgba(204, 0, 102, 0.03) 100%);
    padding-left: 2rem;
    color: var(--accent-color);
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(204, 0, 102, 0.1);
}

.mobile-nav-menu li a:hover::before {
    width: 4px;
}

.mobile-nav-menu li a:hover i:first-child {
    transform: scale(1.2);
    color: var(--accent-hover);
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown > a i:last-child {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: auto;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.mobile-dropdown.active > a {
    background: linear-gradient(90deg, rgba(204, 0, 102, 0.1) 0%, rgba(204, 0, 102, 0.05) 100%);
    color: var(--accent-color);
    font-weight: 600;
}

.mobile-dropdown.active > a i:last-child {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    background: linear-gradient(180deg, rgba(204, 0, 102, 0.03) 0%, transparent 100%);
    margin: 0.5rem 1rem;
    border-radius: 12px;
    padding: 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 600px;
    padding: 0.5rem 0;
}

.mobile-dropdown-menu li a {
    padding-left: 3.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0.15rem 0.5rem;
    border-bottom: none;
    border-left: 2px solid transparent;
}

.mobile-dropdown-menu li a:hover {
    border-left-color: var(--accent-color);
    background: rgba(204, 0, 102, 0.05);
    padding-left: 3.75rem;
}

.mobile-dropdown-menu li a::before {
    display: none;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Section */
.hero {
    background: var(--primary-gradient);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(204, 0, 102, 0.05) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(204, 0, 102, 0.1) 0%, transparent 70%);
    animation: rotateBackground 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* Animated background elements */
.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-animated-bg::before,
.hero-animated-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 15s ease-in-out infinite;
}

.hero-animated-bg::before {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-animated-bg::after {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

.hero-shape-1,
.hero-shape-2,
.hero-shape-3 {
    position: absolute;
    border-radius: 50%;
    background: rgba(204, 0, 102, 0.08);
    pointer-events: none;
    z-index: 0;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: pulse 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: pulse 10s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 12s ease-in-out infinite;
    animation-delay: 4s;
}

/* Animations */
@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.7;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.6;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

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

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

/* Sections */
.section {
    padding: 3rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 900;
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--accent-gradient);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Features Grid (4 columns) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--card-bg);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
    flex-grow: 1;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    border: 2px solid transparent;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
    opacity: 0.95;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Content Section */
.content-section {
    padding: 3rem 0;
}

.content-section .cta-section:last-child {
    margin-bottom: 0;
}

.section-compact .content-section {
    padding: 1.5rem 0 0;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 800;
}

.content-section h3 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.content-section p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.content-section ul li {
    margin-bottom: 0.75rem;
    line-height: 1.9;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 2rem auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--bg-color);
    color: var(--text-color);
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(204, 0, 102, 0.1);
}

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

.captcha-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.captcha-image {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem;
    background: var(--bg-color);
    cursor: pointer;
    transition: all 0.3s;
}

.captcha-image:hover {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.captcha-input {
    flex: 1;
}

.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
    border: 2px solid transparent;
}

.alert-success {
    background: #10b981;
    color: white;
    border-color: #059669;
}

.alert-error {
    background: #ef4444;
    color: white;
    border-color: #dc2626;
}

/* Footer */
.footer {
    background: var(--primary-gradient);
    color: white;
    padding: 4rem 0 1.5rem;
    margin-top: 3rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.contact-info a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    flex: 1;
}

.contact-info a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

/* Footer içindeki contact-info için beyaz renk */
.footer .contact-info {
    color: rgba(255, 255, 255, 0.9);
}

.footer .contact-info a {
    color: rgba(255, 255, 255, 0.9) !important;
}

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

.footer .contact-info p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--accent-color);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Layout */
@media (min-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr !important;
    }
}

.contact-info-section,
.contact-form-section {
    width: 100%;
}

.contact-info-item {
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    padding-left: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        width: 90%;
        max-width: 350px;
    }

    .mobile-menu-header {
        padding: 1.5rem 1.25rem;
    }

    .mobile-menu-header .logo {
        font-size: 1.3rem;
    }

    .mobile-nav-menu li a {
        padding: 1.1rem 1.25rem;
        font-size: 1rem;
        margin: 0.2rem 0.75rem;
    }

    .mobile-dropdown-menu {
        margin: 0.5rem 0.75rem;
    }

    .mobile-dropdown-menu li a {
        padding-left: 3rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 5rem 0 4rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
    }

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

    .section {
        padding: 4rem 0;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .service-card {
        padding: 2.5rem 2rem;
    }

    .footer {
        padding: 3rem 0 1rem;
        margin-top: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }

    .footer-section p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0.6rem;
    }

    .footer-section a {
        font-size: 0.95rem;
    }

    .contact-info {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .contact-icon {
        font-size: 1.1rem;
        width: 20px;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }

    .header-container {
        padding: 0 20px;
    }

    .container {
        padding: 0 20px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr !important;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 95%;
        max-width: 320px;
    }

    .mobile-menu-header {
        padding: 1.25rem 1rem;
    }

    .mobile-menu-header .logo {
        font-size: 1.2rem;
    }

    .mobile-menu-close {
        width: 40px;
        height: 40px;
        padding: 0.6rem;
        font-size: 1.1rem;
    }

    .mobile-nav-menu {
        padding: 1rem 0;
    }

    .mobile-nav-menu li a {
        padding: 1rem 1rem;
        font-size: 0.95rem;
        margin: 0.15rem 0.5rem;
    }

    .mobile-dropdown-menu li a {
        padding-left: 2.5rem;
        font-size: 0.85rem;
        margin: 0.1rem 0.25rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .contact-layout {
        gap: 2rem !important;
        margin-top: 2rem !important;
    }

    .service-card {
        padding: 2rem 1.5rem !important;
    }

    .contact-info-section .service-card,
    .contact-form-section .service-card {
        padding: 2rem 1.5rem !important;
    }

    .contact-info-section h3,
    .contact-form-section h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .contact-info-item {
        margin-bottom: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .contact-info {
        font-size: 0.95rem !important;
    }

    .contact-info a {
        font-size: 1rem !important;
    }

    .footer {
        padding: 2.5rem 0 1rem;
        margin-top: 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }

    .footer-section a {
        font-size: 0.9rem;
    }

    .contact-info {
        gap: 0.6rem;
        margin-bottom: 0.9rem;
    }

    .contact-icon {
        font-size: 1rem;
        width: 18px;
    }

    .footer-bottom {
        padding-top: 1.25rem;
        font-size: 0.8rem;
    }

    .section-subtitle {
        margin-bottom: 2rem !important;
        padding: 0 1rem;
    }

    iframe {
        height: 300px !important;
    }

    .map-container {
        height: 300px !important;
    }

    .map-title {
        font-size: 1.5rem !important;
        padding: 1.5rem 1.5rem 0 !important;
        margin-bottom: 1rem !important;
    }

    .contact-info-section h3[style*="font-size: 1.75rem"],
    .contact-form-section h3[style*="font-size: 1.75rem"] {
        font-size: 1.5rem !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .form-group label {
        font-size: 0.95rem !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem !important;
        padding: 0.75rem !important;
    }

    .captcha-group {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .captcha-image {
        width: 100% !important;
        max-width: 200px !important;
    }

    .captcha-input {
        width: 100% !important;
    }
}

/* ============================================
   INLINE STYLE REPLACEMENTS - CSS CLASSES
   ============================================ */

/* Section Spacing */
.section-compact {
    padding-top: 2rem;
    padding-bottom: 0;
}

.section-compact .content-section {
    padding: 1.5rem 0 0;
}

.section-spacing {
    margin: 2.5rem 0;
}

/* Section Headers */
.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-large {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-subtitle-large {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-title-medium {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-title-medium i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

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

.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.grid-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Feature Cards */
.feature-card {
    padding: 2.5rem;
    text-align: left;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #FF3399);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(204, 0, 102, 0.3);
}

.feature-icon-box i {
    font-size: 1.8rem;
    color: white !important;
    display: block !important;
    transition: transform 0.3s ease;
}

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

.feature-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Service Info Cards */
.service-info-card {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.service-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-left-width: 4px;
}

.service-info-card h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-info-card h4 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.service-info-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Step Cards */
.step-card {
    padding: 2rem;
    text-align: left;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.step-number {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: block;
}

.step-card:hover .step-number {
    transform: scale(1.1);
    color: var(--accent-hover);
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.step-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Small Icon Cards */
.icon-card {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.icon-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}

.icon-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
}

.icon-card:hover i {
    transform: scale(1.1);
    color: var(--accent-hover);
}

.icon-card h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.icon-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Package Cards */
.package-card {
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border: 2px solid var(--accent-color);
    position: relative;
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.package-card h4 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.package-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.package-card ul {
    color: var(--text-secondary);
    line-height: 2;
    margin: 0;
    padding-left: 1.5rem;
}

/* CTA Section */
.cta-section {
    margin-top: 3rem;
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.cta-container {
    background: var(--primary-gradient);
    border-radius: 20px;
    padding: 4rem 3rem;
    color: white;
    position: relative;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.cta-container * {
    color: white !important;
}

.cta-container h1,
.cta-container h2,
.cta-container h3,
.cta-container h4,
.cta-container h5,
.cta-container h6,
.cta-container p,
.cta-container span,
.cta-container div,
.cta-container strong,
.cta-container em,
.cta-container a:not(.btn) {
    color: white !important;
}

.cta-decoration-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-decoration-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
}

.cta-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: white;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(204, 0, 102, 0.4);
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.cta-stats {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.cta-stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white !important;
}

.cta-stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    color: white !important;
}

/* Content Text */
.content-intro {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.content-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group-inline {
    margin-bottom: 0;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
}

.map-card {
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
}

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

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

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
}

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

/* Additional utility classes */
.section-light {
    background: var(--light-bg);
}

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

.content-intro-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

/* Contact page specific classes */
.content-section-full {
    max-width: 100%;
}

.section-subtitle-center {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-card {
    text-align: left;
    padding: 3rem;
}

.contact-info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item-last {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info {
    margin-bottom: 0.5rem;
}

.contact-info-address {
    align-items: flex-start;
}

.contact-label {
    color: var(--text-color) !important;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: var(--text-secondary) !important;
    text-decoration: none;
    font-size: 1.05rem;
}

.contact-link:hover {
    color: var(--accent-color) !important;
}

.contact-address {
    color: var(--text-secondary) !important;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* İletişim sayfasındaki contact-info için özel stiller */
.contact-card .contact-info a {
    color: var(--text-secondary) !important;
}

.contact-card .contact-info a:hover {
    color: var(--accent-color) !important;
}

.contact-card .contact-info strong {
    color: var(--text-color) !important;
}

.contact-card .contact-info div {
    color: var(--text-color) !important;
}

.contact-icon-address {
    margin-top: 0.25rem;
}

.contact-form {
    max-width: 100%;
    padding: 0;
    box-shadow: none;
    border: none;
    background: transparent;
}

.form-group-inline {
    margin-bottom: 0;
}

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

.alert-margin {
    margin-bottom: 2rem;
}

.captcha-clickable {
    cursor: pointer;
}

.captcha-uppercase {
    text-transform: uppercase;
}

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

.map-section {
    margin-top: 4rem;
}

.map-card {
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
}

.map-iframe {
    border: 0;
    display: block;
}

/* Icon margin utilities */
.icon-margin-right {
    margin-right: 0.75rem;
}

.icon-margin-right-small {
    margin-right: 0.5rem;
}

.content-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Package card styles */
.package-card {
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    position: relative;
}

.package-card.featured {
    border: 2px solid var(--accent-color);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.package-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.package-card ul {
    color: var(--text-secondary);
    line-height: 2;
    margin: 0;
    padding-left: 1.5rem;
}

/* Responsive adjustments for new classes */
@media (max-width: 768px) {
    .grid-features,
    .grid-services,
    .grid-steps,
    .grid-small {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

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

    .section-subtitle-large {
        font-size: 1.1rem !important;
    }

    .cta-container {
        padding: 3rem 2rem !important;
    }

    .cta-title {
        font-size: 2rem !important;
    }

    .cta-text {
        font-size: 1.1rem !important;
    }

    .map-container {
        height: 300px !important;
    }

    .map-title {
        font-size: 1.5rem !important;
        padding: 1.5rem 1.5rem 0 !important;
    }
}
