/* Kayseri Fan - Kurumsal Website CSS */

:root {
    --primary-color: #FF6B35;
    --secondary-color: #FFFFFF;
    --dark-color: #2C3E50;
    --light-gray: #F8F9FA;
    --border-color: #E9ECEF;
    --text-dark: #343A40;
    --text-light: #6C757D;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
}

/* Loading Screen - Fan Animasyonu */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF8F66 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.fan-loader {
    width: 150px;
    height: 150px;
    position: relative;
    margin-bottom: 30px;
}

.fan-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: fanRotate 1s linear infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes fanRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-text {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.loading-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-top: 10px;
}

/* Header */
.header {
    background: var(--secondary-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 0;
    font-size: 14px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-quick-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-quick-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-top-right {
    display: flex;
    align-items: center;
}

.header-main {
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.header-contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    padding: 8px;
    border-radius: var(--border-radius);
}

.contact-item:hover {
    color: var(--primary-color);
    background: var(--light-gray);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-value {
    font-weight: 600;
    font-size: 14px;
}

/* Navigation */
.navigation {
    background: var(--dark-color);
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 15px 25px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.nav-link i {
    font-size: 14px;
}

.nav-fan-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
    animation: navFanRotate 3s linear infinite;
}

@keyframes navFanRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Dropdown Menu Styles */
.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    margin-left: 8px !important;
    margin-right: 0 !important;
    font-size: 12px !important;
    transition: var(--transition);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
}

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

.dropdown-item.active {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.dropdown-item.active:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.dropdown-item i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    margin-right: 15px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
    display: block;
}

.hamburger-fan-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: brightness(0) invert(1);
    opacity: 0;
    transition: all 0.3s ease;
}

/* Normal durumda çizgiler görünür, fan gizli */
.mobile-menu-toggle:not(.active) span {
    opacity: 1;
}

.mobile-menu-toggle:not(.active) .hamburger-fan-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
}

/* Active durumda çizgiler gizli, fan görünür */
.mobile-menu-toggle.active span {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-fan-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: hamburgerFanRotate 1s linear infinite;
}

@keyframes hamburgerFanRotate {
    from { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    to { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF8F66 100%);
    color: var(--secondary-color);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hero Home - Ana sayfa özel hero */
.hero-home {
    background: var(--secondary-color);
    color: var(--text-dark);
    position: relative;
    padding: 120px 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-home .hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

.hero-home p {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-home .btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.hero-home .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections */
.section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.features {
    background: var(--light-gray);
}

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

.feature-item {
    background: var(--secondary-color);
    padding: 40px 30px;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--secondary-color);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-item p {
    color: var(--text-light);
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
    background: var(--light-gray);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.product-image i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--text-light);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--secondary-color);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

/* Footer Features */
.footer-features {
    margin-top: 20px;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-feature i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    margin-top: 2px;
}

.footer-contact-item strong {
    color: var(--primary-color);
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.footer-contact-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal-links {
    display: flex;
    gap: 20px;  
    align-items: center;
    flex-wrap: wrap;
}

.legal-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.legal-link:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.legal-link i {
    font-size: 16px;
    opacity: 0.8;
}

.legal-link span {
    font-weight: 500;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-logo h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25D366, #20b858);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 3s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
    min-height: 55px;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float .whatsapp-text {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #20b858, #1da851);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

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

.back-to-top:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Çalışma saatlerini mobilde gizle */
    .working-hours-item {
        display: none;
    }
    
    .header-contact-info {
        display: none;
    }
    
    /* Mobile menu toggle göster */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Navigasyon menüsünü mobilde gizle */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-color);
        flex-direction: column;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    
    /* Mobil menü aktif olduğunda göster */
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
        padding: 20px 25px;
        text-align: center;
    }
    
    /* Mobile Dropdown Styles */
    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }
    
    .has-dropdown:hover .dropdown-menu,
    .has-dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 10px 0;
    }
    
    .dropdown-item {
        color: rgba(255, 255, 255, 0.8);
        padding: 15px 35px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 13px;
    }
    
    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--secondary-color);
        padding-left: 40px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-home {
        padding: 80px 0;
    }
    
    .hero-logo-img {
        height: 80px;
    }
    
    .hero-home p {
        font-size: 1.1rem;
    }
    
    .fan-loader {
        width: 100px;
        height: 100px;
    }
    
    /* Mobile WhatsApp Button */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
        min-height: 50px;
    }
    
    .whatsapp-float .whatsapp-text {
        font-size: 13px;
    }
    
    .whatsapp-float i {
        font-size: 20px;
    }
    
    /* Mobile Back to Top Button */
    .back-to-top {
        bottom: 85px;
        right: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal-links {
        justify-content: center;
        gap: 15px;
    }
    
    .legal-link {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    /* Hakkımızda sayfası mobil uyumluluğu */
    .about-main-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .about-vision-mission-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .about-values-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .about-team-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .about-hero h1 {
        font-size: 2rem !important;
    }
    
    .about-section-padding {
        padding: 40px 20px !important;
    }
    
    .about-card-padding {
        padding: 20px !important;
    }
    
    .about-icon-size {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    .about-cta-padding {
        padding: 40px 20px !important;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-cta-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    /* İletişim sayfası mobil uyumluluğu */
    .contact-main-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .contact-info-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 10px !important;
    }
    
    .contact-info-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
        margin: 0 auto !important;
    }
    
    .contact-form-padding {
        padding: 20px !important;
    }
    
    .contact-card-padding {
        padding: 20px !important;
    }
    
    .contact-hero h1 {
        font-size: 2rem !important;
    }
    
    .faq-section h4 {
        font-size: 1rem !important;
    }
    
    .faq-toggle {
        padding: 15px !important;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
