/* ====================================
   BEYTULLAH SAPÇI - MODERN WHITE THEME
   ==================================== */

/* CSS Variables */
:root {
    --primary: #1a1a2e;
    --primary-light: #2d2d44;
    --accent: #c9a962;
    --accent-light: #e5d4a1;
    --accent-dark: #a68b4b;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f1f3f5;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --text: #2d2d2d;
    --text-light: #666666;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);

    /* Pastel Colors */
    --pastel-lavender: #B8A5D6;
    --pastel-blue: #A7C7E7;
    --pastel-pink: #C9A5C4;
    --pastel-mint: #A8D5BA;
    --pastel-peach: #E6B89C;
    --pastel-rose: #D4A5A5;
    --pastel-slate: #B5C7D3;
    --pastel-beige: #D4C4A8;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

/* ====================================
   PRELOADER
   ==================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 8px;
    display: block;
    margin-bottom: 20px;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.loader-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    animation: loading 2s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ====================================
   HEADER
   ==================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.6s ease;
}

.header-top {
    background: var(--primary);
    padding: 8px 0;
    transition: all 0.6s ease;
}

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

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info a {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a:hover {
    color: var(--pastel-peach);
}

.contact-info i {
    color: var(--pastel-slate);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: rgba(255,255,255,0.8);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--pastel-lavender);
    color: var(--white);
    transform: translateY(-2px);
}

.navbar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.6s ease;
}

.header.scrolled .navbar {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.header.scrolled .header-top {
    transform: translateY(-100%);
    height: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.6s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
}

.logo-subtext {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--pastel-slate);
    letter-spacing: 5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pastel-pink);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    padding: 15px 0;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown li a {
    display: block;
    padding: 10px 25px;
    font-size: 0.9rem;
    color: var(--text);
    transition: var(--transition);
}

.dropdown li a:hover {
    background: var(--light-gray);
    color: var(--pastel-peach);
    padding-left: 30px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--pastel-lavender);
    color: var(--white);
    border-color: var(--pastel-lavender);
}

.btn-primary:hover {
    background: var(--pastel-pink);
    border-color: var(--pastel-pink);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 165, 214, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--pastel-mint);
    color: var(--white);
    border-color: var(--pastel-mint);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--pastel-peach);
    color: var(--white);
    border-color: var(--pastel-peach);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: var(--pastel-blue);
    color: var(--white);
    border-color: var(--pastel-blue);
}

.btn-full {
    width: 100%;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--light-gray);
    transform: scale(1);
    transition: transform 10s ease-out;
}

.hero-slide.active .hero-bg {
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.5) 0%,
        rgba(255,255,255,0.35) 50%,
        rgba(255,255,255,0.25) 100%
    );
}

.hero-slide .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 700px;
    width: 100%;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow:
        0 0 10px rgba(255,255,255,0.9),
        0 0 20px rgba(255,255,255,0.7),
        0 0 30px rgba(255,255,255,0.5),
        0 2px 4px rgba(255,255,255,0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow:
        0 0 15px rgba(255,255,255,0.9),
        0 0 25px rgba(255,255,255,0.7),
        0 0 35px rgba(255,255,255,0.5),
        0 3px 6px rgba(255,255,255,0.4);
}

.hero-title span {
    color: #1a1a1a;
    text-shadow:
        0 0 15px rgba(255,255,255,0.9),
        0 0 25px rgba(255,255,255,0.7),
        0 0 35px rgba(255,255,255,0.5),
        0 3px 6px rgba(255,255,255,0.4);
}

.hero-text {
    font-size: 1.15rem;
    color: #1a1a1a;
    margin-bottom: 35px;
    line-height: 1.8;
    text-shadow:
        0 0 10px rgba(255,255,255,0.9),
        0 0 20px rgba(255,255,255,0.6),
        0 0 30px rgba(255,255,255,0.4),
        0 2px 4px rgba(255,255,255,0.3);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

.hero-buttons .btn-outline:hover {
    background: var(--pastel-rose);
    color: var(--white);
    border-color: var(--pastel-rose);
}

.hero-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--pastel-slate);
    background: rgba(255,255,255,0.9);
    color: var(--pastel-slate);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--pastel-blue);
    color: var(--white);
    border-color: var(--pastel-blue);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    opacity: 0.4;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--pastel-blue);
    opacity: 1;
    transform: scale(1.2);
}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    writing-mode: vertical-rl;
}

.scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--pastel-lavender);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* Animation Classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.4s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   FEATURES SECTION
   ==================================== */
.features {
    padding: 80px 0;
    background: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--off-white) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--pastel-peach);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

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

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ====================================
   SECTION STYLING
   ==================================== */
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pastel-pink);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--pastel-rose);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-desc {
    margin: 0 auto;
}

/* ====================================
   ABOUT SECTION
   ==================================== */
