/* CSS Variables */
:root {
    --primary-color: #0F1D3A;
    --primary-foreground: #F5F5F5;
    --accent-color: #2A72D8;
    --accent-foreground: #F5F5F5;
    --background: #F5F5F5;
    --foreground: #0F1D3A;
    --muted: #C0C0C0;
    --muted-foreground: #6C6C6C;
    --border: #C0C0C0;
    --card: #ffffff;
    --card-border: #C0C0C0;
    --radius: 0.5rem;
    --spacing: 0.25rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.15);
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    animation: none;
}

.whatsapp-float i {
    margin-top: 3px;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--foreground);
    line-height: 1.6;
    background-color: var(--background);
    overflow-x: hidden;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Stagger animation delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-medium {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

.text-primary { color: var(--primary-color); }
.text-muted { color: var(--muted-foreground); }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.mb-small { margin-bottom: 0.5rem; }
.mb-medium { margin-bottom: 2rem; }
.mb-large { margin-bottom: 3rem; }
.mb-xlarge { margin-bottom: 4rem; }

.mt-small { margin-top: 0.5rem; }
.mt-medium { margin-top: 2rem; }
.mt-large { margin-top: 3rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.max-w-large {
    max-width: 768px;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Sections */
.section {
    padding: 4rem 0;
}

.bg-white {
    background-color: var(--background);
}

.bg-light {
    background-color: var(--muted);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: var(--background);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.top-bar {
    background-color: var(--primary-color);
    color: var(--primary-foreground);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    color: var(--primary-foreground);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.phone-link:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    color: var(--primary-foreground);
    text-decoration: none;
}

.social-links a:hover {
    opacity: 0.8;
}

.hidden-mobile {
    display: none;
}

@media (min-width: 640px) {
    .hidden-mobile {
        display: inline;
    }
}

/* Main Navigation */
.main-nav {
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 4.5rem;
    gap: 2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.logo-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.2s;
}

.logo-btn:hover {
    transform: scale(1.02);
}

.logo-primary {
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.logo-secondary {
    color: var(--foreground);
    font-size: 0.875rem;
    margin-left: 0.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.desktop-nav {
    display: none;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.desktop-nav button,
.desktop-nav a {
    background: none;
    border: none;
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    padding: 0.4rem 0;
    letter-spacing: 0.3px;
    text-decoration: none;
    display: inline-block;
}

.desktop-nav button::after,
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.desktop-nav button:hover,
.desktop-nav a:hover {
    color: var(--primary-color);
}

.desktop-nav button:hover::after,
.desktop-nav a:hover::after {
    width: 100%;
}

/* Desktop Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    padding: 0.4rem 0;
    letter-spacing: 0.3px;
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.dropdown-toggle:hover {
    color: var(--primary-color);
}

.dropdown-toggle:hover::after {
    width: 100%;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    margin-top: 1rem;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu button,
.dropdown-menu a {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    text-align: left;
    background: none;
    border: none;
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    text-decoration: none;
}

.dropdown-menu button::before,
.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.2s;
}

.dropdown-menu button:hover,
.dropdown-menu a:hover {
    background-color: rgba(30, 58, 138, 0.05);
    color: var(--primary-color);
    padding-left: 1.75rem;
}

.dropdown-menu button:hover::before,
.dropdown-menu a:hover::before {
    height: 70%;
}

.nav-actions {
    display: none;
    gap: 1.25rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .nav-actions {
        display: flex;
    }
}

.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 11rem;
    padding: 0.5rem 2.5rem 0.5rem 0.875rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.85rem;
    transition: all 0.2s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.search-box i {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu button,
.mobile-menu a {
    background: none;
    border: none;
    color: var(--foreground);
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    padding: 0.5rem 0;
    text-decoration: none;
    display: block;
    width: 100%;
}

.mobile-menu button:hover,
.mobile-menu a:hover {
    color: var(--primary-color);
}

/* Mobile Dropdown */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    color: var(--foreground);
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle:hover {
    color: var(--primary-color);
}

.mobile-dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.mobile-dropdown-menu.active {
    display: flex;
}

.mobile-dropdown-menu button,
.mobile-dropdown-menu a {
    background: none;
    border: none;
    color: var(--muted-foreground);
    font-weight: 400;
    cursor: pointer;
    text-align: left;
    padding: 0.5rem 0;
    transition: color 0.2s;
    text-decoration: none;
    display: block;
}

.mobile-dropdown-menu button:hover,
.mobile-dropdown-menu a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 29, 58, 0.3);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--accent-foreground);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 114, 216, 0.3);
}

.btn-outline-white {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid white;
    color: white;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Cards */
.card {
    background-color: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-large {
    padding: 3rem;
}

.card-primary {
    background-color: var(--primary-color);
    color: var(--primary-foreground);
}

.card-muted {
    background-color: rgba(243, 244, 246, 0.5);
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Image zoom effect on hover */
.card-hover img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.card-hover:hover img {
    transform: scale(1.1);
}

.card-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(30, 58, 138, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.card-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.card-title-sm {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.card-description-sm {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.card-with-icon {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.card-with-icon-inline {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.icon-box {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    font-size: 2.5rem;
}

.icon-box-small {
    width: 3rem;
    height: 3rem;
    background-color: rgba(30, 58, 138, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box-small i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.icon-box-large {
    width: 4rem;
    height: 4rem;
    background-color: rgba(30, 58, 138, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box-large i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: var(--primary-color);
}

@media (min-width: 768px) {
    .hero-carousel {
        height: 100vh;
    }
}

.carousel-container {
    position: relative;
    height: 100%;
}

.carousel-slides {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide.active {
    opacity: 1;
    animation: fadeIn 1.2s ease-in-out;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.carousel-content {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 1rem;
}

.carousel-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.carousel-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .carousel-content h1 {
        font-size: 4.5rem;
    }
    
    .carousel-content p {
        font-size: 1.5rem;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: none;
    padding: 0.5rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-btn i {
    font-size: 2rem;
    color: white;
}

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dots .dot.active {
    background-color: white;
    width: 12px;
    height: 12px;
    transform: scale(1.3);
    border-color: white;
}

/* Video Container */
.video-container {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Stats */
.stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Skills Table */
.table-responsive {
    overflow-x: auto;
}

.skills-table {
    width: 100%;
    border-collapse: collapse;
}

.skills-table th,
.skills-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
}

.skills-table th {
    font-weight: 600;
}

.skills-table tr:hover {
    background-color: rgba(243, 244, 246, 0.5);
}

/* Infrastructure Placeholder */
.infrastructure-placeholder {
    aspect-ratio: 1;
    background-color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
}

/* Testimonials */
.testimonial-card {
    min-height: 12rem;
}

.testimonial-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 12rem;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-position {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.carousel-controls button {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.carousel-controls button:hover {
    background-color: var(--muted);
}

.carousel-controls i {
    font-size: 1.5rem;
}

.carousel-controls .carousel-dots {
    position: static;
    transform: none;
}

.carousel-controls .carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-controls .carousel-dots .dot.active {
    background-color: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

.carousel-section {
    margin-bottom: 4rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(42, 114, 216, 0.1);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--primary-foreground);
    padding: 2rem 0;
}

.footer p {
    margin: 0.25rem 0;
}

.footer-tagline {
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.875rem; }
    
    .section { padding: 3rem 0; }
    
    .card-large { padding: 2rem 1.5rem; }
    
    .card-with-icon {
        flex-direction: column;
    }
}
