﻿/* Custom CSS for PR & Advertising Services Page */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimizations */
html {
    scroll-behavior: smooth;
}

body {
    font-display: swap;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimize images */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    overflow-y: auto;
    will-change: auto;
}

/* PR Hero Section */
.pr-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.pr-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.pr-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.pr-hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.pr-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pr-hero-description {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pr-hero-section {
        padding: 100px 0 60px;
        min-height: 50vh;
    }
    
    .pr-hero-title {
        font-size: 3rem;
    }
    
    .pr-hero-description {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .pr-hero-section {
        padding: 80px 0 40px;
        min-height: 40vh;
    }
    
    .pr-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .pr-hero-description {
        font-size: 1rem;
    }
    
    .pr-hero-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .pr-hero-section {
        padding: 60px 0 30px;
    }
    
    .pr-hero-title {
        font-size: 2rem;
    }
    
    .pr-hero-description {
        font-size: 0.9rem;
    }
}

/* Animation for hero content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pr-hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Leasing Section Styles (copied from education.css) */
.leasing-section {
    padding: 63.36px 0;
    background: #ffffff;
    position: relative;
}

.leasing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Leasing Content Layout */
.leasing-content-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    padding: 40px;
}

/* Left Column - Leasing Image */
.leasing-image-container {
    flex: 0.45;
    position: relative;
    height: 671.266px;
    min-height: 671.266px;
    overflow: hidden;
}

.leasing-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 671.266px;
}

.leasing-image-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.leasing-image-block {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.leasing-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
}

/* Right Column - Leasing Text Content */
.leasing-content-column {
    flex: 0.55;
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: flex-start;
}

/* Leasing Main Heading */
.leasing-main-heading h1 {
    font-size: 40px;
    color: #000;
    line-height: 56.4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 0;
    margin-bottom: 25px;
}

/* Leasing Subheading */
.leasing-subheading h2 {
    font-size: 32px;
    color: rgb(1, 75, 111);
    line-height: 46.08px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 0;
    margin-bottom: 25px;
}

/* Leasing Description */
.leasing-description {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.leasing-description p {
    font-size: 16px;
    color: #000;
    line-height: 20.8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
}

/* Leasing Features List */
.leasing-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.leasing-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.leasing-features-list li {
    margin: 0;
}

.leasing-features-list h4 {
    font-size: 20px;
    color: #000;
    line-height: 29.7px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
}

.leasing-cta-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 79.9688px;
}

.leasing-cta-button {
    font-size: 24px;
    padding: 0 20.8px;
    border-radius: 0;
    border: 0;
    height: 79.9688px;
    color: #ffffff;
    background-color: #014b6f;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.1s linear;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

.leasing-cta-button:hover {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .leasing-container {
        padding: 0 30px;
    }
    
    .leasing-content-layout {
        gap: 40px;
        padding: 30px;
    }
}

@media (max-width: 1024px) {
    .leasing-section {
        padding: 50px 0;
    }
    
    .leasing-container {
        padding: 0 20px;
    }
    
    .leasing-content-layout {
        gap: 30px;
        padding: 20px;
    }
    
    .leasing-main-heading h1 {
        font-size: 36px;
        line-height: 50px;
    }
    
    .leasing-subheading h2 {
        font-size: 28px;
        line-height: 40px;
    }
}

@media (max-width: 768px) {
    .leasing-section {
        padding: 40px 0;
    }
    
    .leasing-content-layout {
        flex-direction: column;
        gap: 30px;
        padding: 15px;
    }
    
    .leasing-image-container {
        flex: none;
        height: 400px;
        min-height: 400px;
    }
    
    .leasing-image-wrapper {
        min-height: 400px;
    }
    
    .leasing-image-content {
        min-height: 400px;
    }
    
    .leasing-hero-image {
        height: 400px;
    }
    
    .leasing-content-column {
        flex: none;
        padding: 0;
    }
    
    .leasing-main-heading h1 {
        font-size: 32px;
        line-height: 45px;
    }
    
    .leasing-subheading h2 {
        font-size: 24px;
        line-height: 35px;
    }
    
    .leasing-description p {
        font-size: 15px;
        line-height: 22px;
    }
    
    .leasing-features-list h4 {
        font-size: 18px;
        line-height: 26px;
    }
    
    .leasing-cta-button {
        font-size: 20px;
        height: 60px;
        padding: 0 15px;
    }
    
    .leasing-cta-button-container {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .leasing-section {
        padding: 30px 0;
    }
    
    .leasing-container {
        padding: 0 15px;
    }
    
    .leasing-content-layout {
        padding: 10px;
        gap: 20px;
    }
    
    .leasing-image-container {
        height: 300px;
        min-height: 300px;
    }
    
    .leasing-image-wrapper {
        min-height: 300px;
    }
    
    .leasing-image-content {
        min-height: 300px;
    }
    
    .leasing-hero-image {
        height: 300px;
    }
    
    .leasing-main-heading h1 {
        font-size: 28px;
        line-height: 40px;
    }
    
    .leasing-subheading h2 {
        font-size: 22px;
        line-height: 32px;
    }
    
    .leasing-description p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .leasing-features-list h4 {
        font-size: 16px;
        line-height: 24px;
    }
    
    .leasing-cta-button {
        font-size: 18px;
        height: 50px;
        padding: 0 12px;
    }
    
    .leasing-cta-button-container {
        height: 50px;
    }
}

/* Additional PR-specific styles can be added here as needed */


/* Standardized WhatsApp Button - Consistent across all pages */
.whatsapp-btn,
.whatsapp-chat,
.whatsapp-chat-btn,
[class*="whatsapp"],
[class*="chat-btn"] {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 999999 !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
    pointer-events: auto !important;
    transform: none !important;
    contain: none !important;
    perspective: none !important;
    filter: none !important;
    isolation: auto !important;
    mix-blend-mode: normal !important;
    backface-visibility: visible !important;
    will-change: auto !important;
    float: none !important;
    clear: none !important;
    vertical-align: baseline !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    mask: none !important;
    object-fit: fill !important;
    object-position: 50% 50% !important;
    margin: 0 !important;
    padding: 0 !important;
    top: auto !important;
    left: auto !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    background-color: #25D366 !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
    transition: none !important;
    font-size: 26px !important;
    justify-content: center !important;
    align-items: center !important;
}

.whatsapp-btn:hover,
.whatsapp-chat:hover,
.whatsapp-chat-btn:hover,
[class*="whatsapp"]:hover,
[class*="chat-btn"]:hover {
    color: #fff !important;
    text-decoration: none !important;
    transform: none !important;
}

/* Standardized Header - Consistent across all pages */
.new-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 2147483647 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    overflow: visible;
    border-bottom: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.1);
    backdrop-filter: blur(10px);
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    transform: none !important;
    contain: none !important;
    will-change: auto !important;
    backface-visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    bottom: auto !important;
    height: 80px !important;
    filter: none !important;
    perspective: none !important;
}