.about {
    padding: 120px 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 80%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    background: var(--light-gray);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 60%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 8px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background: var(--light-gray);
}

.experience-badge {
    position: absolute;
    top: 40px;
    right: 60px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.exp-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.3;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pastel-mint);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ====================================
   YAPI PLUS SECTION
   ==================================== */
.yapi-plus {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #1a1a2e 100%);
    overflow: hidden;
}

.yapi-plus-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
}

.yapi-plus-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    z-index: 2;
}

.yapi-plus-logo {
    margin-bottom: 25px;
}

.yapi-plus-logo img {
    max-height: 60px;
    width: auto;
    background: transparent;
}

.yapi-plus-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.yapi-plus-title span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yapi-plus-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    line-height: 1.8;
}

.yapi-plus-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.plus-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.plus-feature:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateX(10px);
}

.plus-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plus-feature-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.plus-feature-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.plus-feature-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.yapi-plus-cta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-plus {
    background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-pink) 100%);
    color: var(--white);
    border: none;
    padding: 16px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(212, 165, 165, 0.4);
}

.btn-plus:hover {
    background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 165, 214, 0.5);
}

.plus-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.plus-info i {
    color: var(--pastel-blue);
}

/* Card Visual Section */
.yapi-plus-visual {
    position: relative;
}

.card-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 3s ease-in-out infinite;
}

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

.card-wrapper {
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.plus-card-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.1);
    background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
    min-height: 250px;
}

/* Floating Points Animation */
.floating-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.point-bubble {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 25px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(201, 169, 98, 0.4);
    animation: floatBubble 3s ease-in-out infinite;
}

.point-bubble i {
    font-size: 0.8rem;
}

.point-bubble.p1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.point-bubble.p2 {
    top: 50%;
    right: -5%;
    animation-delay: 0.5s;
}

.point-bubble.p3 {
    bottom: 15%;
    right: 15%;
    animation-delay: 1s;
}

@keyframes floatBubble {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

/* Plus Stats */
.plus-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.plus-stat-item {
    text-align: center;
}

.plus-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pastel-peach);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.plus-stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Decorative Elements */
.plus-decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
}

.plus-decoration.d1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
}

.plus-decoration.d2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
}

/* Responsive - Yapi Plus */
@media (max-width: 992px) {
    .yapi-plus-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .yapi-plus-content {
        order: 1;
    }

    .yapi-plus-visual {
        order: 2;
    }

    .plus-feature {
        text-align: left;
    }

    .yapi-plus-cta {
        justify-content: center;
    }

    .plus-card-img {
        max-width: 350px;
    }

    .point-bubble.p2 {
        right: 5%;
    }
}

@media (max-width: 768px) {
    .yapi-plus-title {
        font-size: 2.2rem;
    }

    .plus-stats {
        gap: 40px;
    }

    .plus-stat-number {
        font-size: 2rem;
    }

    .plus-card-img {
        max-width: 300px;
    }

    .point-bubble {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .yapi-plus {
        padding: 80px 0;
    }

    .yapi-plus-title {
        font-size: 1.8rem;
    }

    .yapi-plus-text {
        font-size: 1rem;
    }

    .plus-feature {
        padding: 15px;
    }

    .plus-feature-icon {
        width: 40px;
        height: 40px;
    }

    .plus-feature-icon i {
        font-size: 1rem;
    }

    .yapi-plus-cta {
        flex-direction: column;
    }

    .btn-plus {
        width: 100%;
        justify-content: center;
    }

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

    .plus-card-img {
        max-width: 250px;
        min-height: 160px;
    }

    .floating-points {
        display: none;
    }

    .plus-stats {
        flex-direction: column;
        gap: 25px;
    }
}

/* ====================================
   PRODUCTS SECTION
   ==================================== */
.products {
    padding: 120px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 25px;
}

.product-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.product-card.large {
    grid-column: span 2;
}

.product-image {
    width: 100%;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--light-gray);
    transition: transform 1s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(26, 26, 46, 0.95) 0%,
        rgba(26, 26, 46, 0.4) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.product-content {
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .product-content {
    transform: translateY(0);
}

.product-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--pastel-rose);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
}

.product-content h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.product-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pastel-mint);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.product-card:hover .product-link {
    opacity: 1;
    transform: translateY(0);
}

.product-link:hover {
    color: var(--pastel-blue);
}

.product-link i {
    transition: var(--transition);
}

.product-link:hover i {
    transform: translateX(5px);
}

/* ====================================
   BRANDS SECTION
   ==================================== */
.brands {
    padding: 120px 0;
    background: var(--off-white);
}

