:root {
    /* Primary Brand Colors */
    --primary-orange: #FF4500;
    --primary-red: #DC143C;
    --primary-gold: #FFD700;

    /* Secondary Colors */
    --deep-orange: #FF6B35;
    --tomato-red: #B22222;
    --cheese-yellow: #FFA500;

    /* Neutral Colors */
    --charcoal-black: #1A1A1A;
    --dark-gray: #2C2C2C;
    --light-cream: #FFF8DC;
    --soft-white: #F8F8F8;

    /* Accent Colors */
    --herb-green: #228B22;
    --spice-brown: #8B4513;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* Custom Scrollbar for Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6600, #e65c00);
    border-radius: 10px;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e65c00, #cc5200);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
    transform: scale(1.1);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, #cc5200, #b84700);
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #ff6600 #1a1a1a;
}

/* Custom scrollbar for mobile devices and other elements */
.custom-scroll {
    scrollbar-width: thin;
    scrollbar-color: #ff6600 #1a1a1a;
}

.custom-scroll::-webkit-scrollbar {
    width: 8px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: rgba(26, 26, 26, 0.1);
    border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6600, #e65c00);
    border-radius: 10px;
    border: 1px solid rgba(26, 26, 26, 0.1);
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e65c00, #cc5200);
}

/* Responsive scrollbar */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-thumb {
        border: 1px solid #1a1a1a;
    }
}

@media (max-width: 480px) {
    ::-webkit-scrollbar {
        width: 6px;
    }
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Hide scrollbar for specific elements if needed */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
    color: white;
}

.pizza-loader {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    animation: rotate 2s linear infinite;
}

.pizza-base {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #D2691E, #CD853F);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.3);
}

.pizza-slice {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6600, #e65c00);
    border-radius: 0 100% 0 0;
    transform-origin: 0 100%;
    animation: slice 1.5s ease-in-out infinite;
}

.pizza-slice.slice-1 {
    transform: rotate(0deg);
    animation-delay: 0s;
}

.pizza-slice.slice-2 {
    transform: rotate(60deg);
    animation-delay: 0.1s;
}

.pizza-slice.slice-3 {
    transform: rotate(120deg);
    animation-delay: 0.2s;
}

.pizza-slice.slice-4 {
    transform: rotate(180deg);
    animation-delay: 0.3s;
}

.pizza-slice.slice-5 {
    transform: rotate(240deg);
    animation-delay: 0.4s;
}

.pizza-slice.slice-6 {
    transform: rotate(300deg);
    animation-delay: 0.5s;
}

.loading-brand {
    margin-bottom: 2rem;
}

.loading-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: titlePulse 2s ease-in-out infinite;
}

.loading-subtitle {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 0;
    animation: subtitleFade 2s ease-in-out infinite;
}

