/* OPTIMIZED CSS - 6 Sütunlu Grid */
.product-grid.six-cols {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 35px 30px !important;
    max-width: 100% !important;
    padding: 0 15px !important;
}

.product-item {
    background: var(--card) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    height: 420px !important;
    box-shadow: 0 6px 18px rgba(0,0,0,.15), 0 3px 9px rgba(0,0,0,.08) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100% !important;
    min-width: 200px !important;
}

.product-item img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-bottom: 1px solid rgba(255,255,255,.06) !important;
    transition: transform 0.3s ease !important;
    cursor: pointer !important;
}

.product-item:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.18), 0 4px 12px rgba(0,0,0,.08) !important;
    border-color: rgba(200,241,105,.3) !important;
}

.product-item:hover img {
    transform: scale(1.03) !important;
}

.product-info {
    padding: 16px 12px 12px 12px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.product-info h3 {
    font-size: 16px !important;
    margin: 0 0 10px !important;
    text-align: center !important;
    color: #fff !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

.specs-table {
    font-size: 13px !important;
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    margin-top: 6px !important;
}

.specs-table td {
    padding: 6px 8px !important;
    font-size: 13px !important;
    border-bottom: 1px solid rgba(255,255,255,.05) !important;
    line-height: 1.4 !important;
}

.specs-table tr:last-child td {
    border-bottom: none !important;
}

.spec-label {
    color: var(--muted) !important;
    font-weight: 500 !important;
    width: 55% !important;
}

.spec-value {
    color: #fff !important;
    font-weight: 600 !important;
    text-align: right !important;
    width: 45% !important;
}

/* Color Grid Optimizations */
.color-grid.six-cols {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 35px 30px !important;
    max-width: 100% !important;
    padding: 0 15px !important;
}

.color-item {
    background: var(--card) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    height: 280px !important;
    box-shadow: 0 6px 18px rgba(0,0,0,.15), 0 3px 9px rgba(0,0,0,.08) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100% !important;
    min-width: 200px !important;
}

.color-item img {
    width: 200px !important;
    height: 200px !important;
    object-fit: cover !important;
    border-bottom: 1px solid rgba(255,255,255,.06) !important;
    transition: transform 0.3s ease !important;
    cursor: pointer !important;
    margin: 0 auto !important;
}

.color-item:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.18), 0 4px 12px rgba(0,0,0,.08) !important;
    border-color: rgba(200,241,105,.3) !important;
}

.color-item:hover img {
    transform: scale(1.03) !important;
}

.color-info {
    padding: 20px 16px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

.color-info h3 {
    font-size: 18px !important;
    margin: 0 !important;
    text-align: center !important;
    color: #fff !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

/* Enhanced Hero Section - Professional Design */
.hero {
    position: relative !important;
    min-height: 85vh !important;
    display: grid !important;
    overflow: hidden !important;
}

.hero-media::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, rgba(15,17,21,0.85) 0%, rgba(15,17,21,0.5) 30%, rgba(15,17,21,0.7) 70%, rgba(15,17,21,0.9) 100%) !important;
    z-index: 1 !important;
}

.hero-media::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: radial-gradient(circle at 30% 50%, rgba(72,168,104,0.15) 0%, transparent 50%) !important;
    z-index: 2 !important;
}

.hero-content {
    position: relative !important;
    z-index: 3 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-height: 85vh !important;
    text-align: center !important;
    animation: heroSlideUp 1s ease-out !important;
}

.hero h1 {
    font-size: clamp(40px, 7vw, 72px) !important;
    margin: 0 0 24px !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 50%, #fff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    letter-spacing: -0.02em !important;
    text-shadow: 0 0 30px rgba(200,241,105,0.3) !important;
}

.hero p {
    max-width: 720px !important;
    color: rgba(231,233,238,0.95) !important;
    margin: 0 auto 40px !important;
    font-size: clamp(16px, 2.5vw, 20px) !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
}

/* Enhanced Section Styling - Professional Design */
.section {
    padding: 100px 0 !important;
    position: relative !important;
}

.section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%) !important;
}

.section h2 {
    font-size: clamp(32px, 5vw, 48px) !important;
    margin: 0 0 60px !important;
    text-align: center !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    position: relative !important;
    letter-spacing: -0.01em !important;
}

.section h2::after {
    content: '' !important;
    position: absolute !important;
    bottom: -16px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80px !important;
    height: 4px !important;
    background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%) !important;
    border-radius: 3px !important;
    box-shadow: 0 0 15px rgba(200,241,105,0.5) !important;
}

/* Enhanced About Section */
.about-media img {
    border-radius: 20px !important;
    box-shadow: 0 12px 32px rgba(0,0,0,.25), 0 4px 16px rgba(0,0,0,.15) !important;
    transition: transform 0.3s ease !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    aspect-ratio: 1200/927 !important;
    max-width: 100% !important;
}

.about-media img:hover {
    transform: scale(1.02) !important;
}

/* Montaj Section Image Specific */
.about-media {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 20px !important;
}

/* Enhanced Checklist */
.checklist li {
    position: relative !important;
    padding-left: 32px !important;
    margin-bottom: 12px !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
}

.checklist li:before {
    content: "✓" !important;
    position: absolute !important;
    left: 0 !important;
    top: 2px !important;
    color: var(--accent) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

/* Enhanced Features Section */
.feature-list {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 24px !important;
}

.feature-item {
    display: flex !important;
    gap: 16px !important;
    align-items: flex-start !important;
    background: var(--card) !important;
    border: 1px solid rgba(255,255,255,.06) !important;
    padding: 24px !important;
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
}

.feature-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.15) !important;
    border-color: rgba(200,241,105,.2) !important;
}

