/* Ana Stiller */
:root {
    --primary-color: #ff4081;
    --secondary-color: #3f51b5;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Stilleri */
.site-header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
    font-size: 0.9rem;
}

.navbar-brand img {
    max-height: 60px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff4081, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.hero-section h1::after {
    content: '🌺';
    position: absolute;
    right: -40px;
    top: -20px;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.hero-section .lead {
    font-size: 1.4rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #ff4081;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(10deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.hero-section .btn {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.hero-section .btn:hover::before {
    left: 100%;
}

.hero-section img {
    border-radius: 20px;
    transition: transform 0.5s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.hero-section img:hover {
    transform: scale(1.03) rotate(1deg);
}

/* Kategori Kartları */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: #fff;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.5), transparent);
    padding: 50px 20px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover .category-overlay {
    padding-bottom: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.98), rgba(0,0,0,0.6), transparent);
}

.category-overlay h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.category-overlay p {
    color: rgba(255,255,255,0.95);
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.category-card:hover .category-overlay h3 {
    transform: translateY(-5px);
}

.category-card:hover .category-overlay p {
    transform: translateY(-5px);
    opacity: 1;
}

/* Özel Gün Kartları */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Neden Biz Bölümü */
.why-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff9fa 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '🌟';
    position: absolute;
    top: 30px;
    left: 5%;
    font-size: 3rem;
    opacity: 0.1;
    animation: spin 20s linear infinite;
}

.why-us::after {
    content: '✨';
    position: absolute;
    bottom: 30px;
    right: 5%;
    font-size: 3rem;
    opacity: 0.1;
    animation: spin 15s linear infinite reverse;
}

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

.why-us h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.why-us h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ff4081, #ff6b6b);
    border-radius: 2px;
}

.why-us h2:before {
    content: '🏆';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
}

.why-us .feature-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.why-us .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.why-us .feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #ff4081, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-us .feature-box:hover::before {
    transform: scaleX(1);
}

.why-us i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(45deg, #ff4081, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.why-us .feature-box:hover i {
    transform: scale(1.1) rotate(10deg);
}

.why-us h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.why-us p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .why-us .feature-box {
        margin-bottom: 1.5rem;
    }
    
    .why-us h2 {
        font-size: 2rem;
    }
    
    .why-us i {
        font-size: 2rem;
    }
    
    .why-us h3 {
        font-size: 1.3rem;
    }
}

/* Hızlı Sipariş */
.quick-order {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

/* SEO İçeriği */
.seo-content {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f8ff 100%);
}

.seo-content::before {
    content: '🌸';
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 4rem;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite;
}

.seo-content::after {
    content: '✨';
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 4rem;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite reverse;
}

.seo-content .content-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.seo-content .section-header {
    margin-bottom: 3rem;
    position: relative;
}

.seo-content .subtitle {
    display: block;
    color: #ff4081;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.seo-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 0;
    background: linear-gradient(45deg, #ff4081, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.seo-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #ff758c, #ff7eb3);
    border-radius: 2px;
}

.seo-content .intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 3rem;
}

.seo-content .services-list,
.seo-content .service-areas,
.seo-content .why-choose-us {
    margin-bottom: 3rem;
}

.seo-content .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-content .feature-list li {
    background: linear-gradient(135deg, rgba(255,117,140,0.1) 0%, rgba(255,126,179,0.1) 100%);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,117,140,0.1);
    display: flex;
    align-items: center;
}

.seo-content .feature-list li:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(255,117,140,0.15) 0%, rgba(255,126,179,0.15) 100%);
}

