/**
 * Guri Tour & Travels - Premium CSS
 * Production Ready
 */

/* ==================== Variables ==================== */
:root {
    --primary: #135df0;
    --primary-dark: #0d4bc9;
    --primary-light: #5a8ff7;
    --secondary: #40b8ae;
    --secondary-dark: #2d9a8e;
    --accent: #ff6b6b;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --light: #f8f9fa;
    --white: #ffffff;
    
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    --font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #6dd5ed 100%);
    --gradient-dark: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== Reset & Base ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #222;
    background: #f5f7fb;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ==================== Glassmorphism ==================== */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

/* ==================== Animated Gradient Border ==================== */
.gradient-border {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-md);
    z-index: 1;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-primary);
    border-radius: inherit;
    z-index: -1;
    animation: rotateGradient 3s linear infinite;
    background-size: 300% 300%;
}

@keyframes rotateGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ==================== Swirl Animation ==================== */
.swirl-glow {
    position: relative;
    overflow: hidden;
}

.swirl-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(from 0deg, transparent, var(--primary), transparent 30%);
    animation: swirl 3s linear infinite;
    z-index: -1;
}

@keyframes swirl {
    100% { transform: rotate(360deg); }
}

/* ==================== Header & Navigation ==================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.4rem 0; /* smaller header */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.header::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #135df0, transparent);
}

.header:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.header.scrolled {
    padding: 0.3rem 0;
    box-shadow: var(--shadow-md);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar Layout */

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Logo */

.logo{
display:flex;
align-items:center;
gap:8px;
font-weight:700;
color:var(--primary);
}

/* PNG LOGO */

.logo img{
height:40px;
width:auto;
object-fit:contain;
}

/* Logo text */

.logo-text{
font-size:17px;
font-weight:600;
color:var(--primary);
}

/* Navigation Links */

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.3rem; /* smaller spacing */
    margin-left: auto; /* push right */
}

/* Menu Link */

.nav-link {
    font-weight: 500;
    font-size: 14px; /* smaller text */
    color: var(--gray-700);
    padding: 0.3rem 0;
    position: relative;
}

/* Animated underline */

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Call Button */

.nav-actions .btn {
    padding: 0.5rem 1rem;   /* smaller button */
    font-size: 11px;
    border-radius: 2px;
}

/* Small Call Button */

.call-btn{
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 6px;
    gap: 5px;
}

.call-btn i{
    font-size: 12px;
}

/* Mobile menu icon */

.menu-toggle {
    font-size: 22px;
    cursor: pointer;
    display: none;
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(19, 93, 240, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(64, 184, 174, 0.3) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 3rem;
    align-items: start;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease-out;
}

.hero-title span {
    background: linear-gradient(135deg,#40b8ae,#135df0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.hero .hero-text,
.hero .hero-title,
.hero .hero-subtitle {
    color: #fff;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    animation: slideUp 0.8s ease-out 0.4s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== Compact Booking Card ==================== */

.booking-card {
    max-width:380px;
    margin:auto;
    padding:18px;
    border-radius:14px;
    background:#fff;
    border:2px solid rgba(19,93,240,0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color:#135df0;
}

/* Floating animation */
@keyframes float {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); } /* smaller float */
}

/* glowing border */

/* booking header */
.booking-header {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 2px solid var(--gray-200);
}

/* booking icon */
.booking-header-icon {
    width: 40px;   /* smaller icon */
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

/* title */
.booking-title {
    font-size: 1.25rem;  /* smaller text */
    font-weight: 700;
    color: var(--dark);
}

/* subtitle (optional if used) */
.booking-subtitle {
    font-size: 13px;
    color: var(--gray-600);
}

/* ==================== Form Elements ==================== */

.form-group {
    margin-bottom: 10px; /* smaller spacing */
}

.form-label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 13px; /* smaller label */
}

/* Input fields */

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 13px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f9fafb;
    transition: all 0.25s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(19, 93, 240, 0.12);
}

/* Placeholder */

.form-control::placeholder {
    color: var(--gray-500);
    font-size: 13px;
}

/* Dropdown */

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%236c757d' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    padding-right: 2rem;
}

/* ==================== Car Type Selection ==================== */
.car-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.car-type-card {
    position: relative;
    padding: 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}

.car-type-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.car-type-card.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(19, 93, 240, 0.05), rgba(64, 184, 174, 0.05));
    box-shadow: 0 0 0 3px rgba(19, 93, 240, 0.2);
}

.car-type-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.car-type-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.car-type-rate {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.car-type-rate span {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-family);
}

.btn-primary {
    background: #135df0;
    color: #fff;
    border-radius: 10px;
    padding: 12px;
    font-size: 15px;
    box-shadow: 0 5px 15px rgba(19,93,240,0.2);
}

.btn-primary:hover {
    background: #0d4bc9;
    transform: translateY(-2px);
}

.btn:active {
    transform: scale(0.97);
}
.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ==================== Price Calculator ==================== */
.price-display {
    background: linear-gradient(135deg, #f0f9ff, #e0f7f5);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
}

.price-row.total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--gray-300);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.price-label {
    color: var(--gray-600);
}

.price-value {
    font-weight: 700;
    color: var(--dark);
}

.discount {
    color: var(--success);
}

