/*
Theme Name: Motorcami
Theme URI: https://motorcami.com
Author: Caglar Motorcami
Description: Custom WordPress theme converted from React.
Version: 1.0
*/

/* Imports from original React project */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Symbols:wght@100..900&display=swap");

/* 
NOTE: The original project used Tailwind CSS. 
For a fully functional theme, you should integrate a Tailwind build process 
or include the CDN link in functions.php for development.
*/

:root {
  --primary: rgba(249, 201, 10, 1);
  --primary-9: rgba(249, 201, 10, 0.9);
  --primary-8: rgba(249, 201, 10, 0.8);
  --primary-7: rgba(249, 201, 10, 0.7);
  --primary-6: rgba(249, 201, 10, 0.6);
  --primary-5: rgba(249, 201, 10, 0.5);
  --primary-4: rgba(249, 201, 10, 0.4);
  --primary-3: rgba(249, 201, 10, 0.3);
  --primary-2: rgba(249, 201, 10, 0.2);
  --primary-1: rgba(249, 201, 10, 0.1);
  --red: rgba(255, 94, 87, 1);
  --red-9: rgba(255, 94, 87, 0.9);
  --red-8: rgba(255, 94, 87, 0.8);
  --red-7: rgba(255, 94, 87, 0.7);
  --red-6: rgba(255, 94, 87, 0.6);
  --red-5: rgba(255, 94, 87, 0.5);
  --red-4: rgba(255, 94, 87, 0.4);
  --red-3: rgba(255, 94, 87, 0.3);
  --red-2: rgba(255, 94, 87, 0.2);
  --red-1: rgba(255, 94, 87, 0.1);
  --blue: rgba(64, 159, 255, 1);
  --blue-9: rgba(64, 159, 255, 0.9);
  --blue-8: rgba(64, 159, 255, 0.8);
  --blue-7: rgba(64, 159, 255, 0.7);
  --blue-6: rgba(64, 159, 255, 0.6);
  --blue-5: rgba(64, 159, 255, 0.5);
  --blue-4: rgba(64, 159, 255, 0.4);
  --blue-3: rgba(64, 159, 255, 0.3);
  --blue-2: rgba(64, 159, 255, 0.2);
  --blue-1: rgba(64, 159, 255, 0.1);
  --broken-white: rgb(247, 250, 252);
  --dark-color: #262626;
  --gradient: linear-gradient(110deg, #fadb14 0%, #fa8c16 100%);
}

/* Sticky Footer Layout */
html {
  height: 100%;
}

body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: "Noto Sans Symbols", sans-serif;
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

#page.site {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

#page.site > main,
#page.site > .site-main,
#page.site > #primary {
  flex: 1 0 auto;
}

footer.site-footer {
  flex-shrink: 0;
}

.container {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
}

.gradientText {
  background-image: var(--gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
}

.gradientButton {
  all: unset;
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: var(--gradient);
  background-size: 200% 200%;
  background-position: left;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  transition: background-position 1s ease-in-out;
  display: inline-block;
}

.gradientButton:hover {
  background-position: right;
}

/* Typography Clamps */
.clamp-h1 { font-size: clamp(1.75rem, 1.0536rem + 2.4762vw, 3.375rem); }
.clamp-h2 { font-size: clamp(1.5625rem, 0.9464rem + 2.1905vw, 3rem); }
.clamp-h3 { font-size: clamp(1.375rem, 0.8929rem + 1.7143vw, 2.5rem); }
.clamp-h4 { font-size: clamp(1.1875rem, 0.7857rem + 1.4286vw, 2.125rem); }
.clamp-h5 { font-size: clamp(1rem, 0.7321rem + 0.9524vw, 1.625rem); }

.clamp-p {
  font-size: clamp(1rem, 0.9rem + 0.8vw, 1.25rem);
  letter-spacing: 0.01em;
  text-align: left;
  padding: 0.5em 1.5em;
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 600px) {
  .clamp-p {
    font-size: 1rem;
    padding: 0.5em 0.5em;
  }
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Component Styles --- */

/* Navbar CSS */
.navbar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    height: 70px;
    background-color: white;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.1));
    transition: background-color 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.navbar .logo {
    background-color: white;
    padding: 2rem 0.5rem 0.5rem 0.5rem;
    height: 170px;
    border-radius: 25px;
    transform: translateY(10%);
    opacity: 1;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.09);
    transition: transform 0.5s ease-in, opacity 0.5s ease-in;
}

