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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .logo:hover {
            opacity: 0.8;
        }

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

        .logo-slogan {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 50px;
        }

        .logo-slogan .line1,
        .logo-slogan .line2 {
            font-size: 0.9rem;
            font-weight: bold;
            background: linear-gradient(45deg, #FFD700, #FF4500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

        .nav-menu a {
            color: #000;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            margin: 0 0.3rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
            transform: skewX(-10deg);
            display: inline-block;
        }

        .nav-menu a span {
            display: inline-block;
            transform: skewX(10deg);
        }

        .nav-menu a:hover {
            background: linear-gradient(45deg, #FFA500, #FFD700);
            transform: skewX(-10deg) translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
            color: #000;
        }

        .emergency-btn {
            background: linear-gradient(45deg, #FF4500, #FF6347) !important;
            color: #fff !important;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            box-shadow: 0 3px 10px rgba(255, 69, 0, 0.3);
            animation: pulse 2s infinite;
            transform: skewX(-10deg);
            display: inline-block;
        }

        .emergency-btn span {
            display: inline-block;
            transform: skewX(10deg);
        }

        .emergency-btn:hover {
            background: linear-gradient(45deg, #FF6347, #FF4500) !important;
            box-shadow: 0 6px 20px rgba(255, 69, 0, 0.5) !important;
            color: #fff !important;
            transform: skewX(-10deg) translateY(-2px);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #FFD700;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        @keyframes pulse {
            0% { box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3); }
            50% { box-shadow: 0 4px 25px rgba(255, 69, 0, 0.6); }
            100% { box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3); }
        }
        
        /* Hero Section */
        .hero {
            min-height: calc(100vh - 80px); /* Navbar yüksekliğini çıkar */
            padding-top: 120px; /* Navbar için üst boşluk */
            background: url('../img/bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: visible;
        }

        .hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.8;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 70%);
            z-index: 2;
        }

        .hero-content {
            max-width: 800px;
            padding: 2rem;
            position: relative;
            z-index: 3;
            animation: fadeInUp 1s ease;
            margin-top: -60px; /* İçeriği yukarı kaydır */
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #FFD700, #FF4500, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #f0f0f0;
        }

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

        .btn {
            padding: 1.5rem 2.5rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            line-height: 1.3;
            text-align: center;
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .btn-primary {
            background: linear-gradient(45deg, #FFD700, #FF4500);
            color: #000;
            box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: #FFD700;
            border: 2px solid #FFD700;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 69, 0, 0.4);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        /* Brand Logos Section */
        .brands {
            padding-top: 7px;
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            border-top: 1px solid rgba(255, 215, 0, 0.2);
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        }

        .brands-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            padding: 0 2rem;
        }

        .brand-item {
            opacity: 0.7;
            transition: all 0.3s ease;
            filter: grayscale(100%);
        }

        .brand-item:hover {
            opacity: 1;
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        .brand-item img {
            height: 40px;
            width: auto;
            max-width: 120px;
            object-fit: contain;
        }

        /* Services Section */
        .services {
            padding: 5rem 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
        }

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

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #FFD700;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(45deg, #FFD700, #FF4500);
            border-radius: 2px;
        }

        .section-title p {
            color: #ccc;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Services Grid - 3'lü Layout */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            padding: 0 2rem;
        }

        .service-card {
            position: relative;
            width: 100%;
            height: 320px;
            perspective: 1000px;
        }

        .service-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.6s ease-in-out;
            transform-style: preserve-3d;
            cursor: pointer;
        }

        .service-card:hover .service-card-inner {
            transform: rotateY(180deg);
        }

        .service-card-front,
        .service-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            will-change: transform;
        }

        /* Front Face - Always facing forward */
        .service-card-front {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            transform: rotateY(0deg);
        }

        .service-card-front::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.1) 0%,
                rgba(0, 0, 0, 0.7) 100%
            );
            z-index: 1;
        }

        .service-card-front h3 {
            position: relative;
            z-index: 2;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            padding: 2rem 1rem;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            text-align: center;
            line-height: 1.3;
        }

        /* Back Face - Always facing backward until flipped */
        .service-card-back {
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            transform: rotateY(180deg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem 1.5rem;
            text-align: center;
        }

        .service-card-back .service-icon {
            font-size: 2.5rem;
            background: linear-gradient(45deg, #FFD700, #FF4500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .service-card-back h3 {
            color: #FFD700;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .service-card-back p {
            color: #e0e0e0;
            font-size: 0.95rem;
            line-height: 1.5;
            text-align: center;
        }

        /* Service Images */
        .service-card:nth-child(1) .service-card-front { background-image: url('../img/tyre-1.jpg'); }
        .service-card:nth-child(2) .service-card-front { background-image: url('../img/tyre-2.jpg'); }
        .service-card:nth-child(3) .service-card-front { background-image: url('../img/tyre-3.jpg'); }
        .service-card:nth-child(4) .service-card-front { background-image: url('../img/tyre-4.jpg'); }
        .service-card:nth-child(5) .service-card-front { background-image: url('../img/tyre-5.jpg'); }
        .service-card:nth-child(6) .service-card-front { background-image: url('../img/tyre-6.jpg'); }
        .service-card:nth-child(7) .service-card-front { background-image: url('../img/tyre-7.jpg'); }
        .service-card:nth-child(8) .service-card-front { background-image: url('../img/tyre-8.jpg'); }
        .service-card:nth-child(9) .service-card-front { background-image: url('../img/tyre-9.jpg'); }

		/* Tyre Information Section */
		.tyre-info {
			padding: 0;
			background: linear-gradient(to right, rgb(255,234,0), rgb(253,205,0));
			width: 100%;
			height: 300px;
			overflow: hidden;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.tyre-info-container {
			width: 100%;
			display: flex;
			justify-content: center;
			align-items: center;
			padding: 0 50px;
		}

		.tyre-info-image {
			height: 300px;
			width: auto;
			max-width: 100%;
			display: block;
			border-radius: 15px;
			object-fit: contain;
		}

		.tyre-info-mobile {
			display: none;
		}

        /* Features Section */
        .features {
            padding: 5rem 0;
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
        }

        .features-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
            width: 100%;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 1.2rem;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 25px;
            border-left: 3px solid #FFD700;
            transition: all 0.3s ease;
            flex: 1;
            min-width: 180px;
            max-width: 220px;
        }

        .feature-item:hover {
            background: rgba(255, 215, 0, 0.2);
            transform: translateY(-3px);
        }

        .feature-icon {
            font-size: 1.5rem;
            color: #FFD700;
            min-width: 30px;
        }

        .feature-text h4 {
            color: #FFD700;
            margin-bottom: 0.3rem;
            font-size: 0.9rem;
        }

        .feature-text p {
            color: #ccc;
            font-size: 0.8rem;
            line-height: 1.3;
        }

        /* Reviews Section */
        .reviews {
            padding: 5rem 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .review-card {
            background: #ffffff;
            padding: 2rem;
            border-radius: 12px;
            margin: 0;
            border: 1px solid #e0e0e0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

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

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

        .google-icon {
            width: 24px;
            height: 24px;
            background: #4285f4;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 14px;
        }

        .review-text {
            color: #333;
            font-style: normal;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
            line-height: 1.6;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(45deg, #FFD700, #FF4500);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }

        .author-info h5 {
            color: #333;
            margin-bottom: 0.2rem;
            font-weight: 600;
        }

        .author-info p {
            color: #666;
            font-size: 0.9rem;
        }

        .stars {
            color: #ffa500;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 0;
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
        }

        .contact-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            align-items: stretch;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info {
            background: transparent;
            padding: 0;
            border-radius: 0;
            border: none;
            text-align: center;
            flex: 1;
            min-width: 200px;
            max-width: 220px;
        }

        .contact-info:nth-child(3) {
            max-width: 280px;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            padding: 2rem 1rem;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 69, 0, 0.05) 100%);
            border-radius: 20px;
            border: 1px solid rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            height: 100%;
            min-height: 160px;
        }

        .contact-item:hover {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 69, 0, 0.1) 100%);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
            border-color: #FFD700;
        }

        .contact-item i {
            font-size: 2.5rem;
            background: linear-gradient(45deg, #FFD700, #FF4500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .contact-item div h4 {
            color: #FFD700;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .contact-item div p {
            color: #e0e0e0;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .contact-info h3 {
            display: none;
        }

        /* WhatsApp Popup */
        .whatsapp-popup {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .whatsapp-btn {
            background: #25D366;
            color: white;
            padding: 1rem;
            border-radius: 50px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: bold;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            animation: bounce 2s infinite;
        }

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

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        .whatsapp-btn i {
            font-size: 1.5rem;
        }

        /* Footer */
        .footer {
            background: #000;
            color: #ccc;
            text-align: center;
            padding: 2rem 0;
            border-top: 1px solid #333;
        }

        .footer p {
            margin-bottom: 0.5rem;
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                gap: 1.5rem;
                padding-top: 3rem;
                transition: left 0.3s ease;
            }

            .nav-menu a {
                margin: 0;
                width: 80%;
                text-align: center;
                transform: skewX(0deg);
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .nav-menu a span {
                transform: skewX(0deg);
            }

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

            .mobile-menu-toggle {
                display: flex;
            }

            .hero {
                min-height: calc(100vh - 70px); /* Mobile navbar daha küçük */
                padding-top: 100px; /* Mobile için padding */
                background-attachment: scroll; /* Mobile'da fixed kaldır */
            }
            
            .hero-content {
                margin-top: -40px; /* Mobile'da daha az yukarı kaydır */
                padding: 1rem;
            }
        
            .hero h1 {
                font-size: 2.2rem; /* 2.5rem yerine */
                margin-bottom: 1rem;
            }
        
            .hero p {
                font-size: 1rem; /* 1.1rem yerine */
                margin-bottom: 1.5rem;
            }
        
            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .btn {
                min-height: 100px;
                padding: 1.2rem 2rem;
                font-size: 1rem;
                width: 280px;
                max-width: 90vw;
            }

            /* Brand Logos Mobile */
            .brands {
                display:none;
            }

            .brands-grid {
                gap: 1rem;
                padding: 0 1rem;
            }

            .brand-item img {
                height: 30px;
                max-width: 80px;
            }

            /* Services Mobile */
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .service-card {
                height: 280px;
            }

            .service-card-front h3 {
                font-size: 1.3rem;
                padding: 1.5rem 1rem;
            }

            .service-card-back {
                padding: 1.5rem 1rem;
            }

            .service-card-back .service-icon {
                font-size: 2rem;
                margin-bottom: 0.8rem;
            }

            .service-card-back h3 {
                font-size: 1.1rem;
                margin-bottom: 0.8rem;
            }

            .service-card-back p {
                font-size: 0.9rem;
                line-height: 1.4;
            }

            /* Mobile flip animasyonu düzeltmesi */
            .service-card-inner {
                transform-style: preserve-3d;
            }

            .service-card:hover .service-card-inner {
                transform: rotateY(180deg);
            }

            /* Reduced Section Padding for Mobile */
            .services {
                padding: 3rem 0;
            }

			.tyre-info {
				display: none;
			}
            .features {
                padding: 25px;
            }

            .reviews {
                padding: 25px;
            }

            .contact {
                padding: 25px;
            }

            .section-title {
                margin-bottom: 2rem;
            }

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

			.contact-grid {
				display: grid;
				grid-template-columns: 1fr 1fr;
				gap: 1rem;
				padding: 0 1rem;
			}

			.contact-info {
				width: 100%;
				min-width: auto;
				margin-bottom: 0;
			}

			.contact-info h3 {
				display: none;
			}

			.contact-item {
				padding: 1rem 0.8rem;
				min-height: 100px;
				gap: 0.6rem;
				text-align: center;
			}

			.contact-item i {
				font-size: 1.4rem;
				margin-bottom: 0.2rem;
			}

			.contact-item div h4 {
				font-size: 0.9rem;
				margin-bottom: 0.2rem;
				font-weight: 600;
			}

			.contact-item div p {
				font-size: 0.75rem;
				line-height: 1.2;
			}

            .features-grid {
                flex-direction: column;
                gap: 1rem;
            }

            .feature-item {
                max-width: none;
                min-width: auto;
            }

            .whatsapp-btn span {
                display: none;
            }

            .logo-slogan .line1,
            .logo-slogan .line2 {
                font-size: 0.7rem;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        
.postcode-checker {
    margin: 2rem auto 0 auto; /* 3rem yerine 2rem */
    max-width: 500px; /* 600px yerine 500px */
    width: 100%;
    text-align: center;
}

.postcode-title h3 {
    color: #FFD700;
    font-size: 1.3rem; /* 1.5rem yerine */
    margin-bottom: 0.3rem; /* 0.5rem yerine */
    font-weight: 600;
}

.postcode-title p {
    color: #ccc;
    font-size: 0.9rem; /* 1rem yerine */
    margin-bottom: 1rem; /* 1.5rem yerine */
    opacity: 0.9;
}

.postcode-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

#postcodeInput {
    flex: 1;
    max-width: 300px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#postcodeInput:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

#postcodeInput::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.postcode-btn {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #FFD700, #FF4500);
    color: #000;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    white-space: nowrap;
}

.postcode-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.postcode-result {
    min-height: 40px; /* 60px yerine 40px */
    margin-top: 1rem;
    padding: 1rem; /* 1.5rem yerine 1rem */
    border-radius: 15px;
    transition: all 0.3s ease;
    display: none;
    max-width: 500px; /* Genişliği sınırlayın */
    margin-left: auto;
    margin-right: auto;
}

.postcode-result.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.result-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.5), rgba(40, 167, 69, 0.4));
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.result-warning {
    background: linear-gradient(135deg, rgba(255, 7, 7, 0.5), rgba(255, 7, 7, 0.4));
    border: 1px solid rgba(255, 193, 7, 0.3);
}


.result-icon {
    font-size: 1.5rem; /* 2rem yerine 1.5rem */
    margin-bottom: 0.5rem; /* 1rem yerine 0.5rem */
}

.result-title {
    font-size: 1.1rem; /* 1.3rem yerine 1.1rem */
    font-weight: 600;
    margin-bottom: 0.3rem; /* 0.5rem yerine 0.3rem */
}

.result-message {
    font-size: 0.9rem; /* 1rem yerine 0.9rem */
    margin-bottom: 1rem; /* 1.5rem yerine 1rem */
    opacity: 0.9;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.result-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-btn-primary {
    background: linear-gradient(45deg, #FFD700, #FF4500);
    color: #000;
}

.result-btn-secondary {
    background: #25D366;
    color: white;
}

.result-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .postcode-checker {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .postcode-form {
        flex-direction: column;
        align-items: center;
    }
    
    #postcodeInput {
        max-width: 280px;
        width: 100%;
    }
    
    .postcode-btn {
        width: 200px;
    }
    
    .result-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .result-btn {
        width: 200px;
        justify-content: center;
    }

    .hero {
        min-height: 90vh; /* Mobile'da daha az yükseklik */
    }
    
    .postcode-result {
        padding: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .result-icon {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
}