/*
Theme Name: Turkish Citizen Theme
Theme URI: https://example.com/
Author: OpenAI
Author URI: https://openai.com/
Description: Static HTML converted into a simple WordPress theme.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: turkishcitizen-theme
*/

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

        :root {
            --navy: #0f172a;
            --navy-light: #1e293b;
            --gold: #d4af37;
            --gold-light: #f0d98d;
            --teal: #14b8a6;
            --green: #22c55e;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

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

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s;
        }

        header.scrolled {
            background: var(--navy);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        header.transparent {
            background: transparent;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            font-weight: 700;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
            font-size: 0.875rem;
        }

        nav a:hover {
            color: var(--gold);
        }

        .header-buttons {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .btn {
            padding: 0.625rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--navy);
        }

        .btn-primary:hover {
            box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
        }

        .btn-whatsapp {
            background: var(--green);
            color: white;
            padding: 0.625rem;
        }

        .btn-whatsapp:hover {
            background: #16a34a;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu {
            display: none;
            background: var(--navy-light);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem 1rem;
        }

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

        .mobile-menu nav {
            flex-direction: column;
            gap: 1rem;
        }

        /* Hero Section */
        #hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background-image: url('https://images.pexels.com/photos/5480820/pexels-photo-5480820.jpeg?auto=compress&cs=tinysrgb&w=1920');
            background-size: cover;
            background-position: center;
        }

        #hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.7));
        }

        .hero-content {
            position: relative;
            z-index: 10;
            padding: 8rem 0 4rem;
        }

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

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-text .gradient-text {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text .subtitle {
            font-size: 1.25rem;
            color: #e5e7eb;
            margin-bottom: 1rem;
        }

        .hero-text .description {
            font-size: 1.125rem;
            color: #d1d5db;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .trust-indicators {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            font-weight: 500;
        }

        .hero-form {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            max-width: 500px;
        }

        .hero-form h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .hero-form p {
            color: #6b7280;
            margin-bottom: 1.5rem;
        }

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

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: #374151;
            margin-bottom: 0.25rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.2s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }

        .form-group textarea {
            resize: none;
        }

        /* Section Styles */
        section {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.125rem;
            color: #6b7280;
            max-width: 800px;
            margin: 0 auto;
        }

        .grid {
            display: grid;
            gap: 2rem;
        }

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

        .grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .grid-4 {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        .card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }

        .card:hover {
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            transform: translateY(-4px);
        }

        .card-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.75rem;
        }

        .card p {
            color: #6b7280;
            line-height: 1.7;
        }

        /* What Is Section */
        #what-is {
            background: #f9fafb;
        }

        /* Requirements Section */
        #requirements .requirement-card {
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            color: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
        }

        #requirements .requirement-card:hover {
            transform: scale(1.05);
        }

        #requirements .card-icon {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        #requirements .highlight {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        /* Process Timeline */
        #process {
            background: linear-gradient(135deg, #f9fafb, white);
        }

        .timeline-step {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-left: 4px solid var(--gold);
            transition: all 0.3s;
        }

        .timeline-step:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        .step-header {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .step-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .step-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: rgba(212, 175, 55, 0.3);
        }

        .step-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--navy);
        }

        /* Advantages Section */
        #advantages {
            position: relative;
            background-image: url('https://images.pexels.com/photos/335393/pexels-photo-335393.jpeg?auto=compress&cs=tinysrgb&w=1920');
            background-size: cover;
            background-position: center;
        }

        #advantages::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.95);
        }

        #advantages .container {
            position: relative;
            z-index: 10;
        }

        #advantages .section-header h2,
        #advantages .section-header p {
            color: white;
        }

        #advantages .section-header p {
            color: #d1d5db;
        }

        #advantages .card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        #advantages .card:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        #advantages .card h3 {
            color: white;
        }

        #advantages .card p {
            color: #d1d5db;
        }

        /* CTA Section */
        #cta {
            padding: 4rem 0;
            background: linear-gradient(135deg, var(--navy), var(--navy-light), var(--navy));
        }

        #cta .cta-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            text-align: center;
        }

        #cta h2 {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }

        #cta p {
            font-size: 1.125rem;
            color: #d1d5db;
        }

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

        /* FAQ Section */
        .faq-item {
            background: #f9fafb;
            border-radius: 1rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item:hover {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem 2rem;
            background: transparent;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            text-align: left;
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--navy);
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: #f3f4f6;
        }

        .faq-icon {
            transition: transform 0.3s;
            color: var(--gold);
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s;
            padding: 0 2rem;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 1.5rem;
        }

        .faq-answer p {
            color: #6b7280;
            line-height: 1.7;
        }

        /* Why Us Section */
        #why-us {
            background: linear-gradient(135deg, var(--navy), var(--navy-light), var(--navy));
        }

        #why-us .section-header h2,
        #why-us .section-header p {
            color: white;
        }

        #why-us .section-header p {
            color: #d1d5db;
        }

        #why-us .card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        #why-us .card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-8px);
        }

        #why-us .card h3 {
            color: white;
            font-size: 1.5rem;
            text-align: center;
        }

        #why-us .card p {
            color: #d1d5db;
            text-align: center;
        }

        #why-us .card-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
        }

        #why-us ul {
            list-style: none;
            margin-top: 1.5rem;
        }

        #why-us ul li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #e5e7eb;
            margin-bottom: 0.75rem;
        }

        #why-us ul li::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* Contact Form Section */
        #closing-form {
            background: linear-gradient(135deg, #f9fafb, white);
        }

        .contact-form-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact-form-card {
            background: white;
            border-radius: 1rem;
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid #f3f4f6;
        }

        /* Contact Info Section */
        #contact .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .contact-card {
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            color: white;
            border-radius: 1rem;
            padding: 2rem;
        }

        .contact-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-item h4 {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .contact-item p,
        .contact-item a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.2s;
        }

        .contact-item a:hover {
            color: var(--gold);
        }

        .map-container {
            border-radius: 1rem;
            overflow: hidden;
            height: 500px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

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

        /* Footer */
        footer {
            background: var(--navy);
            color: white;
            padding: 4rem 0 2rem;
        }

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

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

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.75rem;
        }

        .footer-section ul li a,
        .footer-section ul li button {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.2s;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            font-size: 1rem;
        }

        .footer-section ul li a:hover,
        .footer-section ul li button:hover {
            color: var(--gold);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.2s;
        }

        .social-links a:hover {
            background: var(--gold);
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            text-align: center;
        }

        .footer-bottom p {
            color: #9ca3af;
            font-size: 0.875rem;
        }

        /* Floating WhatsApp */
        .floating-whatsapp {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 999;
            width: 64px;
            height: 64px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
            color: white;
            text-decoration: none;
        }

        .floating-whatsapp:hover {
            background: #16a34a;
            transform: scale(1.1);
        }

        .floating-whatsapp::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 12px;
            height: 12px;
            background: #ef4444;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        /* SVG Icons */
        .icon {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .icon-lg {
            width: 32px;
            height: 32px;
        }

        /* Responsive */
        @media (min-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr 1fr !important;
            }

            #cta .cta-content {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }

            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        @media (max-width: 1024px) {
            nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }
        }

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

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

            .header-buttons .btn:not(.btn-whatsapp):not(.mobile-menu-btn) {
                display: none;
            }
        }