@media (max-width: 600px) {
    .navbar .logo{
        height: 100px;
        padding: 2rem 1rem 1rem 1rem;
    }
}

.navbar .navMain {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.navbar .navMain .text {
    color: black;
    opacity: .7;
    transition: ease .3s;
    font-weight: 400;
}

.navbar .navMain .text:hover {
    opacity: 1;
}

/* Main Menu List Styling */
.navbar .navMain .mainList,
.navbar .navMain .mainList ul {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar .navMain .mainList .mainItem {
    font-weight: 300;
    cursor: pointer;
}

.navbar .navMain .mainList .dropdown {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    height: 70px;
}

.navbar .navMain .mainList .dropdown p {
    color: rgba(0, 0, 0, .7);
    transition: ease .3s;
    font-weight: 400;
}

.navbar .navMain .mainList .dropdown ul {
    position: absolute;
    width: 250px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    top: 0;
    margin-top: 70px;
    background-color: white;
    padding: 1rem;
    border-radius: 0 0 1rem 1rem;
    font-weight: lighter;
    display: none;
}

.navbar .navMain .mainList .dropdown:hover ul {
    display: flex;
}

.navbar .navMain .mainList .dropdown:hover p {
    color: rgba(0, 0, 0, 1);
}

.navbar .navMain .mainList .dropdown ul li {
    transition: ease .3s;
}

.navbar .navMain .mainList .dropdown ul:hover> :not(:hover) {
    filter: blur(1px);
}

.navbar .navMain .nav-divider {
    width: 1px;
    height: 20px;
    display: block;
    background-color: rgba(73, 73, 73, 0.751);
}

.navbar .navMain .heroNavSocials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    list-style: none;
}

.navbar .navMain a {
    color: rgba(0, 0, 0, .7);
    transition: ease .3s;
    font-weight: 400;
}

.navbar .navMain a:hover {
    color: rgba(0, 0, 0, 1);

}

.navbar .hamburger {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: ease .3s;
    gap: .5rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 999;

}

.navbar .hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #333 !important;
    transition: ease .3s;
}

.navbar .hamburger span:nth-child(1) {
    width: 20px;
}

.navbar .hamburger span:nth-child(3) {
    width: 15px;
    align-self: flex-end;

}
.navbar .navMain .respArea{
    display: none;
}