.feature-item .icon {
    font-size: 28px !important;
    margin-top: 4px !important;
}

.feature-item h4 {
    color: #fff !important;
    font-size: 18px !important;
    margin: 0 0 8px !important;
    font-weight: 600 !important;
}

.feature-item p {
    color: var(--muted) !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

/* Enhanced Process Steps */
.process-steps {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin-top: 32px !important;
}

.step {
    text-align: center !important;
    background: var(--card) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    padding: 24px 16px !important;
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.step:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.15) !important;
    border-color: var(--accent) !important;
}

.step-number {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%) !important;
    color: #061309 !important;
    border-radius: 50% !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
    font-size: 20px !important;
    box-shadow: 0 4px 12px rgba(72,168,104,0.3) !important;
}

.step h4 {
    color: #fff !important;
    font-size: 16px !important;
    margin: 0 0 8px !important;
    font-weight: 600 !important;
}

.step p {
    color: var(--muted) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
    font-size: 14px !important;
}

/* Responsive Design Enhancements */
@media (max-width: 1400px) {
    .product-grid.six-cols {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 30px 25px !important;
    }
    .color-grid.six-cols {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 30px 25px !important;
    }
}

@media (max-width: 1200px) {
    .product-grid.six-cols {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 25px 20px !important;
    }
    .color-grid.six-cols {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 25px 20px !important;
    }
    .product-item {
        height: 380px !important;
    }
    .color-item {
        height: 260px !important;
    }
}

@media (max-width: 1024px) {
    .product-grid.six-cols {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 22px 18px !important;
    }
    .color-grid.six-cols {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 22px 18px !important;
    }
    .product-item {
        height: 360px !important;
    }
    .color-item {
        height: 240px !important;
    }
    .product-item img {
        height: 170px !important;
    }
    .color-item img {
        width: 170px !important;
        height: 170px !important;
    }
    .specs-table .spec-label {
        font-size: 11px !important;
        padding: 6px 8px !important;
    }
    .specs-table .spec-value {
        font-size: 11px !important;
        padding: 6px 8px !important;
    }
    .feature-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .product-grid.six-cols {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 15px !important;
        padding: 0 10px !important;
    }
    .color-grid.six-cols {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 15px !important;
        padding: 0 10px !important;
    }
    .product-item {
        height: 340px !important;
    }
    .color-item {
        height: 220px !important;
    }
    .product-item img {
        height: 150px !important;
    }
    .color-item img {
        width: 150px !important;
        height: 150px !important;
    }
    .specs-table .spec-label {
        font-size: 10px !important;
        padding: 5px 6px !important;
        width: 55% !important;
    }
    .specs-table .spec-value {
        font-size: 10px !important;
        padding: 5px 6px !important;
        width: 45% !important;
    }
    .specs-table td {
        padding: 5px 6px !important;
    }
    .feature-list {
        grid-template-columns: 1fr !important;
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
    }
    .step {
        padding: 20px 12px !important;
    }
    .step-number {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }
    .step h4 {
        font-size: 15px !important;
    }
    .step p {
        font-size: 13px !important;
    }
    .about-media img {
        aspect-ratio: 1200/927 !important;
        max-height: 400px !important;
    }
}

@media (max-width: 480px) {
    .product-grid.six-cols {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 0 5px !important;
    }
    .color-grid.six-cols {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 0 5px !important;
    }
    .product-item {
        height: 320px !important;
        max-width: 350px !important;
        margin: 0 auto !important;
    }
    .color-item {
        height: 200px !important;
        max-width: 350px !important;
        margin: 0 auto !important;
    }
    .product-item img {
        height: 140px !important;
    }
    .color-item img {
        width: 140px !important;
        height: 140px !important;
    }
    .specs-table .spec-label {
        font-size: 9px !important;
        padding: 4px 5px !important;
        width: 50% !important;
    }
    .specs-table .spec-value {
        font-size: 9px !important;
        padding: 4px 5px !important;
        width: 50% !important;
    }
    .specs-table td {
        padding: 4px 5px !important;
    }
    .product-info h3 {
        font-size: 14px !important;
        margin: 0 0 8px !important;
    }
    .process-steps {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .step {
        padding: 18px 10px !important;
    }
    .step-number {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }
    .step h4 {
        font-size: 14px !important;
        margin-bottom: 6px !important;
    }
    .step p {
        font-size: 12px !important;
    }
    .about-media img {
        aspect-ratio: 1200/927 !important;
        max-height: 300px !important;
    }
}

/* Modal Gallery Styles - Kanenzo Inspired */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    animation: fadeIn 0.3s ease-out;
}

.gallery-modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 22px;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    z-index: 1001;
}

.modal-nav:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.modal-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 26px;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.modal-close:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.modal-close:active {
    transform: scale(0.95);
}

.modal-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 90%;
}

/* Kanenzo Style Product Cards Enhancement */
.product-item {
    cursor: pointer !important;
    position: relative !important;
}

.color-item {
    cursor: pointer !important;
    position: relative !important;
}

/* Enhanced Kanenzo Style Table */
.specs-table {
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: rgba(255,255,255,0.02) !important;
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    table-layout: fixed !important;
    min-width: 100% !important;
}

.specs-table tr:nth-child(even) {
    background: rgba(255,255,255,0.03) !important;
}

.specs-table tr:hover {
    background: rgba(72,168,104,0.1) !important;
    transform: translateX(2px) !important;
}