.progress-container {
    width: 300px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.progress-text {
    color: #ff6600;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Animations */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes slice {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes titlePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes subtitleFade {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .loading-title {
        font-size: 2rem;
    }

    .pizza-loader {
        width: 100px;
        height: 100px;
    }

    .pizza-base {
        width: 100px;
        height: 100px;
    }

    .pizza-slice {
        width: 50px;
        height: 50px;
    }

    .progress-container {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .loading-title {
        font-size: 1.8rem;
    }

    .progress-container {
        width: 200px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6600, #e65c00);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #e65c00, #cc5200);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

.navbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
background: #212529 !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: 0.8rem 0;
}

.navbar.scrolled {
    background: rgba(17, 17, 17, 0.95);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.brand-text {
    background: linear-gradient(45deg, #ff6600, #ff8533);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Arial Black', Arial, sans-serif;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 0.3rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 102, 0, 0.1);
    color: #ff6600 !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    background: rgba(255, 102, 0, 0.2);
    color: #ff6600 !important;
}

.navbar-nav .nav-link.btn-custom {
    background: linear-gradient(45deg, #ff6600, #e65c00);
    color: #fff !important;
    font-weight: bold;
    border: 2px solid transparent;
}

.navbar-nav .nav-link.btn-custom:hover {
    background: linear-gradient(45deg, #e65c00, #cc5200);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.navbar-toggler {
    padding: 0.3rem 0.5rem;
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

/* Mobile responsiveness */
@media (max-width: 991.98px) {
    .navbar-nav {
        background: rgba(0, 0, 0, 0.9);
        border-radius: 15px;
        padding: 1rem;
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        margin: 0.2rem 0;
        text-align: center;
    }

    .brand-text {
        font-size: 1.2rem;
    }
}

.brand-text,
.hero h1,
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
}

.hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(44, 44, 44, 0.6) 100%), url('../images/bg.jpeg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 2rem 1rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 69, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    top: 3rem;
    z-index: 3;
    max-width: 800px;
    width: 100%;
    padding: 2rem;
    animation: heroFadeIn 1.5s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-gold), var(--deep-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    animation: titleSlideUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--light-cream);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: subtitleSlideUp 1s ease-out 0.6s both;
    line-height: 1.5;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(45deg, var(--primary-orange), var(--deep-orange));
    border: none;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
    position: relative;
    overflow: hidden;
    animation: ctaSlideUp 1s ease-out 0.9s both;
    margin-bottom: 2rem;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.6);
    color: white;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    animation: featuresSlideUp 1s ease-out 1.2s both;
    flex-wrap: wrap;
}

.hero-feature {
    text-align: center;
    color: var(--light-cream);
    flex: 0 0 auto;
}

.hero-feature i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.hero-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    white-space: nowrap;
}

/* Floating Elements */
.hero-decoration {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration:nth-child(1) {
    top: 20%;
    left: 10%;
    font-size: 2rem;
    animation-delay: 0s;
}

.hero-decoration:nth-child(2) {
    top: 30%;
    right: 15%;
    font-size: 1.5rem;
    animation-delay: 2s;
}

.hero-decoration:nth-child(3) {
    bottom: 20%;
    left: 15%;
    font-size: 1.8rem;
    animation-delay: 4s;
}

/* Animations */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes featuresSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Tablet Responsiveness */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-features {
        gap: 2rem;
    }
}

/* Mobile Responsiveness - Large phones */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 1.5rem 1rem;
    }

    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.4;
        padding: 0 1rem;
    }

    .hero-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-features {
        flex-direction: row;
        gap: 1.5rem;
        margin-top: 2rem;
        justify-content: space-around;
    }

    .hero-feature {
        flex: 1;
        min-width: 0;
    }

    .hero-feature span {
        font-size: 0.85rem;
        white-space: normal;
        line-height: 1.2;
    }

    .hero-decoration {
        display: none;
    }
}

/* Mobile Responsiveness - Small phones */
@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0.5rem;
    }

    .hero-content {
        padding: 0.5rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
        padding: 0 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }

    .hero-cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        gap: 0.5rem;
    }

    .hero-features {
        flex-direction: row;
        gap: 0.8rem;
        margin-top: 1.5rem;
        justify-content: space-between;
        padding: 0 0.5rem;
    }

    .hero-feature {
        flex: 1;
        min-width: 0;
    }

    .hero-feature i {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .hero-feature span {
        font-size: 0.75rem;
        white-space: normal;
        line-height: 1.1;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .hero-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-features {
        gap: 0.5rem;
    }

    .hero-feature i {
        font-size: 1.3rem;
    }

    .hero-feature span {
        font-size: 0.7rem;
    }
}

/* Improved typography for all sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal-black);
    margin-bottom: 1.5rem;
}

.navbar-brand {
    font-family: 'Playfair Display', Georgia, serif;
}

.brand-text {
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal-black);
    margin-bottom: 0;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-gold));
    border-radius: 2px;
}

.about-content-card {
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 248, 248, 0.8) 100%);
    border: 1px solid rgba(255, 102, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-gold));
}

.about-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 248, 240, 0.9) 100%);
}

.content-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, var(--primary-orange), var(--deep-orange));
    color: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.content-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--charcoal-black);
    margin-bottom: 0;
    line-height: 1.3;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

.feature-highlights {
    border-top: 1px solid rgba(255, 102, 0, 0.2);
    padding-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: #666;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.image-wrapper {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.8) 0%, rgba(220, 20, 60, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.image-wrapper:hover .overlay-content {
    transform: translateY(0);
}

/* RTL Support for Urdu content */
[dir="rtl"] .feature-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .content-badge {
    font-family: 'Noto Sans Urdu', sans-serif;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .content-title {
        font-size: 1.5rem;
    }

    .about-content-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .image-container {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .content-title {
        font-size: 1.3rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .about-content-card {
        padding: 1.2rem;
        border-radius: 15px;
    }

    .image-container {
        min-height: 250px;
    }

    .feature-highlights {
        padding-top: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }

    .content-title {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .lead-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-content-card {
        padding: 1rem;
        border-radius: 12px;
    }

    .content-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .feature-item {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .image-container {
        min-height: 200px;
    }
}

/* Animation for scroll reveal */
@media (prefers-reduced-motion: no-preference) {

    .about-content-card,
    .image-wrapper {
        opacity: 0;
        transform: translateY(30px);
        animation: slideInUp 0.8s ease forwards;
    }

    .image-wrapper {
        animation-delay: 0.2s;
    }

    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Navbar brand responsiveness */
@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-brand img {
        width: 35px !important;
        height: 35px !important;
    }

    .brand-text {
        font-size: 1rem;
    }
}

.identity-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 102, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.identity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.identity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.identity-card:hover::before {
    transform: scaleX(1);
}

.identity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--deep-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.identity-card:hover .identity-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--deep-orange), var(--primary-red));
}

.identity-icon i {
    font-size: 2rem;
    color: white;
}

.identity-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal-black);
    margin-bottom: 1rem;
}