@media(max-width:768px){
    /* Hide desktop menu items */
    .navbar .navMain .mainList {
        display: none !important;
    }
    .navbar .navMain .heroNavSocials {
        display: none !important;
    }
    .navbar .navMain > span {
        display: none !important;
    }
    
    /* Show hamburger area */
    .navbar .navMain .respArea {
        display: flex !important;
        align-items: center;
    }
    
    /* Hamburger button styling */
    .navbar .navMain .respArea .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    
    /* Hamburger lines - Staggered design */
    .navbar .navMain .respArea .hamburger span {
        display: block !important;
        height: 2px !important;
        background-color: #000 !important;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    /* Top line */
    .navbar .navMain .respArea .hamburger span:nth-child(1) {
        width: 20px !important;
    }
    
    /* Middle line */
    .navbar .navMain .respArea .hamburger span:nth-child(2) {
        width: 30px !important;
    }
    
    /* Bottom line */
    .navbar .navMain .respArea .hamburger span:nth-child(3) {
        width: 15px !important;
        align-self: flex-end;
    }
    
    /* Hide site branding */
    .navbar .site-branding {
        display: none;
    }
}

/* Header/Breadcrumb CSS */
.headerArea{
    width: 100%;
    height: 40vh;
    transform: translateY(-70px);
    position: relative;
}

.headerArea .overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(26,26,26,.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;

}

.headerArea .overlay li,
.headerArea .overlay a{
    color: white;
}

.headerArea::after{
    content: '';
    width: 100%;
    height: 3px;
    display: block;
    background-color: var(--primary);
}

/* Footer CSS */
footer{
    background-color: var(--dark-color);
    padding: 3rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

footer .divider{
    width: 100%;
    height: 1px;
    background-color: var(--primary);
    opacity: .7;
}

footer .policies .divider{
    width: 1px;
    height: 30px;
    background-color: #fff;
    opacity: .7;
}

footer ul{
    list-style: none;
}

footer li{
    font-weight: 200;
    font-size: 0.9rem;
}

footer a{
    color: white;
    font-weight: 200;
    font-size: 0.9rem;
}
footer p{
    color: white;
    width: 80%;
    font-weight: 200;
    font-size: 1rem;
}
footer .policies{
    display: flex;
    align-items: center;
    gap: 1rem;
}

footer a:hover{
    color: var(--primary);
}

footer .footerGrid{
    display: grid;
    grid-template-columns: 2fr 1.5fr .5fr;
    gap: 3rem;
}

footer .footerGrid img{
    width: 100%;
    height: 120px;
    object-fit: contain;
    object-position: left;
}

footer .footerGrid .footerNav{
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

footer .footerGrid .footerNav li{
    text-align: end;
}

footer .footerGrid .socialIcon{
    padding: .5rem;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: ease .3s;
}

footer .footerGrid .socialIcon .iconMain{
    width: 20px;
    height: 20px;
}


footer .footerGrid .socialIcon:hover{
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: white;
}

@media (max-width: 986px){
    footer .footerGrid{
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
    }
    footer .footerGrid .footerFlex{
        align-items: start;
    }
    footer .footerGrid .footerNav li{
        text-align: start;
    }
    footer .footerBottom{
        flex-direction: column-reverse;
    }
    footer .footerBottom p{
        text-align: center;
    }
}

/* Hero CSS */
.heroSection {
    width: 100%;
    height: 84vh;
    position: relative;
    overflow: hidden;
    background-color: var(--broken-white);
}

.heroSection .counter {
    position: absolute;
    right: 1rem;
    z-index: 100;
    bottom: 10%;
    color: white;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 5px;
    display: flex;
    justify-content: center;
    align-items: end;
    opacity: .6;
}

.heroSection .counter span {
    font-size: 25px;
}

.heroSection .leftButton,
.heroSection .rightButton {
    all: unset;
    position: absolute;
    z-index: 1000;
    border-radius: 100%;
    top: 40%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    transition: ease .3s;
    margin: 2rem;
}

.heroSection .rightButton {
    right: 0;
}

.heroSection .leftButton:hover,
.heroSection .rightButton:hover {
    background-color: rgb(138, 138, 138);
    color: white;
}

.heroSection .leftButton svg,
.heroSection .rightButton svg {
    transition: transform 0.3s ease;
}

.heroSection .rightButton:hover svg {
    animation: slideRight 0.5s ease forwards;
}

.heroSection .leftButton:hover svg {
    animation: slideLeft 0.5s ease forwards;
}

@keyframes slideRight {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

@keyframes slideLeft {
    0% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.heroSection .heroCircle {
    width: 500vw;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -100%);
    overflow: hidden;
}

.heroSection .heroCircle .swiper-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
}

.heroSection .heroCircle .swiper-container .hero-swiper {
    width: 100vw;
    height: 100%;
}

.heroSection .heroCircle .swiper-container .swiper-wrapper {
    width: 100vw;
    height: 100%;
}

.heroSection .heroCircle .swiper-container .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.heroSection .heroCircle .swiper-container .swiper-wrapper .swiper-slide .slide-content {
    width: 100vw;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.heroSection .heroCircle .swiper-container .swiper-wrapper .swiper-slide .slide-content .slide-img {
    width: 100vw;
    height: 120vh;
    object-fit: cover;
}

.heroSection .heroCircle .swiper-container .swiper-wrapper .swiper-slide .slide-content .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200vh;
    top: -25vh;
    background: rgba(35, 35, 35, 0.7);
    z-index: 1;
}

.heroSection .heroCircle .swiper-container .swiper-wrapper .swiper-slide .slide-content .text-content {
    position: absolute;
    z-index: 2;
}

.heroSection .heroCircle .swiper-container .swiper-wrapper .swiper-slide .slide-content .text-content .slideDescription {
    transition: ease .7s;
    transition-delay: .8s;
    margin-top: 0.2rem;
    width: 50%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    line-height: 20px;
    text-align: center;
}

@media (max-width: 500px) {
    .heroSection .heroCircle .swiper-container .swiper-wrapper .swiper-slide .slide-content .text-content .slideDescription {
        display: none;
    }

    .heroSection,
    .heroSection .heroCircle .swiper-container {
        height: 50vh;
    }

    .heroSection .leftButton,
    .heroSection .rightButton {
        top: 45%;
    }
}

/* Service Cards CSS */
.serviceCards{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    transform: translateY(-50%);
    align-items: stretch;
}

.serviceCards .serviceCard{
    background-color: white;
    padding: 2rem;
    box-shadow: 0px 0px 10px var(--red-2);
    border-radius: 5px;
    display: flex;
    gap: 1rem;
    align-items: center;
    height: 100%;
}

.serviceCards .serviceCard p{
    font-size: 14px;
    opacity: .7;
}

@media (max-width: 864px){
    .serviceCardsMain{
        padding: 1rem;
        margin-top: 1rem;
    }
    .serviceCards{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        transform: none;
    }
    .serviceCards .serviceCard{
        padding: 1.25rem;
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        align-items: flex-start;
    }
    .serviceCards .serviceCard p{
        font-size: 13px;
    }
    .serviceCards .serviceCard h4{
        font-size: 16px;
        margin-bottom: 0.25rem;
    }
}

/* About CSS */
.aboutSection{
    padding: 2rem 0;
}

.aboutSection .imageArea{
    position: relative;
}

.aboutSection .imageArea .mainImage{
    width: 100%;
    height: 400px;
    border-radius: 0 1rem 0 1rem;
    object-fit: cover;
    object-position: center;
}


.aboutSection .imageArea .secondImage{
    position: absolute;
    width: 60%;
    height: 200px;
    bottom: -5rem;
    right: 5%;
    opacity: 1;
    border-radius: 1rem 0 1rem 0;
    object-fit: cover;
    object-position: 90% 80%;
}

@media (max-width: 1024px){
    .aboutSection .imageArea .secondImage{
        display: none;
    }
}

/* Product Cards CSS */
.productCards{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    flex-direction: column;
}

.productCards .router{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .3rem;
    color:black;
    opacity: .6;
    transition: ease .3s;
}

.productCards .swiper-container {
    width: 100%;
    overflow: hidden;
}

.productCards .router:hover{
    opacity: 1;
}

.productCards .swiper-wrapper{
    width: 100%;
    margin-top: 0.70rem;
}

.productCards .swiper-wrapper .swiper-slide{
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.productCards .swiper-wrapper .swiper-slide .slide-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease .3s;
}

.productCards .swiper-wrapper .swiper-slide .overlay{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
    display: block;
    transition: ease .3s;
    background: linear-gradient(0deg, rgba(0, 0, 0,.8) 0%, rgba(0, 0, 0,.1) 100%);
    opacity: 1;
}

.productCards .swiper-wrapper .swiper-slide h4{
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 3;
    color: white;
    transition: ease .3s;
}

.productCards .swiper-wrapper .swiper-slide:hover h4{
    bottom: -4.3rem;
}


.productCards .swiper-wrapper .swiper-slide:hover .overlay{
    opacity: 0.3;
}

.productCards .swiper-wrapper .swiper-slide:hover .slide-img{
    width: 102%;
    height: 102%;
}

@media (max-width:500px) {
    .productCards .router{
        display: none;
    }
}

/* Typography Utility Classes */
.clamp-i,
.clamp-b,
.clamp-input,
.clamp-label,
.clamp-button {
    font-size: clamp(0.8125rem, 0.6786rem + 0.4762vw, 1.125rem);
}

/* Contact Section CSS */
.homeContact{
    width: 100%;
    background: url('/wp-content/themes/motorcami/assets/images/g1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.homeContact .overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    padding: 50px 0;
}

.homeContact .overlay .title{
    font-size: 24px;
    font-weight: 400;
    color: white;
}

.homeContact form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: white;
    width: 600px;
}

.homeContact form .selectArea,
.homeContact form .inputArea,
.homeContact form .textArea{
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 100%;
}

.homeContact form .selectArea select,
.homeContact form .inputArea input,
.homeContact form .textArea textarea{
    all: unset;
    height: 40px;
    display: flex;
    align-items: center;
    color: black;
    background-color: white;
    padding: 0 .5rem;
    border-radius: 5px;
    cursor: pointer;
}

.homeContact form label{
    opacity: .7;
}

.homeContact form .inputArea input:focus,
.homeContact form .selectArea select:focus,
.homeContact form .textArea textarea:focus{
    outline: 3px solid var(--primary-7);
}

.homeContact form .inputArea input,
.homeContact form .textArea textarea{
    cursor: text;
}

.homeContact form .textArea textarea{
    height: 100px;
    resize: none;
    padding: .5rem;
}

.homeContact form .submitButton{
    all: unset;
    width: 100%;
    height: 40px;
    background-color: var(--primary-7);
    color: white;
    font-size: 20px;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    transition: ease .3s;
    text-align: center;
}

.homeContact form .submitButton:hover{
    background-color: var(--primary);
    color: rgb(26, 26, 26);
}

@media (max-width: 600px) {
    .homeContact form{
        width: 350px;
    }
    .homeContact form .responsiveFlex{
        flex-direction: column;
    }
}

/* HeroNav CSS */
.heroNavigator{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    height: 70px;
}

.heroNavigator img{
    height: 100px;
}

.heroNavigator .heroNavMain{
    display: flex;
    gap: 1rem;
    align-items: center;
}

.heroNavigator .heroNavMain .mainList{
    display: flex;
    gap: 1.25rem;
    align-items: center;
    list-style: none;
}

.heroNavigator .heroNavMain .mainList .mainItem{
    font-weight: 600;
    cursor: pointer;
}

.heroNavigator .heroNavMain .mainList .dropdown{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    height: 70px;
}

.heroNavigator .heroNavMain .mainList .dropdown p{
    color: white;
    transition: ease .3s;
}

.heroNavigator .heroNavMain .mainList .dropdown ul{
    position: absolute;
    width: 250px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    top: 0;
    margin-top: 50px;
    background-color: rgba(0,0,0,.5);
    padding: 1rem;
    border-radius: 1rem;
    display: none;
    font-weight: lighter;
}

.heroNavigator .heroNavMain .mainList .dropdown:hover ul{
    display: flex;
}

.heroNavigator .heroNavMain .mainList .dropdown:hover p{
    color: var(--primary);
}

.heroNavigator .heroNavMain .mainList .dropdown ul li{
    transition: ease .3s;
}

.heroNavigator .heroNavMain .mainList .dropdown ul:hover > :not(:hover){
    filter: blur(1px);
}

.heroNavigator .heroNavMain span{
    width: 1px;
    height: 20px;
    display: block;
    background-color: rgba(255,255,255,.4);
}

.heroNavigator .heroNavMain .heroNavSocials{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    list-style: none;
}

.heroNavigator .heroNavMain a{
    color: rgba(255,255,255);
    transition: ease .3s;
}

.heroNavigator .heroNavMain a:hover{
    color: var(--primary);
}

.heroNavigator .hamburger {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: ease .3s;
    gap: .5rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 999;
}

.heroNavigator .hamburger span {
    width: 30px;
    height: 1px;
    transition: ease .3s;
    opacity: .7;
}

.heroNavigator .hamburger span:nth-child(1) {
    width: 20px;
}

.heroNavigator .hamburger span:nth-child(3) {
    width: 15px;
    align-self: flex-end;
}

.heroNavigator .heroNavMain .respArea{
    display: none;
}

@media (max-width: 768px) {
    .heroNavigator .heroNavMain .mainList{
        display: none;
    }
    .heroNavigator .heroNavMain .respArea{
        display: flex;
    }
}

/* BottomRouter CSS */
.BottomRouter{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 2rem;
}

.BottomRouter .mainArea{
    padding: 2rem;
    background-color: var(--primary);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    border-radius: .5rem;
    position: relative;
    z-index: 1;
}

.BottomRouter .mainArea .animatedMainButton{
    all: unset;
    background-color: white;
    color: var(--dark-color);
    width: 200px;
    height: 40px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.BottomRouter .mainArea .animatedMainButton::after{
    content: '';
    height: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--dark-color);
    display: block;
    position: absolute;
    top: 0;
    scale: 0;
    transition: ease .5s;
    z-index: 1;
}

.BottomRouter .mainArea .animatedMainButton:hover::after{
    scale: 5.5;
}

.BottomRouter .mainArea .animatedMainButton::before{
    content: 'Devamını Oku';
    position: absolute;
    top: -1rem;
    transition: ease .5s;
    z-index: 2;
    color: white;
}

.BottomRouter .mainArea .animatedMainButton:hover::before{
    top: 50%;
    transform: translateY(-50%);
}

.BottomRouter .overBg{
    width: 100%;
    height: 65%;
    background-color: var(--dark-color);
    position: absolute;
    z-index: 0;
    bottom: 0;
}

/* SideComps CSS */
.sideContact{
    all: unset;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    rotate: -90deg;
    display: none;
    opacity: 0;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    height: 50px;
    padding: 0 2rem;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0px 5px 10px rgba(0,0,0,.2);
    cursor: pointer;
    z-index: 1000;
}

.sideFollow{
    display: none;
    opacity: 0;
    gap: .5rem;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    rotate: -90deg;
    z-index: 1000;
    right: 0;
    color: #c0c0c0;
    mix-blend-mode: difference;
}

.sideFollow a{
    text-decoration: none;
    color: #c0c0c0;
    mix-blend-mode: difference;
    transition: ease .3s;
}

.sideFollow a:hover{
    color: var(--primary);
}

/* Institutional Page CSS */
.institutional-container {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.institutional-content {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    margin: 2rem 0;
}

.institutional-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 1.5rem;
}

.institutional-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6B8E23 0%, #556B2F 100%);
    border-radius: 2px;
}

.institutional-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.institutional-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 100%;
    background: #6B8E23;
    border-radius: 3px;
}

.institutional-content h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #34495e;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.institutional-content p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.9;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    text-align: justify;
    font-style: normal;
}

