/* Nisa Pimapen Sineklik - Ana CSS Dosyası */
/* Google Fonts artık HTML'den asenkron yükleniyor - @import kaldırıldı */

:root {
    --primary: #0A1931; /* Lacivert */
    --accent: #E50914;  /* Kırmızı */
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 15px;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo {
    background: var(--primary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 0 0 15px 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    text-align: center;
    line-height: 1.1;
    margin-top: -15px;
    box-shadow: 0 5px 15px rgba(10, 25, 49, 0.2);
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
    white-space: nowrap;
}

.contact-item i {
    font-size: 18px;
}

.trust-badge-header {
    background: var(--accent);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
    background: rgba(10, 37, 88, 0.05);
    padding: 10px 15px;
    border-radius: 12px;
    transition: all 0.3s;
}
.mobile-menu-btn:active {
    background: rgba(10, 37, 88, 0.1);
}

/* Mobile header contact buttons (phone + whatsapp) */
.mobile-contact-btns {
    display: none;
    align-items: center;
    gap: 8px;
}

.mobile-call-btn,
.mobile-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: var(--white);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mobile-call-btn {
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(10, 37, 88, 0.25);
}

.mobile-wa-btn {
    background: #25d366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.mobile-call-btn:hover,
.mobile-wa-btn:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    background: var(--white);
    position: relative;
}

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

.hero-image-wrap {
    position: relative;
}

.cat-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: 10px 10px 20px 20px;
    text-align: center;
    font-weight: 700;
    box-shadow: var(--shadow);
    z-index: 2;
    border-top: 3px solid rgba(255,255,255,0.2);
}

.cat-badge::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: var(--primary) transparent transparent;
}

.hero-img {
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
}

.hero-content h3 {
    color: var(--accent);
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 56px;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-features-bar {
    background: var(--primary);
    color: var(--white);
    display: inline-flex;
    padding: 12px 25px;
    border-radius: 30px;
    gap: 20px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--white);
    padding: 20px 15px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s;
}

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

/* Contact Modern Grid */
.contact-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 20px;
}
@media (max-width: 991px) {
    .contact-modern-grid {
        grid-template-columns: 1fr;
    }
}

.service-card img {
    height: 40px;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 14px;
    color: var(--primary);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(229, 9, 20, 0.2);
}

.btn-primary:hover {
    background: #c60812;
    transform: translateY(-2px);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
    z-index: 2;
}

.experience-badge .num {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Montserrat';
}

/* Features Footer Bar */
.features-bottom {
    background: var(--white);
    padding: 30px 0;
    border-top: 1px solid #eee;
    margin-top: -20px;
    position: relative;
    z-index: 10;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.03);
}

.features-bottom .container {
    display: flex;
    justify-content: space-between;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
}

.feature-item i {
    font-size: 24px;
    color: var(--accent);
}

/* Content Area for Pages */
.page-header {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.breadcrumb {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--white);
}

.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.main-content h2 {
    color: var(--primary);
    margin: 40px 0 20px;
    font-size: 28px;
}

.main-content h3 {
    color: var(--primary);
    margin: 30px 0 15px;
    font-size: 22px;
}

.main-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
}

.main-content ul {
    margin: 20px 0 30px 20px;
    color: var(--text-light);
}