.specs-table td {
    transition: all 0.2s ease !important;
    padding: 8px 10px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    border-bottom: 1px solid rgba(255,255,255,.04) !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.specs-table tr:first-child td {
    border-top: none !important;
}

.specs-table tr:last-child td {
    border-bottom: none !important;
}

.specs-table .spec-label {
    color: var(--muted) !important;
    font-weight: 500 !important;
    width: 60% !important;
    position: relative !important;
    font-size: 12px !important;
    padding-right: 5px !important;
}

.specs-table .spec-label::after {
    content: '' !important;
}

.specs-table .spec-value {
    color: #fff !important;
    font-weight: 600 !important;
    text-align: right !important;
    width: 40% !important;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace !important;
    font-size: 12px !important;
    white-space: nowrap !important;
}

/* Professional Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideIn {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes heroSlideUp {
    from { 
        opacity: 0; 
        transform: translateY(50px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes cardFloat {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Professional Card Animations */
.card, .product-item, .color-item, .feature-item {
    animation: cardFloat 0.8s ease-out !important;
    animation-fill-mode: both !important;
}

.card:nth-child(1), .product-item:nth-child(1), .feature-item:nth-child(1) { animation-delay: 0.1s !important; }
.card:nth-child(2), .product-item:nth-child(2), .feature-item:nth-child(2) { animation-delay: 0.2s !important; }
.card:nth-child(3), .product-item:nth-child(3), .feature-item:nth-child(3) { animation-delay: 0.3s !important; }
.card:nth-child(4), .product-item:nth-child(4), .feature-item:nth-child(4) { animation-delay: 0.4s !important; }
.card:nth-child(5), .product-item:nth-child(5), .feature-item:nth-child(5) { animation-delay: 0.5s !important; }
.card:nth-child(6), .product-item:nth-child(6), .feature-item:nth-child(6) { animation-delay: 0.6s !important; }

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
    .modal-nav {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }
    
    .modal-prev {
        left: 15px !important;
    }
    
    .modal-next {
        right: 15px !important;
    }
    
    .modal-close {
        top: 20px !important;
        right: 20px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 22px !important;
    }
    
    .modal-info {
        bottom: 20px !important;
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
}

/* Loading Animation */
.modal-image.loading {
    opacity: 0.7;
    filter: blur(2px);
}

.modal-image:not(.loading) {
    animation: slideIn 0.4s ease-out;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, var(--card) 0%, rgba(21,25,36,0.95) 100%) !important;
    border: 2px solid rgba(255,255,255,0.1) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 4px 12px rgba(0,0,0,0.2) !important;
    z-index: 999 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    text-decoration: none !important;
    animation: whatsappPulse 2s infinite !important;
    backdrop-filter: blur(10px) !important;
}

.whatsapp-float:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 6px 16px rgba(0,0,0,0.3) !important;
    background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 100%) !important;
    border-color: var(--accent) !important;
}

.whatsapp-float:active {
    transform: scale(0.95) !important;
}

.whatsapp-float::before {
    content: '' !important;
    width: 32px !important;
    height: 32px !important;
    background-image: url('assets/img/whatsapp-icon.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    filter: brightness(0) invert(1) !important;
}

.whatsapp-float:hover::before {
    filter: brightness(0) invert(0.1) !important;
}

/* WhatsApp Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
    }
}

/* Tooltip for WhatsApp */
.whatsapp-float::after {
    content: 'WhatsApp ile İletişim' !important;
    position: absolute !important;
    right: 70px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: white !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease !important;
}

.whatsapp-float:hover::after {
    opacity: 1 !important;
}

/* Mobile WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 55px !important;
        height: 55px !important;
        font-size: 24px !important;
    }
    
    .whatsapp-float::before {
        font-size: 24px !important;
    }
    
    .whatsapp-float::after {
        display: none !important;
    }
}

/* Product Categories Grid - 3 Column Layout */
.product-grid.three-cols {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px 35px !important;
    max-width: 100% !important;
    padding: 0 20px !important;
}

.product-grid.three-cols .product-item {
    background: var(--card) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    height: 520px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.15), 0 4px 12px rgba(0,0,0,.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100% !important;
    position: relative !important;
    cursor: pointer !important;
}

.product-grid.three-cols .product-item img {
    width: 100% !important;
    height: 240px !important;
    object-fit: cover !important;
    border-bottom: 1px solid rgba(255,255,255,.06) !important;
    transition: transform 0.4s ease !important;
    cursor: pointer !important;
}

.product-grid.three-cols .product-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,.20), 0 8px 20px rgba(0,0,0,.12) !important;
    border-color: rgba(200,241,105,.4) !important;
}

.product-grid.three-cols .product-item:active {
    transform: translateY(-4px) !important;
    transition: all 0.1s ease !important;
}

.product-grid.three-cols .product-item:hover img {
    transform: scale(1.05) !important;
}

.product-grid.three-cols .product-item .product-info {
    padding: 24px 20px 20px 20px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.product-grid.three-cols .product-item h3 {
    font-size: 20px !important;
    margin: 0 0 12px !important;
    text-align: center !important;
    color: #fff !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

/* Product Categories - Urunler.html Specific */
.product-item .product-description {
    color: var(--muted) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin: 0 0 16px 0 !important;
    text-align: center !important;
}

.product-item .product-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
    flex: 1 !important;
}

.product-item .product-features li {
    position: relative !important;
    padding: 6px 0 6px 24px !important;
    color: var(--muted) !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.product-item .product-features li::before {
    content: "✓" !important;
    position: absolute !important;
    left: 0 !important;
    top: 6px !important;
    color: var(--accent) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
}

.product-item .btn-primary {
    margin-top: auto !important;
    align-self: center !important;
    padding: 14px 28px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%) !important;
    color: #061309 !important;
    font-weight: 700 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-align: center !important;
    display: inline-block !important;
    box-shadow: 0 4px 12px rgba(72,168,104,0.3) !important;
}

.product-item .btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(72,168,104,0.5) !important;
    background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 100%) !important;
}

