:root {
    --oraco-blue: #1e40af;
    --oraco-blue-dark: #152d79;
    --oraco-red: #dc2626;
    --oraco-red-dark: #b91c1c;
    --oraco-white: #ffffff;
    --oraco-light-blue: #3b82f6;
    --oraco-light-red: #ef4444;
    --oraco-light-gray: #f8fafc;
    --oraco-dark: #1e293b;
    --oraco-gray: #64748b;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--oraco-dark);
    background-color: var(--oraco-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========== WAVY BACKGROUND DESIGN ========== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Blue wave top right */
        radial-gradient(circle at 90% 10%, rgba(30, 64, 175, 0.08) 0%, transparent 50%),
        /* Red wave bottom left */
        radial-gradient(circle at 10% 90%, rgba(220, 38, 38, 0.09) 0%, transparent 50%),
        /* Diagonal blue gradient */
        linear-gradient(135deg, rgba(30, 64, 175, 0.03) 0%, transparent 30%),
        /* Diagonal red gradient */
        linear-gradient(45deg, transparent 60%, rgba(220, 38, 38, 0.04) 100%),
        /* Base white */
        linear-gradient(to bottom, #ffffff, #ffffff);
    z-index: -1;
    pointer-events: none;
}

/* Blue decorative wave on right side */
body::after {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: 
        /* Blue wave pattern */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(30, 64, 175, 0.03) 20px,
            rgba(30, 64, 175, 0.03) 40px
        ),
        /* Fade out */
        linear-gradient(to left, rgba(30, 64, 175, 0.05), transparent 50%);
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

/* Red decorative wave on left side */
.decorative-wave-left {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background:
        /* Red wave pattern */
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 15px,
            rgba(220, 38, 38, 0.03) 15px,
            rgba(220, 38, 38, 0.03) 30px
        ),
        /* Fade out */
        linear-gradient(to right, rgba(220, 38, 38, 0.05), transparent 60%);
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

/* Blue circular elements in corners */
.decorative-circle-top-right {
    position: fixed;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.decorative-circle-bottom-left {
    position: fixed;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

/* Subtle wave pattern overlay */
.wave-pattern-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Blue waves */
        radial-gradient(ellipse at 20% 20%, rgba(30, 64, 175, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(30, 64, 175, 0.04) 0%, transparent 50%),
        /* Red waves */
        radial-gradient(ellipse at 20% 80%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Optional: Add subtle animation to the circles */
@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.decorative-circle-top-right {
    animation: float 20s ease-in-out infinite;
}

.decorative-circle-bottom-left {
    animation: float 25s ease-in-out infinite;
    animation-delay: -5s;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--oraco-red);
    color: var(--oraco-white);
}

.btn-secondary:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--oraco-blue);
    border: 2px solid var(--oraco-blue);
}

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

.section {
    padding: 80px 0;
}

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

.section-header h4 {
    color: var(--oraco-blue);
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--oraco-dark);
    margin-bottom: 20px;
}

.section-header p {
    color: var(--oraco-black);
    max-width: 700px;
    margin: 0 auto;
}

.text-primary {
    color: var(--oraco-white) !important;
}

.text-secondary {
    color: var(--oraco-White) !important;
}

.bg-primary {
    background-color: var(--oraco-blue) !important;
}

.bg-secondary {
    background-color: var(--oraco-red) !important;
}

/* ========== SPINNER ========== */
#spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--oraco-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    animation: l14 4s infinite;
}

.loader::before,
.loader::after {    
    content: "";
    grid-area: 1/1;
    border: 8px solid;
    border-radius: 50%;
    border-color: red red #0000 #0000;
    mix-blend-mode: darken;
    animation: l14 1s infinite linear;
}

.loader::after {
    border-color: #0000 #0000 blue blue;
    animation-direction: reverse;
}

@keyframes l14 { 
    100% {
        transform: rotate(1turn);
    }
}

#spinner.hide {
    opacity: 0;
    pointer-events: none;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}


.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1320px;
	 gap: 60px; /* control gap between logo/subtitle block and menu */
}



.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 28px;
}


.logo-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: var(--oraco-gray);
    margin-left: 10px;
    border-left: 1px solid var(--oraco-gray);
    padding-left: 10px;
}