.brands-slider {
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.brands-track {
    display: flex;
    gap: 60px;
    animation: slide 30s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-item {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

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

.brand-item img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    background: transparent;
}

/* ====================================
   GALLERY SECTION
   ==================================== */
.gallery {
    padding: 120px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--light-gray);
    transition: transform 1s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ====================================
   CTA SECTION
   ==================================== */
.cta {
    position: relative;
    padding: 120px 0;
    background: var(--primary);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/cta-bg.jpg') center/cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.contact {
    padding: 120px 0;
    background: var(--off-white);
}

.contact .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}


.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-pink) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.info-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.info-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

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

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition);
    background: var(--white);
    padding: 0 8px;
    z-index: 1;
}

.form-group textarea + label {
    top: 28px;
    transform: translateY(0);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pastel-mint);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]):valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--pastel-pink);
}

.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%);
}

/* Select özel stilleri */
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    color: var(--text);
}

.form-group select option {
    color: var(--text);
}

.form-group select option:first-child {
    color: var(--text-light);
}

/* ====================================
   MAP SECTION
   ==================================== */
.map {
    height: 450px;
    position: relative;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%);
    transition: var(--transition);
}

.map:hover iframe {
    filter: grayscale(0%);
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: var(--primary);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo .logo-subtext {
    color: var(--pastel-peach);
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--pastel-blue);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--pastel-beige);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--pastel-mint);
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--pastel-lavender);
    margin-top: 4px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ====================================
   BACK TO TOP
   ==================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-pink) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-blue) 100%);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(184, 165, 214, 0.5);
}

/* ====================================
   WHATSAPP BUTTON
   ==================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    animation: whatsappRing 1.5s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    }
}

@keyframes whatsappRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* ====================================
   SCROLL ANIMATIONS
   ==================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.4s ease, transform 1.4s ease;
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .header-top {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        overflow-y: auto;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid var(--light-gray);
        width: 100%;
    }

    .has-dropdown .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 1;
        visibility: visible;
    }

    .has-dropdown.active .dropdown {
        max-height: 500px;
        padding: 10px 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-img-main {
        width: 100%;
    }

    .about-img-main img {
        height: 500px;
    }

    .about-img-secondary {
        width: 70%;
        bottom: -30px;
    }

    .about-img-secondary img {
        height: 280px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .contact-grid {
        gap: 40px;
    }

    .info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .hero-controls {
        bottom: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 30px 25px;
    }

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

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        flex: 0 0 calc(50% - 20px);
    }

    .about-img-main img {
        height: 450px;
    }

    .about-img-secondary img {
        height: 250px;
    }

    .experience-badge {
        width: 110px;
        height: 110px;
        top: 20px;
        right: 10px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .product-card.large {
        grid-column: span 1;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-card {
        padding: 25px 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 15px;
        font-size: 16px;
    }

    .form-group label {
        left: 15px;
        font-size: 0.95rem;
    }

    .form-group input:focus + label,
    .form-group input:not(:placeholder-shown) + label,
    .form-group textarea:focus + label,
    .form-group textarea:not(:placeholder-shown) + label {
        font-size: 0.75rem;
        top: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .map {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .hero-controls {
        bottom: 20px;
    }

    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
    }

    .section-tag {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

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

    .section-desc {
        font-size: 0.95rem;
    }

    .features {
        padding: 60px 0;
        margin-top: -30px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.4rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .about {
        padding: 80px 0;
    }

    .about-images {
        margin-bottom: 40px;
    }

    .about-img-main img {
        height: 350px;
    }

    .about-img-secondary {
        width: 65%;
        bottom: -20px;
    }

    .about-img-secondary img {
        height: 200px;
    }

    .experience-badge {
        width: 90px;
        height: 90px;
        top: 15px;
        right: 5px;
    }

    .exp-number {
        font-size: 1.8rem;
    }

    .exp-text {
        font-size: 0.65rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .about-stats {
        gap: 20px;
        padding: 20px 0;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .products {
        padding: 80px 0;
    }

    .products-grid {
        grid-auto-rows: 280px;
        gap: 15px;
    }

    .product-content h3 {
        font-size: 1.2rem;
    }

    .product-content p {
        font-size: 0.85rem;
    }

    .brands {
        padding: 80px 0;
    }

    .gallery {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-auto-rows: 250px;
        gap: 15px;
    }

    .cta {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .contact {
        padding: 80px 0;
    }

    .info-cards {
        gap: 12px;
    }

    .info-card {
        padding: 25px 18px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
    }

    .info-icon i {
        font-size: 1rem;
    }

    .info-content h4 {
        font-size: 0.95rem;
    }

    .info-content p {
        font-size: 0.85rem;
    }

    .contact-form-wrapper {
        padding: 25px 15px;
        border-radius: 20px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px 12px;
        font-size: 16px;
        border-radius: 10px;
    }

    .form-group label {
        left: 12px;
        font-size: 0.9rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .map {
        height: 300px;
    }

    .footer-top {
        padding: 50px 0 40px;
    }

    .footer-desc {
        font-size: 0.9rem;
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 0.9rem;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        font-size: 1.5rem;
    }
}