.main-content li {
    margin-bottom: 10px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.widget {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.widget h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 20px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
    display: inline-block;
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget li {
    margin-bottom: 15px;
}

.widget a {
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget a:hover {
    color: var(--accent);
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-family: 'Montserrat';
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: var(--accent);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Call Button Mobile */
.call-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 26px;
    box-shadow: 2px 2px 15px rgba(229, 9, 20, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(229, 9, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

/* Responsive */
@media (max-width: 1150px) {
    .contact-info, .trust-badge-header {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .logo {
        font-size: 17px;
        padding: 10px 15px;
    }
    .mobile-contact-btns {
        display: flex;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-bottom .container {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .content-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mobile-main-link {
        display: block !important;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .hero-features-bar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        text-align: center;
        padding: 10px;
    }
    .hero-features-bar span {
        font-size: 13px;
        padding: 5px 10px;
        background: rgba(255,255,255,0.1);
        border-radius: 20px;
    }
    .cat-badge {
        top: 5px;
        left: -10px;
        padding: 10px 15px;
        font-size: 10px;
        border-radius: 5px 15px 15px 5px;
    }
    .cat-badge::after {
        display: none;
    }
    .experience-badge {
        width: 75px;
        height: 75px;
        bottom: 10px;
        right: auto;
        left: 10px;
        border-width: 3px;
    }
    .experience-badge .num {
        font-size: 22px;
    }
    .experience-badge .text {
        font-size: 9px;
    }
}

/* Navigation Menu */
.main-nav {
    margin-left: 20px;
    flex-grow: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.nav-menu > li > a {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nav-menu > li > a:hover {
    color: var(--accent);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-menu li a {
    color: var(--text-dark);
    display: block;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: #f9f9f9;
    color: var(--accent);
    padding-left: 25px;
}

/* Mobile Nav Overlay */
.mobile-nav-active .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-top: 1px solid #eee;
}

.mobile-nav-active .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    padding-left: 15px;
    display: none;
}

.mobile-nav-active .dropdown.active .dropdown-menu {
    display: block !important;
}

@media (max-width: 1150px) {
    .nav-menu {
        display: none;
    }
}

/* =========================================
   Modern Content Typography (Sub-Pages)
   ========================================= */

.main-content {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .main-content {
        padding: 25px;
    }
}

.main-content h1 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.main-content h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent);
}

.main-content h2 {
    font-size: 24px;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid var(--accent);
    background: linear-gradient(to right, rgba(229, 9, 20, 0.05), transparent);
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0 8px 8px 0;
}

.main-content h3 {
    font-size: 20px;
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.main-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.main-content ul {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 5px;
}

.main-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.main-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
}

.main-content img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin: 20px 0;
    transition: transform 0.3s ease;
    display: block;
}

.main-content img:hover {
    transform: translateY(-5px);
}

.main-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
    margin: 40px 0;
}

.main-content blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--accent);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #555;
}

/* =========================================
   Galeri Sayfası CSS
   ========================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 25, 49, 0.5); /* var(--primary) but transparent */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 30px;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    animation: zoomIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}


.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoomIn {
    from {transform:scale(0.8); opacity:0;} 
    to {transform:scale(1); opacity:1;}
}

/* =========================================
   Instagram Entegrasyonu
   ========================================= */

/* Instagram Float Button - kaldırıldı */
.instagram-float { display: none !important; }


/* Header Instagram Icon */
.header-instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    font-size: 18px;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
    flex-shrink: 0;
}

.header-instagram-link:hover {
    transform: scale(1.12) rotate(-5deg);
    color: #fff;
    box-shadow: 0 6px 18px rgba(220, 39, 67, 0.45);
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 18px;
    color: #fff;
    transition: transform 0.25s, opacity 0.25s;
    opacity: 0.85;
}

.footer-social-link:hover {
    transform: translateY(-4px);
    opacity: 1;
    color: #fff;
}

.footer-social-link.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social-link.whatsapp {
    background: #25d366;
}

/* Instagram Section (Homepage) */
.instagram-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #0A1931 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220,39,67,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.instagram-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(240,148,51,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.instagram-cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.instagram-cta-left h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.instagram-cta-left h2 span {
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-cta-left p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.instagram-follow-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(220, 39, 67, 0.55);
    color: #fff;
}

.instagram-follow-btn i {
    font-size: 22px;
}

.instagram-stats {
    display: flex;
    gap: 30px;
    margin-top: 35px;
}

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

.instagram-stat .stat-num {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.instagram-stat .stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

.instagram-cta-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram-phone-mockup {
    position: relative;
    width: 240px;
}

.instagram-phone-bg {
    width: 240px;
    height: 380px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 40px;
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 0 0 6px rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.instagram-phone-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240,148,51,0.08) 0%, rgba(220,39,67,0.08) 50%, rgba(188,24,136,0.08) 100%);
}

.insta-logo-big {
    font-size: 72px;
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: insta-spin 4s ease-in-out infinite alternate;
    position: relative;
    z-index: 1;
}

@keyframes insta-spin {
    0%   { transform: scale(1) rotate(0deg); }
    50%  { transform: scale(1.1) rotate(-5deg); }
    100% { transform: scale(1) rotate(5deg); }
}

.insta-handle {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.insta-followers-badge {
    background: linear-gradient(135deg, rgba(240,148,51,0.2), rgba(188,24,136,0.2));
    border: 1px solid rgba(220,39,67,0.35);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.instagram-deco-ring {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px dashed rgba(220,39,67,0.3);
    animation: spin-ring 12s linear infinite;
}

.instagram-deco-ring2 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px dashed rgba(240,148,51,0.25);
    animation: spin-ring 18s linear infinite reverse;
}

@keyframes spin-ring {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@media (max-width: 991px) {
    .instagram-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .instagram-cta-left h2 { font-size: 30px; }
    .instagram-stats { justify-content: center; }
    .instagram-cta-right { display: none; }
}

@media (max-width: 576px) {
    .instagram-cta-left h2 { font-size: 26px; }
    .instagram-stats { flex-wrap: wrap; gap: 20px; }
    .instagram-float {
        bottom: 100px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}