/* Logo Image Styles */
.logo-image {
    height: 50px; /* Adjust this value to match your navbar height */
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-image {
    height: 40px; /* Slightly smaller when navbar is scrolled */
}

/* Spinner logo image */
.spinner-logo .logo-image {
    height: 80px;
    margin-bottom: 20px;
}

/* Footer logo image */
.footer-logo .logo-image {
    height: 60px;
    margin-bottom: 20px;
    background-color: white;
    padding: 8px;
    border-radius: 4px;
}

/* Adjust logo container to use image instead of text */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}


.nav-links > * {
    flex-shrink: 0;
}


.nav-link {
    font-weight: 500;
    color: var(--oraco-dark);
    position: relative;
    padding: 8px 0;
    display: inline-block;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
}


.nav-link:hover, .nav-link.active {
    color: var(--oraco-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--oraco-blue);
}

.dropdown {
    position: relative;
}

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

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

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--oraco-dark);
}

.dropdown-item:hover {
    background-color: var(--oraco-light-gray);
    color: var(--oraco-blue);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--oraco-dark);
}

/* ========== SUB-DROPDOWN FOR MEDIA SOSIAL ========== */
.dropdown-with-submenu {
    position: relative;
}

.dropdown-item.has-submenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 40px;
}

.submenu-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-with-submenu:hover .submenu-icon {
    transform: translateX(3px);
}

/* Horizontal Sub-dropdown */
.sub-dropdown-content {
    position: absolute;
    left: 100%;
    top: 0;
    background-color: var(--oraco-white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 101;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Show sub-dropdown on hover of parent dropdown item */
.dropdown-with-submenu:hover .sub-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Sub-dropdown items side by side */
.sub-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--oraco-dark);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sub-dropdown-item:hover {
    background-color: var(--oraco-light-gray);
    color: var(--oraco-blue);
    padding-left: 25px;
}

.sub-dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

/* Facebook icon specific color */
.sub-dropdown-item i.fa-facebook-f {
    color: #1877f2;
}

/* TikTok icon specific color */
.sub-dropdown-item i.fa-tiktok {
    color: #000000;
}

/* Mobile menu adjustments */
@media (max-width: 992px) {
    /* Hide sub-dropdown on mobile - handle differently in mobile menu */
    .sub-dropdown-content {
        display: none;
    }
    
    .dropdown-item.has-submenu .submenu-icon {
        display: none;
    }
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h4 {
    color: var(--oraco-blue);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--oraco-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.hero-content p {
    font-size: 18px;
    color: var(--oraco-gray);
    margin-bottom: 30px;
}

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

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--oraco-blue);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--oraco-gray);
    font-size: 16px;
}

/* ========== ABOUT SECTION LAYOUT ========== */
.about .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.about-content .section-header {
    width: 100%;
    text-align: left;
}

.about-content h2 {
    font-size: 36px;
    color: var(--oraco-dark);
    margin-bottom: 20px;
    white-space: normal;
}

@media (max-width: 1400px) {
    .about-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 1200px) {
    .about-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 992px) {
    .about-content h2 {
        font-size: 28px;
    }
}

.about-content > p {
    color: var(--oraco-dark);
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--oraco-blue);
    color: var(--oraco-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.about-content .btn {
    align-self: start;
}

.about-image-slider {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 440px;
    overflow: hidden;
    border-radius: var(--radius);
}

@media (max-width: 992px) {
    .about-content {
        gap: 20px;
    }

    .about-content .section-header {
        text-align: center;
    }

    .about-content > p {
        text-align: center;
    }

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

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .about-content .btn {
        align-self: center;
    }
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background-color: var(--oraco-red);
    color: var(--oraco-white);
    padding: 15px 25px;
    border-radius: var(--radius);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 2;
    white-space: nowrap;
    text-align: center;
    min-width: auto;
}

/* Image Navigation Dots */
.image-nav-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--oraco-blue);
    transform: scale(1.2);
}

.dot:hover {
    background-color: var(--oraco-white);
}

