/* Modern CSS for Çadırcı Website */

/* CSS Variables */
:root {
    --primary-color: #ed1c24;
    --primary-dark: #c41e3a;
    --primary-light: #ff4757;
    --secondary-color: #2c3e50;
    --accent-color: #ff6b7a;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(237, 28, 36, 0.15);
    --shadow-hover: 0 20px 40px rgba(237, 28, 36, 0.25);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Global Container Fix */
.container {
    width: 100%;
    overflow-x: hidden;
}

.row {
    width: 100%;
    overflow-x: hidden;
}

/* Scrollbar Fix */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(237, 28, 36, 0.3) transparent;
}

*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: rgba(237, 28, 36, 0.3);
    border-radius: 3px;
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(237, 28, 36, 0.5);
}

/* Hide all scrollbars globally */
* {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

*::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Hide scrollbars on all devices */
html, body {
    overflow-x: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none !important;
}

/* Hide section scrollbars */
section {
    overflow-x: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

section::-webkit-scrollbar {
    display: none !important;
}

/* Hide container scrollbars */
.container, .row, .col-* {
    overflow-x: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.container::-webkit-scrollbar,
.row::-webkit-scrollbar,
.col-*::-webkit-scrollbar {
    display: none !important;
}

/* All Sections - Hide Scrollbars */
section {
    overflow-x: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    position: relative;
}

section::-webkit-scrollbar {
    display: none !important;
}

/* Section Content */
section .container,
section .row,
section .col-* {
    overflow-x: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

section .container::-webkit-scrollbar,
section .row::-webkit-scrollbar,
section .col-*::-webkit-scrollbar {
    display: none !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    color: var(--text-dark);
    text-align: center;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo img {
    max-width: 150px;
    margin-bottom: 2rem;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Brand Container */
.brand-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand .logo {
    height: 60px;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.brand-name {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* Navigation Links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1.5rem !important;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 8px;
    margin: 0 0.5rem;
}

/* Override Bootstrap's navbar spacing */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }
}

.navbar-nav .nav-link i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.navbar-nav .nav-link span {
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.navbar-nav .nav-link.active {
    color: var(--white);
    background: rgba(237, 28, 36, 0.2);
    border: 1px solid rgba(237, 28, 36, 0.3);
}

.navbar-nav .nav-link.active i {
    color: var(--primary-color);
}

/* CTA Button */
.cta-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    margin-left: 1rem;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(237, 28, 36, 0.4);
}

.cta-btn i {
    margin-right: 0.5rem;
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        justify-content: flex-start;
    }
    
    .cta-btn {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    width: 100%;
    max-width: 100vw;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.hero-section::-webkit-scrollbar {
    display: none !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(237, 28, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 71, 87, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(237, 28, 36, 0.08) 0%, transparent 50%);
    z-index: 0;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(237, 28, 36, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 71, 87, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(237, 28, 36, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 71, 87, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(237, 28, 36, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(237, 28, 36, 0.1), rgba(255, 71, 87, 0.1));
    animation: heroShapeFloat 15s ease-in-out infinite;
}

.hero-shape.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.hero-shape.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    left: 5%;
    animation-delay: 5s;
}

.hero-shape.shape-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes heroShapeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

.hero-slide {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(52, 152, 219, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(237, 28, 36, 0.2);
    border: 1px solid rgba(237, 28, 36, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: badgePulse 2s ease-in-out infinite;
}

.hero-badge i {
    color: var(--primary-color);
    font-size: 1rem;
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 1000px;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    justify-content: center;
    margin-top: 2rem;
}


.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

/* Swiper Customization */
.hero-slider .swiper-pagination {
    bottom: 30px;
    z-index: 10;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(237, 28, 36, 0.5);
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: rgba(237, 28, 36, 0.8);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(237, 28, 36, 0.3);
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.hero-slider .swiper-button-next {
    right: 30px;
}

.hero-slider .swiper-button-prev {
    left: 30px;
}

/* Slider Progress Bar */
.hero-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    z-index: 5;
    animation: progressBar 5s linear infinite;
}

@keyframes progressBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Slider Slide Transition */
.hero-slider .swiper-slide {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slider .swiper-slide-active {
    transform: scale(1.02);
}

/* Slider Content Animation */
.hero-slider .swiper-slide-active .hero-content {
    animation: slideContentIn 1s ease-out;
}

@keyframes slideContentIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* Stats Section */
.stats-section {
    background: var(--white);
    position: relative;
    z-index: 2;
    margin-top: -50px;
}

.stat-item {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.badge-content h4 {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

.badge-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Services Section */


.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2.5rem;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.service-features li i {
    color: var(--primary-color);
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

/* References Section */
.references-section {
    background: #f8f9fa;
    color: var(--text-dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.references-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.references-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.references-description {
    max-width: 800px;
    margin: 0 auto;
}

.references-description .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.references-description p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.portfolio-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.9), rgba(237, 28, 36, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.portfolio-content h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.portfolio-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.portfolio-view-btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-view-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.05);
}

/* Portfolio Modal */
.portfolio-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.portfolio-modal-content .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 1.5rem 2rem;
}

.portfolio-modal-content .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.portfolio-modal-content .btn-close {
    filter: brightness(0) invert(1);
}

.portfolio-modal-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-modal-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.portfolio-modal-info h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.portfolio-modal-info .lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.project-details h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.project-details ul {
    list-style: none;
    padding: 0;
}

.project-details li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.project-details li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.portfolio-modal-content .modal-footer {
    background: var(--light);
    border: none;
    padding: 1.5rem 2rem;
}

.portfolio-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(237, 28, 36, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 71, 87, 0.03) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(237, 28, 36, 0.03), transparent);
    animation: portfolioBgMove 20s linear infinite;
    z-index: 0;
}

@keyframes portfolioBgMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.portfolio-filter {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    margin: 0 0.5rem 1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(237, 28, 36, 0.3);
}

.portfolio-grid {
    position: relative;
    z-index: 1;
}

.portfolio-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    background: var(--white);
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.portfolio-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(237, 28, 36, 0.3);
}

.portfolio-card:hover::before {
    opacity: 0.1;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1) contrast(1);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1) contrast(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.95), rgba(255, 71, 87, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-card:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-content h5 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.portfolio-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-size: 0.95rem;
}

.portfolio-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.portfolio-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.portfolio-link:hover::before {
    width: 100%;
    height: 100%;
}

.portfolio-link:hover {
    color: var(--white);
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.portfolio-link i {
    position: relative;
    z-index: 1;
}

.portfolio-details-btn {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.portfolio-details-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-dark);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    color: #333 !important;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.25);
    background: white;
    color: #333 !important;
}

.form-control::placeholder {
    color: #666 !important;
}

/* Select Options */
.form-control option {
    color: #333 !important;
    background: white !important;
}

.form-control select {
    color: #333 !important;
    background: white !important;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-logo {
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-info p {
    color: rgba(24, 20, 20, 0.733);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}



/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    color: var(--white);
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Mobile Swiper Buttons Hide */
@media (max-width: 768px) {
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        display: none !important;
    }
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .navbar-nav {
        gap: 0.25rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.125rem 0;
        border-radius: 8px;
        font-size: 1rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(237, 28, 36, 0.2);
        border-color: rgba(237, 28, 36, 0.3);
        color: white !important;
    }
    
    .navbar-nav .nav-link.active {
        background: rgba(237, 28, 36, 0.3);
        border-color: rgba(237, 28, 36, 0.5);
        color: white !important;
        font-weight: 600;
    }
    
    .cta-btn {
        margin-top: 0.5rem;
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem;
        border-radius: 20px;
        text-align: center;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        box-shadow: 0 5px 15px rgba(237, 28, 36, 0.3);
        color: white !important;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 2px rgba(237, 28, 36, 0.3);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 1.2em;
        height: 1.2em;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Hero Section */
    .hero-section {
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-badge {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: rgba(237, 28, 36, 0.1);
        border: 1px solid rgba(237, 28, 36, 0.3);
        border-radius: 20px;
        font-size: 0.9rem;
        color: var(--primary-color);
        margin: 0 auto 1.5rem auto;
        font-weight: 500;
        text-align: center;
        width: fit-content;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        text-align: center;
        margin: 0 auto 1rem auto;
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto 2rem auto;
        text-align: center;
        max-width: 90%;
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
        margin: 0.5rem auto;
        display: block;
    }
    
    /* Mobile Sections */
    .section-title {
        font-size: 2rem;
        text-align: center;
        margin: 0 auto 2rem;
    }
    
    .section-subtitle {
        text-align: center;
        margin: 0 auto 3rem;
        max-width: 90%;
    }
    
    /* Mobile Stats */
    .stats-section {
        text-align: center;
    }
    
    .stat-item {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
        display: block;
        margin: 0 auto;
    }
    
    .stat-label {
        text-align: center;
        margin: 0 auto;
    }
    
    /* Mobile About */
    .about-section {
        text-align: center;
    }
    
    /* Mobile References */
    .references-section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .references-image {
        border-radius: 10px;
        margin-bottom: 1.5rem;
    }
    
    .references-description {
        padding: 0 1rem;
    }
    
    .references-description .lead {
        font-size: 1.1rem;
    }
    
    .references-description p {
        font-size: 0.9rem;
    }
    
    .about-content {
        text-align: center;
        margin: 0 auto 2rem;
    }
    
    .about-badge {
        display: none !important;
    }
    
    .about-image {
        margin: 2rem auto;
        text-align: center;
    }
    
    .about-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem auto;
        max-width: 100%;
    }
    
    .feature-item {
        padding: 1.5rem;
        background: rgba(237, 28, 36, 0.05);
        border-radius: 10px;
        border: 1px solid rgba(237, 28, 36, 0.1);
        text-align: center;
        margin: 0 auto;
        min-width: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    /* Mobile Portfolio */
    .portfolio-section {
        text-align: center;
    }
    
    .portfolio-filter {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 0.75rem 1.5rem;
        margin: 0.25rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    .portfolio-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 0 auto;
    }
    
    .portfolio-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    /* Mobile Contact */
    .contact-section {
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        margin-bottom: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        border: 2px solid #e9ecef;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .form-control {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 10px;
        border: 1px solid rgba(66, 66, 66, 0.411);
        background: rgba(255, 255, 255, 0.9);
        color: #333 !important;
        text-align: left;
    }
    
    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.2);
        background: rgba(255, 255, 255, 0.95);
        color: #333 !important;
    }
    
    .form-control::placeholder {
        color: #666 !important;
        text-align: left;
    }
    
    /* Select Options */
    .form-control option {
        color: #333 !important;
        background: white !important;
    }
    
    .form-control select {
        color: #333 !important;
        background: white !important;
    }
    
    /* Mobile Buttons */
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 10px;
        min-height: 48px;
        margin: 0 auto;
        display: block;
        width: 100%;
        max-width: 280px;
    }
    
    .btn-lg {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        min-height: 52px;
        max-width: 300px;
    }
    
    /* Mobile Text Alignment */
    p, .text-muted, .lead {
        text-align: center;
        margin: 0 auto;
    }
    
    /* Mobile Lists */
    .list-unstyled {
        text-align: center;
    }
    
    .list-unstyled li {
        text-align: center;
        margin: 0.5rem auto;
    }
    
    /* Mobile Modal */
    .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .portfolio-modal-image {
        height: 200px;
    }
    
    .portfolio-modal-info {
        padding: 1.5rem !important;
    }
    
    .portfolio-modal-title {
        font-size: 1.3rem;
    }
    
    .portfolio-modal-description {
        font-size: 0.9rem;
    }
    
    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .btn-close-custom {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    /* Mobile Footer */
    .footer {
        padding: 3rem 0 2rem;
        text-align: center;
    }
    
    .footer .col-lg-3,
    .footer .col-lg-2 {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer h5 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links li {
        text-align: center;
        margin: 0.25rem 0;
    }
    
    .footer-links a {
        text-align: center;
        display: block;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
        text-align: center;
    }
    
    .social-link {
        margin: 0 0.5rem;
    }
    
    /* Mobile Logo */
    .navbar-brand {
        text-align: center;
        margin: 0 auto;
    }
    
    .navbar-brand .logo {
        height: 50px;
        margin: 0 auto;
    }
    
    .brand-name {
        font-size: 1.4rem;
        text-align: center;
    }
    
    /* Mobile Spacing */
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
    }
    
    /* Mobile Icons */
    .icon {
        margin: 0 auto;
        display: block;
    }
    
    /* Mobile Cards */
    .card {
        text-align: center;
        margin: 0 auto;
    }
    
    .card-body {
        text-align: center;
    }
    
    /* Mobile Images */
    img {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    
    /* Mobile Headers */
    .navbar {
        text-align: center;
    }
    
    .navbar-brand {
        margin: 0 auto;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 90px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(237, 28, 36, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


/* Extra Small Mobile Devices */
@media (max-width: 576px) {
    /* Extra Small Hero */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-badge {
        margin: 0 auto 1rem auto;
        width: fit-content;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        text-align: center;
        margin: 0 auto 1rem auto;
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        text-align: center;
        margin: 0 auto 1.5rem auto;
        max-width: 95%;
        width: 100%;
    }
    
    .hero-buttons {
        margin: 0 auto;
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
        text-align: center;
        margin: 0 auto 1.5rem;
    }
    
    .section-subtitle {
        text-align: center;
        margin: 0 auto 2rem;
        max-width: 95%;
    }
    
    /* Extra Small Buttons */
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        min-height: 44px;
        margin: 0 auto;
        display: block;
        width: 100%;
        max-width: 250px;
    }
    
    .btn-lg {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        max-width: 280px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 0.5rem auto;
    }
    
    /* Extra Small Navigation */
    .navbar-brand .logo {
        height: 45px;
        margin: 0 auto;
    }
    
    .brand-name {
        font-size: 1.2rem;
        text-align: center;
    }
    
    /* Extra Small Container */
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        text-align: center;
    }
    
    /* Extra Small Stats */
    .stat-number {
        font-size: 2rem;
        text-align: center;
        margin: 0 auto;
    }
    
    .stat-label {
        text-align: center;
        margin: 0 auto;
    }
    
    /* Extra Small Modal */
    .portfolio-modal-image {
        height: 180px;
    }
    
    .portfolio-modal-info {
        padding: 1rem !important;
        text-align: center;
    }
    
    .portfolio-modal-title {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .portfolio-modal-description {
        text-align: center;
    }
    
    /* Extra Small Float Buttons */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 1.3rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 80px;
        font-size: 1rem;
    }
    
    /* Extra Small Text */
    p, .text-muted, .lead {
        text-align: center;
        margin: 0 auto 1rem;
    }
    
    /* Extra Small Cards */
    .card {
        text-align: center;
        margin: 0 auto 1rem;
    }
    
    .card-body {
        text-align: center;
        padding: 1rem;
    }
    
    /* Extra Small Forms */
    .form-control {
        text-align: center;
        padding: 0.8rem;
    }
    
    .form-control::placeholder {
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    overflow: hidden;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    overflow: visible;
}

/* Disable animations on mobile for performance */
@media (max-width: 768px) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .hero-section {
        transform: none !important;
    }
    
    * {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
}

/* Advanced Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes slideInLeft {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes zoomIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes rotateIn {
    0% { transform: rotate(-180deg) scale(0); opacity: 0; }
    100% { transform: rotate(0deg) scale(1); opacity: 1; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--primary-color); }
    50% { box-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color); }
}

/* Animation Utility Classes */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-shake {
    animation: shake 0.5s ease-in-out;
}

.animate-bounce {
    animation: bounce 1s ease-in-out;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-zoom-in {
    animation: zoomIn 0.6s ease-out;
}

.animate-rotate-in {
    animation: rotateIn 0.8s ease-out;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

/* Hover Animations */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: transform 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px var(--primary-color);
}

/* Portfolio Modal Styles */
.portfolio-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(237, 28, 36, 0.3);
}

.portfolio-modal-content .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    padding: 1.5rem 2rem;
}

.portfolio-modal-content .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.portfolio-modal-content .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.portfolio-modal-content .btn-close:hover {
    opacity: 1;
}

.portfolio-modal-slider {
    position: relative;
    min-height: 500px;
}

.portfolio-slide {
    display: none;
    animation: slideIn 0.5s ease-in-out;
}

.portfolio-slide.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.portfolio-modal-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-modal-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-modal-image:hover img {
    transform: scale(1.05);
}

.portfolio-modal-content h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.portfolio-modal-content .lead {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.project-details h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.project-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.project-details li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.project-details li i {
    font-size: 1.2rem;
}

.portfolio-modal-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.nav-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(237, 28, 36, 0.3);
}

.slide-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(237, 28, 36, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.portfolio-modal-content .modal-footer {
    background: var(--bg-light);
    border: none;
    padding: 1.5rem 2rem;
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-size: 14px;
    font-weight: normal;
    color: #ccc;
    text-align: center;
    line-height: 1.4em;
}

.lb-data .lb-number {
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 12px;
    color: #999;
}

.lb-data .lb-close {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIyLjUgNy41TDcuNSAyMi41TTcuNSA3LjVMMjIuNSAyMi41IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K') no-repeat center;
    text-indent: -9999px;
    outline: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

/* Modern Design Elements */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 20s infinite linear;
}

.floating-shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.floating-shape:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

/* Glassmorphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #ff0101, #34495e);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 700;
}

/* Animated Border */
.animated-border {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.animated-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light), var(--primary-color));
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
    z-index: -1;
    border-radius: 15px;
    padding: 2px;
}

.animated-border::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--white);
    border-radius: 13px;
    z-index: -1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.shadow-custom {
    box-shadow: var(--shadow);
}

.rounded-custom {
    border-radius: var(--border-radius);
}

/* Page Header Styles */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

.page-header-bg {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(52, 152, 219, 0.6));
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--white);
}

/* Company Story Styles */
.company-story {
    padding: 5rem 0;
}

.story-content .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Value Cards */
.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    margin: 0;
}

/* Services Content */
.services-content {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.services-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.services-list li:hover {
    background: rgba(254, 185, 0, 0.1);
    transform: translateX(5px);
}

.services-list li i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.ready-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.ready-badge h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ready-badge p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Team Cards */
.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 2rem;
    text-align: center;
}

.team-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-content p {
    color: var(--text-light);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 4rem 0;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

.cta-section .btn-outline-primary {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-outline-primary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Portfolio Modal Styles */
.portfolio-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: var(--white);
    position: relative;
}

.portfolio-modal-content .modal-header {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 15;
    background: none;
    border: none;
    padding: 0;
}

.btn-close-custom {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-close-custom:hover {
    background: rgba(237, 28, 36, 0.9);
    transform: scale(1.1);
    color: var(--white);
}

.btn-close-custom:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.3);
}

/* Navigation Buttons */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 15;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(237, 28, 36, 0.3);
}

.modal-nav-prev {
    left: 20px;
}

.modal-nav-next {
    right: 20px;
}

.portfolio-modal-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.portfolio-modal-image img {
    transition: transform 0.3s ease;
}

.portfolio-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.1) 0%, rgba(44, 62, 80, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
}

.portfolio-modal-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-modal-badge i {
    color: var(--primary-color);
}

.portfolio-modal-info {
    background: var(--white);
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
}

.portfolio-modal-header {
    margin-bottom: 2rem;
}

.portfolio-modal-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.portfolio-modal-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}


.services-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateX(5px);
}

.service-item i {
    font-size: 1rem;
    flex-shrink: 0;
}

.portfolio-modal-actions {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.portfolio-modal-actions .btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 12px 20px;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-modal-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 28, 36, 0.3);
}

.portfolio-modal-actions .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.portfolio-modal-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: scale(0.8) translateY(-50px);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Responsive Modal */
@media (max-width: 992px) {
    .portfolio-modal-image {
        height: 300px;
    }
    
    .portfolio-modal-info {
        height: auto;
        min-height: 400px;
        padding: 2rem;
    }
    
    .portfolio-modal-title {
        font-size: 1.4rem;
    }
    
    .modal-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .modal-nav-prev {
        left: 15px;
    }
    
    .modal-nav-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .btn-close-custom {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .portfolio-modal-content .modal-header {
        top: 15px;
        right: 15px;
    }
    
    .portfolio-modal-image {
        height: 250px;
    }
    
    .portfolio-modal-info {
        padding: 1.5rem !important;
        min-height: 350px;
    }
    
    .portfolio-modal-title {
        font-size: 1.2rem;
    }
    
    .portfolio-modal-description {
        font-size: 0.9rem;
    }
    
    .services-title {
        font-size: 1rem;
    }
    
    .service-item {
        font-size: 0.85rem;
    }
    
    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .modal-nav-prev {
        left: 10px;
    }
    
    .modal-nav-next {
        right: 10px;
    }
    
    .portfolio-modal-actions .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-float,
    .back-to-top {
        display: none !important;
    }
    
    .hero-section {
        height: auto;
        min-height: 400px;
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.3);
    }
}