.section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: #fafbfc;
    border-radius: 10px;
    border: 1px solid #e8ecef;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.section:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.section:first-of-type {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border: none;
    color: #2c3e50;
}

.section:first-of-type p {
    color: #2c3e50;
    font-weight: 500;
}

.section:nth-child(2) { animation-delay: 0.1s; }
.section:nth-child(3) { animation-delay: 0.2s; }
.section:nth-child(4) { animation-delay: 0.3s; }
.section:nth-child(5) { animation-delay: 0.4s; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.value-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    border-top: 4px solid #6B8E23;
    position: relative;
    display: flex;
    flex-direction: column;
}

.value-item::before {
    content: none;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-top-color: #556B2F;
}

.value-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
    flex-grow: 1;
}

.institutional-content ul {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
    margin-top: 1.5rem;
}

.institutional-content li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.institutional-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: #6B8E23;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.section:last-child ul li {
    background: white;
    padding: 1rem 1rem 1rem 3rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.section:last-child ul li:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.institutional-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.section:first-of-type p:last-child {
    font-size: 1.3rem;
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border-left: 5px solid #6B8E23;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.institutional-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

@media (max-width: 768px) {
    .institutional-content {
        padding: 2rem 1.5rem;
    }
    
    .section {
        padding: 1.5rem;
    }

    .institutional-content h1 {
        margin-bottom: 2rem;
    }

    .institutional-content h2 {
        padding-left: 1rem;
    }
    
    .institutional-content p {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        padding: 1.5rem;
    }

    .institutional-content li {
        padding-left: 2rem;
    }

    .section:first-of-type p:last-child {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

@media print {
    .section {
        box-shadow: none !important;
        border: 1px solid #ccc;
        padding: 1rem;
    }
    .value-item {
        box-shadow: none !important;
        border: 1px solid #ccc;
    }
}

/* =============================== */
/* ===== MOBILE MENU STYLES ====== */
/* =============================== */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100000;
    transform: translateX(100%);
    transition: transform 1s ease-in-out;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}



.menu-close-btn {
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: white;
    line-height: 1;
    transition: transform 0.3s;
}

.menu-close-btn:hover {
    transform: rotate(90deg);
}

.mobile-nav {
    padding: 0 3rem;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-list li {
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateX(50px);
    animation: mobileMenuSlideIn 0.5s ease forwards;
}

.mobile-menu-overlay.active .mobile-menu-list li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(5) { animation-delay: 0.5s; }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(6) { animation-delay: 0.6s; }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(7) { animation-delay: 0.7s; }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(8) { animation-delay: 0.8s; }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(9) { animation-delay: 0.9s; }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(10) { animation-delay: 1s; }

@keyframes mobileMenuSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu-list li a {
    display: block;
    padding: 0.5rem 0;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: white;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    font-weight: 300;
}

.mobile-menu-list li a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.mobile-menu-footer {
    padding: 0 3rem;
    margin-top: 2rem;
}

.mobile-menu-footer p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.mobile-socials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.mobile-socials li a {
    color: white;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

/* Mobile Dropdown */
.mobile-dropdown-link {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
}

.dropdown-arrow {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.mobile-dropdown-item.active .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(255, 255, 255, 0.05); /* Slight contrast */
    border-radius: 8px;
}

.mobile-dropdown-item.active .mobile-submenu {
    max-height: 500px; /* Arbitrary large height */
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

.mobile-submenu li {
    margin-bottom: 0;
}

.mobile-submenu li a {
    padding: 0.5rem 1rem !important;
    font-size: clamp(1rem, 3vw, 1.2rem) !important;
    border-bottom: none !important;
    opacity: 0.8;
}

.mobile-submenu li a:hover {
    opacity: 1;
    padding-left: 1.5rem !important;
}

/* Mobile Menu Backdrop - artık gerekli değil ama uyumluluk için */
.mobile-menu-backdrop {
    display: none;
}

/* Hamburger Animation */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    background-color: #333;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    width: 30px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 30px;
}

/* Nav Divider for respArea */
.nav-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(73, 73, 73, 0.5);
    margin-right: 1rem;
}

/* Hide heroNavSocials on mobile */
@media (max-width: 768px) {
    .navbar .navMain .heroNavSocials {
        display: none;
    }
}

/* ================================ */
/* ===== SIDE COMPONENTS CSS ====== */
/* ================================ */

.sideContact {
    all: unset;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    rotate: -90deg;
    display: none;
    opacity: 0;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    height: 50px;
    padding: 0 2rem;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0px 5px 10px rgba(0,0,0,.2);
    cursor: pointer;
    z-index: 1000;
}

.sideFollow {
    display: none;
    opacity: 0;
    gap: .5rem;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    rotate: -90deg;
    z-index: 1000;
    right: 0;
    color: #c0c0c0;
    mix-blend-mode: difference;
}

.sideFollow a {
    text-decoration: none;
    color: #c0c0c0;
    mix-blend-mode: difference;
    transition: ease .3s;
}

.sideFollow a:hover {
    color: var(--primary);
}

/* ================================ */
/* ===== BOTTOM ROUTER CSS ======== */
/* ================================ */

.BottomRouter {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 2rem;
}

.BottomRouter .mainArea {
    padding: 2rem;
    background-color: var(--primary);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    border-radius: .5rem;
    position: relative;
    z-index: 1;
}

.BottomRouter .mainArea .animatedMainButton {
    all: unset;
    background-color: white;
    color: var(--dark-color);
    width: 200px;
    height: 40px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.BottomRouter .mainArea .animatedMainButton::after {
    content: '';
    height: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--dark-color);
    display: block;
    position: absolute;
    top: 0;
    scale: 0;
    transition: ease .5s;
    z-index: 1;
}

.BottomRouter .mainArea .animatedMainButton:hover::after {
    scale: 5.5;
}

.BottomRouter .mainArea .animatedMainButton::before {
    content: 'Devamını Oku';
    position: absolute;
    top: -1rem;
    transition: ease .5s;
    z-index: 2;
    color: white;
}

.BottomRouter .mainArea .animatedMainButton:hover::before {
    top: 50%;
    transform: translateY(-50%);
}

.BottomRouter .overBg {
    width: 100%;
    height: 65%;
    background-color: var(--dark-color);
    position: absolute;
    z-index: 0;
    bottom: 0;
}

/* Institutional/Biz Kimiz Page Styles */
.institutional-container {
    background-color: #f8f9fa;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.institutional-content {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    margin: 2rem 0;
}

.institutional-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.institutional-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
}

.institutional-content h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #34495e;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.institutional-content p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.9;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.section {
    margin-bottom: 2rem;
    padding: 2rem;
    background: #fafbfc;
    border-radius: 10px;
    border: 1px solid #e8ecef;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.section:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.value-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    border-top: 4px solid var(--primary);
    position: relative;
    display: flex;
    flex-direction: column;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
    flex-grow: 1;
    margin-bottom: 0;
}

/* Breadcrumb Header */
.breadcrumb-header {
    padding: 4rem 0;
    text-align: center;
    margin-top: 70px;
}

.breadcrumb-header h1 {
    margin-bottom: 1rem;
}

.breadcrumb-header .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .institutional-content {
        padding: 2rem 1.5rem;
    }
    
    .section {
        padding: 1.5rem;
    }

    .institutional-content h2 {
        padding-left: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        padding: 1.5rem;
    }

    .breadcrumb-header {
        padding: 3rem 0;
    }
}