/* Image Navigation Buttons */
.image-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.image-nav-prev,
.image-nav-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(30, 64, 175, 0.1);
    color: var(--oraco-white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.image-nav-prev:hover,
.image-nav-next:hover {
    background-color: var(--oraco-blue);
    color: var(--oraco-white);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* Responsive adjustments for about section */
@media (max-width: 992px) {
    .about .container {
        flex-direction: column;
    }
    
    .about-content {
        order: 2;
        text-align: center;
    }
    
    .about-image-slider {
        order: 1;
        width: 100%;
        min-height: 350px;
        margin-bottom: 40px;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .image-nav {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .about-image-slider {
        min-height: 300px;
    }
    
    .about-badge {
        bottom: -10px;
        right: -10px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .image-nav-prev,
    .image-nav-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--oraco-white);
    /*border-radius: var(--radius);*/
	border-radius: 10%;
    overflow: hidden;
    /*box-shadow: var(--shadow-sm);*/
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    transition: var(--transition);
    /* border: 1px solid rgba(226, 232, 240, 0.5);*/
	border: 1.5px solid rgba(0, 0, 0, 0.2); 
    display: flex;
    flex-direction: column;
    height: 90%; 
}

.service-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: top;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px 25px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--oraco-dark);
    flex-grow: 1; 
}

.service-content .btn {
    margin-top: 5px; 
    margin-bottom: 0;
    align-self: center; 
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--oraco-dark);
}


.description-black {
    color: var(--oraco-dark) !important;
}

.description-black p {
    color: var(--oraco-dark) !important;
}

/* ========== PRODUCTS ========== */
.products {
    background-color: var(--oraco-light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--oraco-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--oraco-dark);
}

.product-content p {
    color: var(--oraco-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--oraco-blue);
    margin-bottom: 20px;
}

/* ========== PERKHIDMATAN SECTION ========== */
.perkhidmatan-section {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--oraco-white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition);
}

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

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--oraco-gray);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--oraco-blue);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    color: var(--oraco-dark);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--oraco-gray);
}

/* ========== SOSIAL MEDIA FEEDS SECTION ========== */
.social-feeds-section {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    position: relative;
    overflow: hidden;
}

.feeds-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feed-container {
    background: var(--oraco-white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.1);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.feed-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(30, 64, 175, 0.15);
}

/* Feed Header */
.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.facebook-feed .feed-header {
    background: linear-gradient(135deg, #1877f2 0%, #0d5fbe 100%);
}

.tiktok-feed .feed-header {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.feed-platform-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feed-platform-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.1);
}

.feed-platform-details h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: white;
    font-weight: 700;
}

.feed-platform-details .feed-followers {
    font-size: 14px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.feed-follow-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.feed-follow-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.feed-follow-btn i {
    margin-right: 8px;
}

/* Feed Content */
.feed-content {
    padding: 20px;
    background: #f8fafc;
    min-height: 400px;
    position: relative;
}

.fb-page-embed,
#tiktok-embed-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 600px;
}

.fb-page-embed:hover,
#tiktok-embed-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Loading State */
.feed-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
}

.feed-loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f1f5f9;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.facebook-feed .feed-loading-spinner {
    border-top-color: #1877f2;
}

.tiktok-feed .feed-loading-spinner {
    border-top-color: #000000;
}

.feed-loading p {
    color: var(--oraco-gray);
    font-size: 16px;
}

.feed-action-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--oraco-white);
    border-radius: 8px;
    color: var(--oraco-dark);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feed-action-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feed-action-link:nth-child(1):hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.feed-action-link:nth-child(2):hover {
    background: #000000;
    color: white;
    border-color: #000000;
}

.feed-action-link i {
    font-size: 20px;
}

/* TikTok Embed Specific Styles */
.tiktok-embed {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 992px) {
    .feeds-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
    }
    
    .feed-header {
        padding: 15px 20px;
    }
    
    .feed-content {
        padding: 15px;
    }
    
    .fb-page-embed,
    #tiktok-embed-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .feeds-wrapper {
        gap: 30px;
    }
    
    .feed-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .feed-platform-info {
        flex-direction: column;
        text-align: center;
    }
    
    .feed-follow-btn {
        width: 100%;
        max-width: 200px;
    }
       
    .feed-action-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .feed-container {
        border-radius: 15px;
    }
    
    .fb-page-embed,
    #tiktok-embed-container {
        height: 400px;
        border-radius: 8px;
    }
}

/* Animation for Feeds */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feed-container {
    animation: fadeInUp 0.6s ease-out;
}