/* Three Column Grid Responsive */
@media (max-width: 1200px) {
    .product-grid.three-cols {
        gap: 35px 30px !important;
        padding: 0 15px !important;
    }
    .product-grid.three-cols .product-item {
        height: 500px !important;
    }
    .product-grid.three-cols .product-item img {
        height: 220px !important;
    }
}

@media (max-width: 1024px) {
    .product-grid.three-cols {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px 25px !important;
    }
    .product-grid.three-cols .product-item {
        height: 480px !important;
    }
    .product-grid.three-cols .product-item img {
        height: 200px !important;
    }
    .product-grid.three-cols .product-item h3 {
        font-size: 18px !important;
    }
    .product-item .product-description {
        font-size: 14px !important;
    }
    .product-item .product-features li {
        font-size: 13px !important;
        padding: 5px 0 5px 22px !important;
    }
}

@media (max-width: 768px) {
    .product-grid.three-cols {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 10px !important;
    }
    .product-grid.three-cols .product-item {
        height: 460px !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }
    .product-grid.three-cols .product-item img {
        height: 180px !important;
    }
    .product-grid.three-cols .product-item h3 {
        font-size: 17px !important;
    }
    .product-item .product-description {
        font-size: 13px !important;
    }
    .product-item .product-features li {
        font-size: 12px !important;
        padding: 4px 0 4px 20px !important;
    }
    .product-item .btn-primary {
        padding: 12px 24px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .product-grid.three-cols .product-item {
        height: 440px !important;
        max-width: 400px !important;
    }
    .product-grid.three-cols .product-item img {
        height: 160px !important;
    }
    .product-grid.three-cols .product-item h3 {
        font-size: 16px !important;
    }
    .product-item .product-description {
        font-size: 12px !important;
    }
    .product-item .product-features li {
        font-size: 11px !important;
        padding: 4px 0 4px 18px !important;
    }
    .product-item .btn-primary {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }
}

/* Section Description Enhancement */
.section-description {
    text-align: center !important;
    max-width: 800px !important;
    margin: -30px auto 60px !important;
    font-size: 18px !important;
    color: var(--muted) !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
}

/* Lead Text Enhancement */
.lead-text {
    font-size: 20px !important;
    font-weight: 500 !important;
    color: rgba(231,233,238,0.95) !important;
    line-height: 1.7 !important;
    margin-bottom: 24px !important;
}

/* Feature Highlights */
.feature-highlights {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    margin-top: 32px !important;
}

.highlight-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 16px !important;
    padding: 20px !important;
    transition: all 0.3s ease !important;
}

.highlight-item:hover {
    background: rgba(72,168,104,0.08) !important;
    border-color: rgba(200,241,105,0.3) !important;
    transform: translateY(-4px) !important;
}

.highlight-icon {
    font-size: 32px !important;
    margin-top: 4px !important;
}

.highlight-item h4 {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin: 0 0 6px !important;
}

.highlight-item p {
    color: var(--muted) !important;
    font-size: 14px !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* Modern Cards Enhancement */
.modern-cards {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 48px !important;
}

.modern-card {
    background: var(--card) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.08) !important;
    position: relative !important;
    height: 480px !important;
    display: flex !important;
    flex-direction: column !important;
}

.modern-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.2), 0 8px 20px rgba(0,0,0,0.12) !important;
    border-color: rgba(200,241,105,0.3) !important;
}

.card-image {
    position: relative !important;
    height: 220px !important;
    overflow: hidden !important;
}

.card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease !important;
}

.modern-card:hover .card-image img {
    transform: scale(1.05) !important;
}

.card-overlay {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    background: rgba(0,0,0,0.8) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.card-icon {
    font-size: 24px !important;
}

.card-content {
    padding: 24px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.card-content h3 {
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 0 12px !important;
    line-height: 1.3 !important;
}

.card-content p {
    color: var(--muted) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin: 0 0 20px !important;
    flex: 1 !important;
}

.card-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.card-features li {
    position: relative !important;
    padding-left: 24px !important;
    color: var(--muted) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.card-features li::before {
    content: "✓" !important;
    position: absolute !important;
    left: 0 !important;
    color: var(--accent) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

/* Professional Button Enhancements */
.btn-primary, .btn-secondary {
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 15px !important;
    padding: 16px 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%) !important;
    background-size: 200% 200% !important;
    animation: gradientShift 3s ease infinite !important;
    color: #061309 !important;
    box-shadow: 0 8px 20px rgba(72,168,104,0.3), 0 4px 12px rgba(0,0,0,0.1) !important;
}

.btn-primary::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent) !important;
    transition: left 0.6s ease !important;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 30px rgba(72,168,104,0.5), 0 6px 18px rgba(0,0,0,0.2) !important;
}

.btn-primary:hover::before {
    left: 100% !important;
}

.btn-secondary {
    background: rgba(255,255,255,0.05) !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
    color: #fff !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05) !important;
    background: rgba(255,255,255,0.1) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 12px 30px rgba(200,241,105,0.2), 0 6px 18px rgba(0,0,0,0.1) !important;
    color: var(--accent) !important;
}

/* Hero CTA Enhancement */
.hero-cta {
    display: flex !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    animation: heroSlideUp 1.2s ease-out 0.3s both !important;
}

/* CTA Row Enhancement */
.cta-row {
    display: flex !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 24px !important;
}

/* Modern Professional Footer Design */
.site-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-content {
    padding: 4rem 0 2rem;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.footer-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
    width: 100%;
}

/* Brand Section */
.footer-brand-section {
    position: relative;
}

.brand-logo {
    position: relative;
    margin-bottom: 1.5rem;
}

.brand-logo h3 {
    color: var(--text);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, var(--accent), #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-accent {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #ff8c42);
    border-radius: 2px;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation Section */
.footer-nav-section .footer-title {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.nav-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Products Section */
.product-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.product-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.4rem 0;
    position: relative;
}

.product-link::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent);
}