/* Filter Scrollable Container */
.filter-scroll-container {
    flex-wrap: wrap; /* Default for desktop */
}

@media (max-width: 768px) {
    .filter-scroll-container {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem; /* Space for scrollbar if visible */
        
        /* Hide scrollbar for Chrome, Safari and Opera */
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    
    .filter-scroll-container::-webkit-scrollbar {
        display: none;
    }
    
    .filter-scroll-container a {
        flex: 0 0 auto; /* Prevent shrinking */
        white-space: nowrap; /* Keep text on one line */
    }
}

/* Instagram Section Styles - Modern Design */
.instagram-section {
    padding: 4rem 0;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.instagram-section .container {
    max-width: 1200px;
}

/* Header - Horizontal Layout */
.instagram-section .instagram-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

/* Sol: Profil Fotoğrafı */
.instagram-section .instagram-profile-pic {
    flex-shrink: 0;
}

.instagram-section .instagram-profile-pic img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045) border-box;
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.2);
}

/* Sağ: Content (Yazılar + Buton) */
.instagram-section .instagram-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.instagram-section .instagram-text h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
}

.instagram-section .instagram-text p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* Follow Button */
.instagram-section .instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    background-size: 200% 200%;
    background-position: left;
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.25);
}

.instagram-section .instagram-follow-btn:hover {
    background-position: right;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.35);
    color: white;
}