.identity-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design for Identity Cards */
@media (max-width: 768px) {
    .identity-card {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .identity-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .identity-icon i {
        font-size: 1.5rem;
    }

    .identity-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .identity-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .identity-card {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .identity-icon {
        width: 50px;
        height: 50px;
    }

    .identity-icon i {
        font-size: 1.3rem;
    }

    .identity-title {
        font-size: 1rem;
    }

    .identity-text {
        font-size: 0.85rem;
    }
}

/* Animation for scroll reveal */
@media (prefers-reduced-motion: no-preference) {

    .about-content-card,
    .image-wrapper,
    .identity-card {
        opacity: 0;
        transform: translateY(30px);
        animation: slideInUp 0.8s ease forwards;
    }

    .image-wrapper {
        animation-delay: 0.2s;
    }

    .identity-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .identity-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .identity-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .identity-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .identity-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.text-muted {
    padding-top: 2rem;
}

.text-muted {
    padding-top: 2rem;
}

/* Mission Section Styles */
.mission-content-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.9) 100%);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mission-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-gold));
}

.mission-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.15);
}

.mission-icon-wrapper {
    margin-bottom: 2rem;
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-orange), var(--deep-orange));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.mission-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.mission-icon i {
    font-size: 2.5rem;
    color: white;
}

.mission-statement {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.mission-values {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-2px);
    color: var(--primary-orange);
}

.value-item i {
    font-size: 1.2rem;
}

/* Mission Section Responsive Design */
@media (max-width: 992px) {
    .mission-content-card {
        padding: 2.5rem;
    }

    .mission-icon {
        width: 80px;
        height: 80px;
    }

    .mission-icon i {
        font-size: 2rem;
    }

    .mission-statement {
        font-size: 1.2rem;
    }

    .mission-values {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mission-content-card {
        padding: 2rem;
    }

    .mission-statement {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .mission-values {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .value-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .mission-content-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .mission-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .mission-icon i {
        font-size: 1.8rem;
    }

    .mission-statement {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .value-item {
        font-size: 0.9rem;
    }

    .value-item i {
        font-size: 1.1rem;
    }
}

/* Contact Section Styles */
.contact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--deep-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info {
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.social-links {
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
    border: 2px solid transparent;
}

.social-link.facebook {
    background: linear-gradient(135deg, #4267B2, #365899);
}

.social-link.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.contact-cta {
    background: linear-gradient(45deg, var(--primary-orange), var(--deep-orange));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
}

.contact-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.6);
    color: white;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon i {
        font-size: 1.5rem;
    }

    .social-links {
        justify-content: center !important;
    }

    .social-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        margin: 0.25rem;
    }

    .contact-cta {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 1.2rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 1.3rem;
    }

    .social-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .contact-cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

.footer-brand {
    animation: fadeInUp 0.8s ease;
}

.footer-title {
    color: #ff6600;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #ff6600, #ff8533);
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    line-height: 2;
    display: inline-block;
}

.footer-link:hover {
    color: #ff6600;
    transform: translateX(5px);
}

.social-icons {
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon.facebook {
    background: linear-gradient(135deg, #4267B2, #365899);
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    color: white;
}

.social-icon.twitter {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
    color: white;
}

.social-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
}

.btn-order {
    background: linear-gradient(45deg, #ff6600, #e65c00);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-order:hover {
    background: linear-gradient(45deg, #e65c00, #cc5200);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
    color: white;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1.5rem 0;
}

.designer-link {
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.designer-link:hover {
    color: #ff8533;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .btn-order {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .contact-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    footer .container {
        padding: 0 1rem;
    }

    .social-icons {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .text-md-end {
        text-align: center !important;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .col-lg-2,
    .col-lg-3,
    .col-lg-4 {
        text-align: center;
        margin-bottom: 2rem;
    }

    .contact-item {
        justify-content: center;
    }
}