.facebook-feed {
    animation-delay: 0.1s;
}

.tiktok-feed {
    animation-delay: 0.3s;
}

/* ========== BLOG ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--oraco-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;

}

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

.blog-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--oraco-red);
    color: var(--oraco-white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.blog-content {
    padding: 30px 25px 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--oraco-dark);
    flex-grow: 1; 
}

.blog-content p {
    color: var(--oraco-gray);
    margin-bottom: 20px; 
    flex-grow: 1;
}

.blog-content a {
    margin-top: 5px; 
    display: inline-block; 
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--oraco-blue);
    color: var(--oraco-white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}


.footer-about p {
    color: var(--oraco-white);
    margin-bottom: 25px;
}

.footer-links h4, .footer-hours h4, .footer-contact h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--oraco-white);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-hours h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--oraco-blue);
}

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

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

.footer-links a {
    color: var(--oraco-white);
    transition: var(--transition);
}

.footer-links a:hover {
    padding-left: 5px;
}

.footer-hours p {
    color: var(--oraco-white);
    margin-bottom: 10px;
}

.footer-contact p {
    color: var(--oraco-white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--oraco-blue);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

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

.social-icon:hover {
    background-color: var(--oraco-blue);
    transform: translateY(-3px);
}

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

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    //background: linear-gradient(135deg, var(--oraco-blue), var(--oraco-light-blue));
    background-color: var(--oraco-blue);
    color: var(--oraco-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    box-shadow: var(--shadow-md);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--oraco-red);
    transform: translateY(-5px);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--oraco-white);
    z-index: 1001;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-close {
    font-size: 24px;
    cursor: pointer;
    color: var(--oraco-dark);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-size: 18px;
    font-weight: 500;
    color: var(--oraco-dark);
    padding: 10px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.mobile-nav-link.active {
    color: var(--oraco-blue);
}

/* ========== MOBILE DROPDOWN ========== */
.mobile-dropdown {
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.mobile-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.mobile-dropdown-toggle {
    cursor: pointer;
    transition: var(--transition);
    padding: 0 10px;
}

.mobile-dropdown-toggle i {
    font-size: 14px;
    transition: var(--transition);
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 20px;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: block;
    padding: 12px 0;
    color: var(--oraco-gray);
    font-size: 15px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-dropdown-item:hover {
    color: var(--oraco-blue);
}

/* Active state for mobile dropdown parent */
.mobile-dropdown.active .mobile-nav-link {
    color: var(--oraco-blue);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== HERO CAROUSEL ========== */
.hero-carousel {
    position: relative;
    height: 105vh;
    overflow: hidden;

}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Carousel Slides */
.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--oraco-white);
}

.slide-content .container {
    max-width: 1200px;
    padding: 0 20px;
}

.slide-subtitle {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.slide-title {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
    color: var(--oraco-white);
}

.slide-title span {
    color: var(--oraco-white);
    position: relative;
}

.slide-title span.text-primary::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    
}

.slide-title span.text-secondary::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    
}

.slide-description {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.7s;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.9s;
}

/* Animation for active slide */
.carousel-slide.active .slide-subtitle,
.carousel-slide.active .slide-title,
.carousel-slide.active .slide-description,
.carousel-slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 15px;
    z-index: 3;
}

.carousel-prev,
.carousel-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--oraco-white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: var(--oraco-blue);
    border-color: var(--oraco-blue);
    transform: scale(1.1);
}

/* Carousel Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    z-index: 3;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--oraco-blue);
    transition: width 10s linear;
}

.carousel-slide.active .progress-bar {
    width: 100%;
    animation: progress 10s linear forwards;
}

@keyframes progress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Carousel button styling */
.slide-buttons .btn-primary {
    background-color: var(--oraco-blue);
    border-color: var(--oraco-blue);
}

.slide-buttons .btn-primary:hover {
    background-color: var(--oraco-red);
    border-color: var(--oraco-red);
}

.slide-buttons .btn-outline {
    background-color: transparent;
    border: 2px solid var(--oraco-white);
    color: var(--oraco-white);
}

.slide-buttons .btn-outline:hover {
    background-color: var(--oraco-white);
    color: var(--oraco-dark);
}

.fb-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: var(--oraco-light-gray);
  min-height: auto;
}