.instagram-section .instagram-follow-btn svg {
    transition: transform 0.3s ease;
}

.instagram-section .instagram-follow-btn:hover svg {
    transform: translate(3px, -3px);
}

/* Feed Wrapper */
.instagram-section .instagram-feed-wrapper {
    margin: 0 auto;
}

/* Placeholder with animated skeleton */
.instagram-section .instagram-placeholder {
    text-align: center;
}

.instagram-section .placeholder-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.instagram-section .placeholder-item {
    aspect-ratio: 1;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.instagram-section .instagram-placeholder p {
    color: #999;
    font-size: 0.9rem;
}

/* Smash Balloon Overrides */
.instagram-section #sb_instagram {
    padding: 0 !important;
    background: transparent !important;
}

.instagram-section #sb_instagram #sbi_images {
    padding: 0 !important;
}

.instagram-section #sbi_images .sbi_item {
    border-radius: 10px !important;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-section #sbi_images .sbi_item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Hide Smash Balloon branding/header */
.instagram-section #sb_instagram .sb_instagram_header,
.instagram-section #sb_instagram #sbi_load,
.instagram-section .sbi_header_text,
.instagram-section .sbi_bio,
.instagram-section .sbi_follow_btn {
    display: none !important;
}

/* Responsive */
@media (max-width: 900px) {
    .instagram-section .placeholder-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 3rem 0;
    }
    
    .instagram-section .instagram-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .instagram-section .instagram-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .instagram-section .instagram-text h2 {
        font-size: 1.2rem;
    }
    
    .instagram-section .placeholder-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