.seo-content .feature-list li i {
    font-size: 1.2rem;
    background: linear-gradient(45deg, #ff758c, #ff7eb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 1rem;
}

.seo-content p {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .seo-content {
        padding: 60px 0;
    }
    
    .seo-content .content-box {
        padding: 2rem;
    }
    
    .seo-content h2 {
        font-size: 2rem;
    }
    
    .seo-content h3 {
        font-size: 1.5rem;
    }
    
    .seo-content .feature-list li {
        padding: 0.8rem 1.2rem;
    }
    
    .seo-content::before,
    .seo-content::after {
        font-size: 3rem;
    }
}

/* WhatsApp Butonu */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

/* Animasyonlar */
.animate__animated {
    animation-duration: 1s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
    
    .category-card {
        border-radius: 12px;
    }
    
    .category-card img {
        height: 180px;
    }
    
    .category-overlay {
        padding: 30px 15px 15px;
    }
    
    .category-overlay h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .category-overlay p {
        font-size: 0.9rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .hero-section h1::after {
        right: -20px;
        top: -10px;
        font-size: 1.5rem;
    }
}

/* Yardımcı Sınıflar */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

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

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.shadow-hover {
    transition: box-shadow 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer */
.site-footer {
    background-color: var(--dark-color);
}

.site-footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

.site-footer p,
.site-footer a {
    color: rgba(255,255,255,0.8);
}

.site-footer a:hover {
    color: white;
    text-decoration: none;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 0;
    background-color: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* Ürün Kartları */
.product-card {
    border: none;
    transition: transform 0.3s ease;
}

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

.product-card .price {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Animasyon Efektleri */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.category-card:nth-child(2) {
    animation-delay: 0.1s;
}

.category-card:nth-child(3) {
    animation-delay: 0.2s;
}

.category-card:nth-child(4) {
    animation-delay: 0.3s;
}

.featured-categories {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.featured-categories h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.featured-categories h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #0d6efd, #198754);
    border-radius: 2px;
}

.featured-categories h2:before {
    content: '🌸';
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.special-days {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f8 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.special-days::before {
    content: '💝';
    position: absolute;
    top: 20px;
    left: 50px;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.special-days::after {
    content: '🎀';
    position: absolute;
    bottom: 20px;
    right: 50px;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.special-days h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.special-days h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #ff4081, #ff6b6b);
    border-radius: 2px;
}

.special-days h2:before {
    content: '💐';
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.special-days .card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.special-days .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.special-days .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.special-days .card:hover .card-img-top {
    transform: scale(1.05);
}

.special-days .card-body {
    padding: 2rem;
    text-align: center;
    background: white;
}

.special-days .card-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.special-days .card-body p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.special-days .btn-outline-primary {
    border-width: 2px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.special-days .btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,64,129,0.2);
}

.professional-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.professional-services::before {
    content: '🌸';
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 4rem;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite;
}

.professional-services::after {
    content: '🎀';
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 4rem;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite reverse;
}

.professional-services h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: #2d3436;
    position: relative;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.professional-services h2:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(to right, #ff758c 0%, #ff7eb3 100%);
    border-radius: 5px;
}

.professional-services .service-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.professional-services .service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.professional-services h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.professional-services p {
    color: #636e72;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.professional-services .service-item,
.professional-services .location-item {
    background: linear-gradient(135deg, rgba(255,117,140,0.1) 0%, rgba(255,126,179,0.1) 100%);
    padding: 1.2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,117,140,0.1);
}

.professional-services .service-item:hover,
.professional-services .location-item:hover {
    background: linear-gradient(135deg, rgba(255,117,140,0.15) 0%, rgba(255,126,179,0.15) 100%);
    transform: translateX(8px);
}

.professional-services .service-item i,
.professional-services .location-item i {
    font-size: 1.4rem;
    margin-right: 1rem;
    background: linear-gradient(45deg, #ff758c, #ff7eb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    vertical-align: middle;
}

.professional-services .service-item span,
.professional-services .location-item span {
    font-size: 1.1rem;
    color: #2d3436;
    font-weight: 500;
    vertical-align: middle;
}

.professional-services img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.professional-services img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .professional-services {
        padding: 60px 0;
    }

    .professional-services h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .professional-services .service-box {
        padding: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .professional-services h3 {
        font-size: 1.4rem;
    }
    
    .professional-services p {
        font-size: 1rem;
    }
    
    .professional-services .service-item,
    .professional-services .location-item {
        padding: 1rem;
    }

    .professional-services .service-item span,
    .professional-services .location-item span {
        font-size: 1rem;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.trusted-florist {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.trusted-florist::before {
    content: '🌺';
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 4rem;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite;
    transform-origin: center;
}

.trusted-florist::after {
    content: '🌸';
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 4rem;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite reverse;
}

.trusted-florist h2 {
    font-size: 3.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: #2d3436;
    position: relative;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(45deg, #ff4081, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.1);
}

.trusted-florist h2:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(to right, #ff758c 0%, #ff7eb3 100%);
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(255,117,140,0.3);
}

.trusted-florist h2:before {
    content: '👑';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    animation: float 4s ease-in-out infinite;
}

.trusted-florist .feature-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.trusted-florist .feature-item:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(255,117,140,0.15);
}

.trusted-florist .feature-item i {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ff758c, #ff7eb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
    display: inline-block;
}

.trusted-florist .feature-item:hover i {
    transform: scale(1.2) rotate(10deg);
}

.trusted-florist h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3436;
    position: relative;
    padding-bottom: 15px;
}

.trusted-florist h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #ff758c, #ff7eb3);
    border-radius: 2px;
}

.trusted-florist p {
    color: #636e72;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.trusted-florist .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,117,140,0.1) 0%, rgba(255,126,179,0.1) 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.trusted-florist .feature-item:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .trusted-florist {
        padding: 60px 0;
    }
    
    .trusted-florist h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .trusted-florist .feature-item {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .trusted-florist h3 {
        font-size: 1.5rem;
    }
    
    .trusted-florist p {
        font-size: 1rem;
    }
    
    .trusted-florist .feature-item i {
        font-size: 2.5rem;
    }
} 