.fb-wrapper iframe {
  max-width: 500px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ========== RESPONSIVE CAROUSEL ========== */
@media (max-width: 992px) {
    .hero-carousel {
        height: 80vh;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-description {
        font-size: 16px;
        max-width: 500px;
    }
    
    .carousel-nav {
        bottom: 30px;
        right: 30px;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
    }
    
    .slide-content .container {
        text-align: center;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .slide-subtitle {
        font-size: 16px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slide-buttons .btn {
        width: 200px;
    }
    
    .carousel-nav {
        bottom: 20px;
        right: 20px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-progress {
        width: 150px;
    }
}

@media (max-width: 576px) {
    .hero-carousel {
        height: 60vh;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .slide-description {
        font-size: 15px;
    }
    
    .carousel-nav {
        display: none; /* Hide navigation on very small screens */
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .services-grid, .products-grid, .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .services-grid, .products-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

/* ========== STAFF BAR (logged-in navbar) ========== */
    .logout-btn {
        background: var(--oraco-red);
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        text-align: center;
    }
    
    .logout-btn span {
        display: block !important;
        width: 100%;
    }
    
    /* If the above doesn't work, try this with flexbox */
    /* .logout-btn {
        background: var(--oraco-red);
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .logout-btn span {
        display: block;
        width: 100%;
        text-align: center;
    } */

.logout-btn:hover {
    background: var(--oraco-red-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: white;
}

.staff-name {
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    white-space: normal;
    word-break: break-word;
    max-width: 130px;
    text-align: center;
    line-height: 1.3;
}

.staff-logout-text {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-align: center;
}

/* Mobile logout button */
.logout-btn--mobile {
    margin-top: 20px;
    padding: 8px 22px;
    width: fit-content;
}

.logout-btn--mobile .staff-name {
    font-size: 12px;
    max-width: 180px;
}

.logout-btn--mobile .staff-logout-text {
    font-size: 15px;
}

/* ========== SOCIAL FEEDS RESPONSIVE STYLES ========== */
.feeds-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.social-feed-card {
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.social-feed-card.facebook-feed {
    background: linear-gradient(135deg, #1877f2 0%, #0d5cb6 100%);
}

.social-feed-card.tiktok-feed {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.social-feed-card .feed-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.social-feed-card .feed-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-feed-card.facebook-feed .feed-icon {
    color: #1877f2;
}

.social-feed-card.tiktok-feed .feed-icon {
    color: #000000;
}

.social-feed-card .feed-header h3 {
    color: white;
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.social-feed-card .feed-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0 0 0;
    font-size: 14px;
}

.social-feed-card .feed-content {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.social-feed-card .feed-content iframe {
    width: 100%;
    border: none;
    flex-grow: 1;
    min-height: 400px;
}

/* Tablet */
@media (max-width: 991px) {
    .feeds-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .social-feed-card {
        padding: 20px;
    }
    
    .social-feed-card .feed-header {
        gap: 12px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .social-feed-card .feed-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .social-feed-card .feed-header h3 {
        font-size: 20px;
    }
    
    .social-feed-card .feed-content iframe {
        min-height: 350px;
    }
}

/* Mobile Landscape */
@media (max-width: 767px) {
    .feeds-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 25px;
    }
    
    .social-feed-card {
        padding: 18px;
    }
    
    .social-feed-card .feed-header {
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .social-feed-card .feed-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .social-feed-card .feed-header h3 {
        font-size: 18px;
    }
    
    .social-feed-card .feed-header p {
        font-size: 13px;
    }
    
    .social-feed-card .feed-content {
        border-radius: 12px;
    }
    
    .social-feed-card .feed-content iframe {
        min-height: 300px;
    }
}

/* Mobile Portrait */
@media (max-width: 479px) {
    .feeds-wrapper {
        gap: 20px;
    }
    
    .social-feed-card {
        padding: 15px;
        border-radius: 15px;
    }
    
    .social-feed-card .feed-header {
        gap: 10px;
    }
    
    .social-feed-card .feed-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .social-feed-card .feed-header h3 {
        font-size: 16px;
    }
    
    .social-feed-card .feed-header p {
        font-size: 12px;
    }
    
    .social-feed-card .feed-content iframe {
        min-height: 280px;
    }
}