.product-link:hover {
    color: var(--accent);
    transform: translateX(15px);
}

.product-link:hover::before {
    opacity: 1;
}

.quality-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.badge {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* Footer Contact Section */
.footer-contact-section {
    width: 100%;
}

.footer-contact-section .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.footer-contact-section .contact-method {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: auto;
    width: 100%;
    max-width: 100%;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.method-icon {
    font-size: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    flex-shrink: 0;
}

.method-content {
    flex: 1;
    min-width: 0;
}

.method-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin-bottom: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.method-value {
    display: block;
    color: var(--text);
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.3;
}

.cta-section {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--accent), #ff8c42);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.cta-icon {
    font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-extras {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.service-area,
.established {
    font-weight: 500;
}

/* Contact Page Styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Google Maps Section */
.maps-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.maps-section h3 {
    color: var(--text);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.address-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.address-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--card);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.address-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.address-text h4 {
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.address-text p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,.25);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    cursor: pointer;
    z-index: 10;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 16px;
}

/* Maps Responsive */
@media (max-width: 1024px) {
    .address-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .maps-section {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .address-text {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .address-icon {
        margin-top: 0;
    }
    
    .map-container iframe {
        height: 200px;
    }
}

.contact-method {
    background: linear-gradient(145deg, rgba(45, 52, 54, 0.9), rgba(32, 39, 41, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.primary-contact::before {
    background: linear-gradient(90deg, #ff6b35, #ff8c42, #ffad42);
}

.whatsapp-contact::before {
    background: linear-gradient(90deg, #25D366, #20c997, #17a2b8);
}

.email-contact::before {
    background: linear-gradient(90deg, #6c5ce7, #a29bfe, #74b9ff);
}

.contact-method:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.contact-method h3 {
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.contact-number {
    margin-bottom: 1.2rem;
}

.contact-number a {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-number a:hover {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
}

.contact-hours,
.contact-features {
    margin-bottom: 1.5rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-hours p,
.contact-features p {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0.2rem 0;
    line-height: 1.4;
}

.contact-hours strong {
    color: var(--text);
    font-size: 0.9rem;
}

.contact-method .btn-primary,
.contact-method .btn-secondary {
    width: 100%;
    margin-top: auto;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Modern Cards Grid */
.modern-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.modern-card {
    background: linear-gradient(145deg, rgba(45, 52, 54, 0.95), rgba(20, 25, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    min-height: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #ff8c42, #ffad42, #4ecdc4);
    opacity: 0;
    transition: all 0.4s ease;
}

.modern-card:hover::before {
    opacity: 1;
    height: 6px;
}

.modern-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 
                0 0 50px rgba(255, 107, 53, 0.1);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, 
                rgba(0, 0, 0, 0.8) 0%, 
                rgba(0, 0, 0, 0.4) 50%, 
                transparent 100%);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.modern-card:hover .card-image img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.2);
}

.card-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 107, 53, 0.3), 
                transparent);
}

.card-content h3 {
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-content p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem;
}

.card-features li {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.card-features li:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.card-features li::before {
    content: '✓';
    color: #4ade80;
    font-weight: bold;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: static;
    box-shadow: 0 2px 8px rgba(74, 222, 128, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand-section {
        grid-column: 1 / -1;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .brand-logo h3 {
        font-size: 1.8rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modern-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 3rem 0 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-brand-section {
        grid-column: auto;
        margin-bottom: 0;
    }
    
    .footer-stats {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .product-grid {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    .modern-cards {
        grid-template-columns: 1fr;
    }
    
    .bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-extras {
        justify-content: center;
    }
    
    .brand-logo h3 {
        font-size: 1.6rem;
    }
    
    .brand-description {
        font-size: 0.9rem;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
}
    
    /* Company Story Enhancement */
.company-story {
    position: relative !important;
}

.mission-vision {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    margin-top: 40px !important;
}

.mv-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 20px !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 20px !important;
    padding: 28px !important;
    transition: all 0.3s ease !important;
}

.mv-item:hover {
    background: rgba(72,168,104,0.08) !important;
    border-color: rgba(200,241,105,0.3) !important;
    transform: translateX(8px) !important;
}

.mv-icon {
    font-size: 40px !important;
    margin-top: 8px !important;
    flex-shrink: 0 !important;
}

.mv-content h3 {
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    margin: 0 0 12px !important;
    letter-spacing: -0.01em !important;
}

.mv-content p {
    color: var(--muted) !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* Modern Services Showcase */
.services-showcase {
    margin: 48px 0 60px;
}

.services-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Service Cards */
.service-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-card.compact {
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    border-color: rgba(200,241,105,0.3);
}

/* Service Header */
.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.service-card.compact .service-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    margin-bottom: 16px;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.service-card.compact .service-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
}

.service-icon.primary {
    background: linear-gradient(135deg, #48a868 0%, #2f855a 100%);
}

.service-icon.secondary {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

.service-icon.accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 100%);
}

.service-info h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.3;
}

.service-card.compact h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.service-desc {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

/* Feature Tags */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(200,241,105,0.1);
    color: var(--accent);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(200,241,105,0.2);
}

/* Modern Service List */
.service-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list-modern li {
    position: relative;
    padding: 6px 0 6px 20px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.service-list-modern li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
}

.service-list-modern li:hover {
    color: #fff;
    padding-left: 24px;
}

/* Service CTA */
.service-cta {
    margin-top: 60px;
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.cta-content h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
}

.cta-content p {
    color: var(--muted);
    font-size: 16px;
    margin: 0 0 24px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.service-image {
    margin-top: 60px !important;
    text-align: center !important;
}

.service-image img {
    max-width: 800px !important;
    width: 100% !important;
    border-radius: 24px !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.3) !important;
}

/* Mobile Cards */
    .modern-cards {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .modern-card {
        height: 450px !important;
    }
    .card-image {
        height: 200px !important;
    }
    .card-content {
        padding: 20px !important;
    }
    .card-content h3 {
        font-size: 18px !important;
    }
    .card-content p {
        font-size: 14px !important;
    }
    
    /* Mobile Feature Highlights */
    .feature-highlights {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .highlight-item {
        padding: 16px !important;
    }
    .highlight-icon {
        font-size: 28px !important;
    }
    
    /* Mobile Section */
    .section {
        padding: 80px 0 !important;
    }
    .section-description {
        font-size: 16px !important;
        margin: -20px auto 40px !important;
    }
    .lead-text {
        font-size: 18px !important;
    }
    
    /* Mobile Mission Vision */
    .mission-vision {
        gap: 24px !important;
        margin-top: 32px !important;
    }
    .mv-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 16px !important;
        padding: 24px 20px !important;
    }
    .mv-icon {
        font-size: 36px !important;
        margin: 0 !important;
    }
    .mv-content h3 {
        font-size: 20px !important;
    }
    .mv-content p {
        font-size: 15px !important;
    }
    
    /* Mobile Services */
    .services-main {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 24px;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card.featured {
        padding: 24px;
    }
    
    .service-card.compact {
        padding: 20px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .service-card.compact .service-header {
        gap: 10px;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .service-info h3 {
        font-size: 16px;
    }
    
    .service-card.compact h4 {
        font-size: 14px;
    }
    
    .service-cta {
        padding: 24px;
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .cta-content h3 {
        font-size: 20px;
    }
    
    .cta-content p {
        font-size: 14px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-image img {
        height: 180px;
    }
    .service-image {
        margin-top: 40px !important;
    }
}

@media (max-width: 1024px) {
    .services-main {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .service-card.featured {
        padding: 28px;
    }
    
    .service-card.compact {
        padding: 20px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .service-card.compact .service-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .service-info h3 {
        font-size: 18px;
    }
    
    .service-card.compact h4 {
        font-size: 15px;
    }
    
    .service-cta {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 24px;
        text-align: center;
    }
    
    .cta-image img {
        height: 200px;
    }
}
    .mv-item {
        gap: 16px !important;
        padding: 24px !important;
    }
    .mv-icon {
        font-size: 36px !important;
    }
    .mv-content h3 {
        font-size: 20px !important;
    }
    .mv-content p {
        font-size: 15px !important;
    }
}

/* Contact Methods Enhancement */
.contact-methods {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 32px !important;
    margin: 48px 0 60px !important;
}

.contact-method {
    background: var(--card) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 24px !important;
    padding: 32px 28px !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.contact-method::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%) !important;
}

.contact-method:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important;
    border-color: rgba(200,241,105,0.4) !important;
}

.primary-contact::before {
    background: linear-gradient(90deg, #ff6b6b 0%, #ee5a24 100%) !important;
}

.whatsapp-contact::before {
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%) !important;
}

.email-contact::before {
    background: linear-gradient(90deg, #3498db 0%, #2c3e50 100%) !important;
}

.contact-icon {
    font-size: 56px !important;
    margin: 0 0 20px !important;
    display: block !important;
}

.contact-method h3 {
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    margin: 0 0 16px !important;
}

.contact-number {
    margin: 0 0 20px !important;
}

.contact-number a {
    color: var(--accent) !important;
    text-decoration: none !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    transition: color 0.3s ease !important;
}

.contact-number a:hover {
    color: #fff !important;
}

.contact-hours, .contact-features {
    background: rgba(255,255,255,0.03) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    margin: 20px 0 !important;
}

.contact-hours p, .contact-features p {
    color: var(--muted) !important;
    font-size: 14px !important;
    margin: 4px 0 !important;
    line-height: 1.5 !important;
}

.contact-hours p strong {
    color: #fff !important;
    font-weight: 600 !important;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #fff !important;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%) !important;
}

/* Contact Content Grid */
.contact-content {
    margin-top: 80px !important;
    gap: 48px !important;
}

/* Location Info Cards */
.location-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
}

.info-card {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    transition: all 0.3s ease !important;
}

.info-card:hover {
    background: rgba(72,168,104,0.08) !important;
    border-color: rgba(200,241,105,0.3) !important;
    transform: translateX(8px) !important;
}

.info-icon {
    font-size: 32px !important;
    flex-shrink: 0 !important;
}

.info-card h3 {
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: 0 0 4px !important;
}

.info-card p {
    color: var(--muted) !important;
    font-size: 15px !important;
    margin: 0 0 4px !important;
}

.info-card small {
    color: rgba(184,189,199,0.7) !important;
    font-size: 13px !important;
}

/* Modern Contact Form */
.contact-form-container {
    background: var(--card) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 24px !important;
    padding: 32px !important;
}

.contact-form-container h3 {
    color: #fff !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin: 0 0 12px !important;
    text-align: center !important;
}

.contact-form-container p {
    color: var(--muted) !important;
    text-align: center !important;
    margin: 0 0 32px !important;
    line-height: 1.6 !important;
}

.modern-contact-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
}

.modern-contact-form label {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    color: var(--muted) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.modern-contact-form input, 
.modern-contact-form select, 
.modern-contact-form textarea {
    background: rgba(15,20,27,0.8) !important;
    border: 2px solid rgba(255,255,255,0.1) !important;
    border-radius: 12px !important;
    padding: 14px 16px !important;
    color: #fff !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
}

.modern-contact-form input:focus, 
.modern-contact-form select:focus, 
.modern-contact-form textarea:focus {
    outline: none !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(200,241,105,0.1) !important;
    background: rgba(15,20,27,0.95) !important;
}

.modern-contact-form textarea {
    resize: vertical !important;
    min-height: 120px !important;
}

.form-submit {
    text-align: center !important;
    margin-top: 8px !important;
}

.form-btn {
    padding: 16px 40px !important;
    font-size: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.form-btn span {
    font-size: 20px !important;
}

.form-note {
    margin-top: 16px !important;
    font-size: 13px !important;
    color: rgba(184,189,199,0.7) !important;
    line-height: 1.5 !important;
}

/* Mobile Contact and Cards Responsive */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin: 2rem 0 3rem !important;
    }
    
    .contact-method {
        padding: 1.5rem !important;
        min-height: auto !important;
    }
    
    .contact-icon {
        font-size: 2rem !important;
    }
    
    .contact-method h3 {
        font-size: 1.1rem !important;
    }
    
    .contact-number a {
        font-size: 0.9rem !important;
        padding: 0.4rem 0.8rem !important;
    }
    
    .modern-cards {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .modern-card {
        min-height: 350px !important;
    }
    
    .card-image {
        height: 180px !important;
    }
    
    .card-content {
        padding: 1.5rem !important;
    }
    
    .card-content h3 {
        font-size: 1.3rem !important;
    }
    
    .card-content p {
        font-size: 0.9rem !important;
    }
    
    .card-features {
        grid-template-columns: 1fr !important;
        gap: 0.6rem !important;
    }
    
    .card-features li {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.85rem !important;
    }
    
    .contact-content {
        margin-top: 3rem !important;
        gap: 2rem !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
    }
    
    .contact-form-container {
        padding: 1.5rem !important;
    }
    
    .info-card {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.75rem !important;
        padding: 1.25rem !important;
    }
    
    .info-icon {
        font-size: 1.75rem !important;
    }
}

/* Google Maps Section */
.maps-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.maps-section h3 {
    color: var(--text);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.address-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.address-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--card);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.address-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.address-text h4 {
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.address-text p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,.25);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    cursor: pointer;
    z-index: 10;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 16px;
}

/* Maps Responsive */
@media (max-width: 1024px) {
    .address-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .maps-section {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .address-text {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .address-icon {
        margin-top: 0;
    }
    
    .map-container iframe {
        height: 200px;
    }
}
/* Enhanced Header Logo Styles */
.logo {
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.logo:hover {
    transform: scale(1.05) !important;
}

.logo .brand-logo {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.logo .brand-logo h3 {
    color: var(--text) !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    background: linear-gradient(135deg, var(--accent) 0%, #ff8c42 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    letter-spacing: -0.02em !important;
    line-height: 1.1 !important;
}

.logo .brand-accent {
    width: 45px !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--accent) 0%, #ff8c42 100%) !important;
    border-radius: 2px !important;
    margin-top: 4px !important;
    box-shadow: 0 0 10px rgba(200,241,105,0.3) !important;
    transition: all 0.3s ease !important;
}

.logo:hover .brand-accent {
    width: 55px !important;
    box-shadow: 0 0 15px rgba(200,241,105,0.5) !important;
}

/* Header Logo Responsive */
@media (max-width: 1024px) {
    .logo .brand-logo h3 {
        font-size: 1.5rem !important;
    }
    
    .logo .brand-accent {
        width: 42px !important;
    }
}

@media (max-width: 768px) {
    .logo .brand-logo h3 {
        font-size: 1.4rem !important;
    }
    
    .logo .brand-accent {
        width: 38px !important;
        height: 2px !important;
        margin-top: 3px !important;
    }
}

@media (max-width: 480px) {
    .logo .brand-logo h3 {
        font-size: 1.2rem !important;
    }
    
    .logo .brand-accent {
        width: 35px !important;
        height: 2px !important;
    }
}

/* Hero Brand Logo Styles */
.hero-brand {
    margin-bottom: 5rem !important;
    text-align: center !important;
    padding: 4rem 0 !important;
    transform: scale(1.25) !important;
    position: relative !important;
    z-index: 10 !important;
}

.hero-brand .brand-logo {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-brand .brand-logo h3 {
    color: var(--text) !important;
    font-size: clamp(8rem, 25vw, 22rem) !important;
    font-weight: 900 !important;
    margin: 0 !important;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 40%, #ff8c42 80%, #fff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    letter-spacing: -0.04em !important;
    line-height: 0.8 !important;
    text-shadow: 0 0 80px rgba(200,241,105,0.8), 0 0 160px rgba(255,140,66,0.4) !important;
    animation: heroGlow 3s ease-in-out infinite alternate !important;
    transform: scale(1) !important;
    transition: all 0.3s ease !important;
    filter: drop-shadow(0 12px 48px rgba(0,0,0,0.5)) !important;
}

.hero-brand .brand-accent {
    width: 100% !important;
    max-width: clamp(300px, 35vw, 600px) !important;
    height: clamp(10px, 2.5vw, 20px) !important;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 25%, #ff8c42 50%, var(--accent) 75%, transparent 100%) !important;
    border-radius: 10px !important;
    margin: clamp(8px, 1.5vw, 16px) auto 0 !important;
    box-shadow: 0 0 50px rgba(200,241,105,0.9), 0 0 100px rgba(255,140,66,0.5) !important;
    animation: accentPulse 2.5s ease-in-out infinite alternate !important;
    position: relative !important;
}

/* Hero Brand Animations */
@keyframes heroGlow {
    0% {
        text-shadow: 0 0 30px rgba(200,241,105,0.3);
    }
    100% {
        text-shadow: 0 0 50px rgba(200,241,105,0.6), 0 0 80px rgba(255,140,66,0.3);
    }
}

@keyframes accentPulse {
    0% {
        box-shadow: 0 0 20px rgba(200,241,105,0.5);
    }
    100% {
        box-shadow: 0 0 30px rgba(200,241,105,0.8), 0 0 50px rgba(255,140,66,0.4);
    }
}

/* Hero Content Adjustments */
.hero-content {
    position: relative !important;
    z-index: 3 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-height: 90vh !important;
    text-align: center !important;
    animation: heroSlideUp 1s ease-out !important;
    padding: 4rem 0 !important;
}

.hero-content p {
    max-width: 720px !important;
    color: var(--accent) !important;
    margin: 0 auto 50px !important;
    font-size: clamp(22px, 4vw, 36px) !important;
    line-height: 1.6 !important;
    font-weight: 700 !important;
    text-shadow: 0 0 20px rgba(200,241,105,0.5), 0 4px 12px rgba(0,0,0,0.4) !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-brand {
        margin-bottom: 3rem !important;
        transform: scale(1.1) !important;
    }
    
    .hero-brand .brand-logo h3 {
        font-size: clamp(5rem, 20vw, 12rem) !important;
    }
    
    .hero-brand .brand-accent {
        max-width: clamp(200px, 30vw, 350px) !important;
        height: clamp(8px, 2.5vw, 15px) !important;
        margin: clamp(6px, 1.5vw, 12px) auto 0 !important;
    }
    
    .hero-content p {
        font-size: clamp(18px, 5vw, 28px) !important;
    }
}

@media (max-width: 480px) {
    .hero-brand {
        margin-bottom: 2rem !important;
        transform: scale(1.05) !important;
    }
    
    .hero-brand .brand-logo h3 {
        font-size: clamp(4rem, 18vw, 8rem) !important;
    }
    
    .hero-brand .brand-accent {
        max-width: clamp(150px, 25vw, 250px) !important;
        height: clamp(6px, 2vw, 10px) !important;
    }
    
    .hero-content p {
        font-size: clamp(16px, 5vw, 24px) !important;
        margin-bottom: 40px !important;
    }
}

/* HERO BRAND FORCE OVERRIDE - En g��l� kurallar */
.hero-content .hero-brand {
    transform: scale(0.8) !important;
    margin-bottom: 2rem !important;
    padding: 1.5rem 0 !important;
}

.hero-content .hero-brand .brand-logo h3 {
    font-size: clamp(3rem, 9vw, 7rem) !important;
    line-height: 0.9 !important;
    transform: scale(1) !important;
    white-space: nowrap !important;
    text-shadow: 0 0 40px rgba(200,241,105,0.3), 0 0 80px rgba(255,140,66,0.2) !important;
    filter: drop-shadow(0 6px 24px rgba(0,0,0,0.3)) !important;
}

.hero-content .hero-brand .brand-accent {
    transform: scale(1) !important;
    width: clamp(75px, 7vw, 150px) !important;
    max-width: none !important;
    height: clamp(4px, 1vw, 8px) !important;
    margin-left: clamp(40px, 130vw, 170px) !important;
    align-self: flex-start !important;
    box-shadow: 0 0 25px rgba(200,241,105,0.4), 0 0 50px rgba(255,140,66,0.2) !important;
    border: 1px solid rgba(200,241,105,0.3) !important;
    position: relative !important;
}

/* Viewport boyutuna g�re ekstra b�y�tme */
@media (min-width: 1200px) {
    .hero-content .hero-brand {
        transform: scale(0.85) !important;
    }
    
    .hero-content .hero-brand .brand-logo h3 {
        font-size: clamp(3.5rem, 10vw, 8rem) !important;
        white-space: nowrap !important;
        text-shadow: 0 0 35px rgba(200,241,105,0.3), 0 0 70px rgba(255,140,66,0.2) !important;
    }
    
    .hero-content .hero-brand .brand-accent {
        width: clamp(90px, 8vw, 180px) !important;
        box-shadow: 0 0 20px rgba(200,241,105,0.4), 0 0 40px rgba(255,140,66,0.2) !important;
    }
}

@media (max-width: 1199px) and (min-width: 769px) {
    .hero-content .hero-brand {
        transform: scale(0.82) !important;
    }
    
    .hero-content .hero-brand .brand-logo h3 {
        font-size: clamp(3.2rem, 9vw, 6.5rem) !important;
        white-space: nowrap !important;
        text-shadow: 0 0 30px rgba(200,241,105,0.3), 0 0 60px rgba(255,140,66,0.2) !important;
    }
    
    .hero-content .hero-brand .brand-accent {
        width: clamp(80px, 8vw, 160px) !important;
        box-shadow: 0 0 20px rgba(200,241,105,0.4), 0 0 40px rgba(255,140,66,0.2) !important;
        margin-left: clamp(15px, 3vw, 28px) !important;
        border: 1px solid rgba(200,241,105,0.3) !important;
    }
}

/* Mobil override */
@media (max-width: 768px) {
    .hero-content .hero-brand {
        transform: scale(0.78) !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-content .hero-brand .brand-logo h3 {
        font-size: clamp(2.5rem, 8vw, 4.5rem) !important;
        white-space: nowrap !important;
        text-shadow: 0 0 25px rgba(200,241,105,0.3), 0 0 50px rgba(255,140,66,0.2) !important;
    }
    
    .hero-content .hero-brand .brand-accent {
        width: clamp(55px, 7vw, 110px) !important;
        box-shadow: 0 0 15px rgba(200,241,105,0.4), 0 0 30px rgba(255,140,66,0.2) !important;
    }
}