/* ==================== Floating WhatsApp ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    overflow: hidden;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #25D366;
    animation: swirl 3s linear infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.section-title {
    text-align:center;
    font-size:34px;
    font-weight:800;
    color:#222;
    margin-bottom:10px;
    letter-spacing:0.5px;
    position:relative;
    animation: fadeUp 0.8s ease;
}

.hero .section-title {
    color:#fff;
}

.section-title::after{
    content:"";
    width:80px;
    height:4px;
    background: linear-gradient(135deg,#00f2fe,#4facfe);
    display:block;
    margin:12px auto;
    border-radius:5px;
}

.section-subtitle {
    text-align:center;
    color:#555;
    font-size:15px;
    margin-bottom:35px;
    animation: fadeUp 1s ease;
}

.hero .section-subtitle {
    color:#e2e8f0;
}

/* ==================== Footer ==================== */
.footer {
    background: #020617;
    color: var(--white);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(19, 93, 240, 0.4);
}

.footer-bottom {
    background: var(--dark);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--gray-400);
}

.footer-stats {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

.footer-stats span {
    color: #40b8ae;
    font-weight: bold;
}

/* FOOTER STATS BOX */
.footer-stats-box {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* EACH ITEM */
.footer-stat {
    background: rgba(255,255,255,0.08);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    color: #ccc;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

/* VALUE */
.footer-stat span {
    display: block;
    font-size: 15px;
    font-weight: bold;
    color: #40b8ae;
}

/* HOVER EFFECT */
.footer-stat:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
}

/* ==================== Responsive ==================== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title{
        font-size:26px;
    }

    .booking-flex{
        flex-direction:column;
    }

    .booking-contact-box{
        width:100%;
    }
}

/* ==================== Animations ==================== */

@keyframes fadeUp {
    from {
        opacity:0;
        transform: translateY(30px);
    }
    to {
        opacity:1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* ==================== Contact Page ==================== */

.contact-section{
padding:80px 0;
background:var(--gray-100);
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:start;
}

.contact-info h2,
.contact-form h2{
font-size:28px;
margin-bottom:25px;
color:var(--dark);
}

.info-box{
display:flex;
gap:15px;
margin-bottom:20px;
background:white;
padding:15px;
border-radius:var(--radius-md);
box-shadow:var(--shadow-sm);
}

.info-box i{
font-size:22px;
color:var(--primary);
margin-top:5px;
}

.info-box h4{
font-size:16px;
margin-bottom:4px;
}

.social-links{
margin-top:25px;
display:flex;
gap:12px;
}

.social-links a{
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
background:var(--gradient-primary);
color:white;
border-radius:50%;
transition:var(--transition);
}

.social-links a:hover{
transform:translateY(-4px);
box-shadow:var(--shadow-md);
}

.contact-form{
background:white;
padding:30px;
border-radius:var(--radius-lg);
box-shadow:var(--shadow-md);
}

.contact-form form input,
.contact-form form textarea{
width:100%;
padding:12px;
border:1px solid var(--gray-300);
border-radius:var(--radius-sm);
margin-bottom:15px;
font-family:var(--font-family);
}

.contact-form textarea{
min-height:120px;
resize:none;
}

.youtube-video{
margin-top:30px;
}

.youtube-video iframe{
border-radius:var(--radius-md);
box-shadow:var(--shadow-md);
}

/* Mobile */

@media(max-width:768px){

.contact-grid{
grid-template-columns:1fr;
}

}

/* ==================== BOOKING CONTACT BOX ==================== */

.top-contact-box{
    display:flex;
    gap:15px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.contact-item{
    background:#fff;
    padding:10px 15px;
    border-radius:10px;
    color:#222;
    font-size:14px;
}

.contact-item a{
    display:block;
    color:#222;
    font-weight:600;
}

.route-card,
.service-card {
    border-radius:16px;
    background:#fff;
    padding:20px;
    transition: all 0.3s ease;
    opacity:0;
    transform: translateY(40px);
}
.service-card.show {
    opacity:1;
    transform: translateY(0);
}
.route-card:hover,
.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.services-section{
    padding:60px 0;
    position:relative;
}

.services-section::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:#135df0;
    filter:blur(120px);
    opacity:0.2;
    top:0;
    left:50%;
    transform:translateX(-50%);
}

.services-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap:25px;
    justify-content:center;
}

@keyframes fadeIn {
    from { opacity:0; }
    to { opacity:1; }
    
}

.fade-in{
    animation:fadeIn 0.6s ease-out;
}

/* GLOBAL EFFECTS */
.btn:hover {
    transform: translateY(-2px) scale(1.02);
}

::selection {
    background: #135df0;
    color: white;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-thumb {
    background: #135df0;
    border-radius: 10px;
}

/* GLOBAL SMOOTHNESS */

button, a, .card, .btn {
    transition: all 0.3s ease;
}
/* BLOG FIX */

.blog-section {
    background:#f5f7fb;
    color:#222;
}

.blog-card {
    background:#fff;
    color:#222;
    border-radius:12px;
    padding:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.blog-card:hover {
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

h1,h2,h3,h4,h5,h6,p {
    color:#222;
}

/* MOBILE FIX CLEAN */

@media(max-width:768px){

    .booking-flex{
        flex-direction:column;
    }

    .booking-contact-box{
        width:100%;
    }

    .hero-content{
        grid-template-columns:1fr;
    }

    .booking-card{
        width:100%;
        max-width:100%;
    }

    .hero-title{
        font-size:26px;
    }

    .ad-box {
        margin: 30px auto;
        padding: 15px;
        border-radius: 12px;
        background: #fff;
        max-width: 900px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .ad-box img,
    .ad-box video,
    .ad-box iframe {
        width: 100%;
        border-radius: 10px;
    }

    .menu-toggle{
        display:block;
    }

    .nav-links{
        display:none;
        flex-direction:column;
        background:#fff;
        position:absolute;
        top:70px;
        right:0;
        width:200px;
        padding:15px;
        box-shadow:var(--shadow-md);
    }

    .nav-links.active{
        display:flex;
    }

    img {
        transition: transform 0.3s ease;
    }

    img:hover {
        transform: scale(1.03);
    }
}